Thu Aug 6 10:42:50 2009 UTC ()
Update to xulrunner-1.9.1.2 (matches firefox-3.5.2 release)


(tnn)
diff -r1.6 -r1.7 pkgsrc/devel/xulrunner/Makefile
diff -r1.5 -r1.6 pkgsrc/devel/xulrunner/PLIST
diff -r1.2 -r1.3 pkgsrc/devel/xulrunner/distinfo

cvs diff -r1.6 -r1.7 pkgsrc/devel/xulrunner/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/xulrunner/Attic/Makefile 2009/08/06 07:37:33 1.6
+++ pkgsrc/devel/xulrunner/Attic/Makefile 2009/08/06 10:42:50 1.7
@@ -1,20 +1,19 @@ @@ -1,20 +1,19 @@
1# $NetBSD: Makefile,v 1.6 2009/08/06 07:37:33 tnn Exp $ 1# $NetBSD: Makefile,v 1.7 2009/08/06 10:42:50 tnn Exp $
2# 2#
3 3
4DISTNAME= xulrunner-${XULRUNNER_VER}-source 4DISTNAME= xulrunner-${XULRUNNER_VER}-source
5PKGNAME= ${DISTNAME:S/-source//} 5PKGNAME= ${DISTNAME:S/-source//}
6XULRUNNER_VER= 1.9.1 6XULRUNNER_VER= 1.9.1.2
7PKGREVISION= 4 
8CATEGORIES= devel www 7CATEGORIES= devel www
9MASTER_SITES= ${MASTER_SITE_MOZILLA:=xulrunner/releases/${XULRUNNER_VER}/source/} 8MASTER_SITES= ${MASTER_SITE_MOZILLA:=xulrunner/releases/${XULRUNNER_VER}/source/}
10EXTRACT_SUFX= .tar.bz2 9EXTRACT_SUFX= .tar.bz2
11 10
12MAINTAINER= pkgsrc-users@NetBSD.org 11MAINTAINER= pkgsrc-users@NetBSD.org
13HOMEPAGE= http://developer.mozilla.org/en/docs/XULRunner 12HOMEPAGE= http://developer.mozilla.org/en/docs/XULRunner
14COMMENT= XML User Interface Language runtime environment 13COMMENT= XML User Interface Language runtime environment
15 14
16WRKSRC= ${WRKDIR}/mozilla-1.9.1 15WRKSRC= ${WRKDIR}/mozilla-1.9.1
17GNU_CONFIGURE= yes 16GNU_CONFIGURE= yes
18USE_TOOLS+= pkg-config perl gmake autoconf213 17USE_TOOLS+= pkg-config perl gmake autoconf213
19USE_LANGUAGES= c c++ 18USE_LANGUAGES= c c++
20 19
@@ -74,27 +73,28 @@ pre-configure: @@ -74,27 +73,28 @@ pre-configure:
74 73
75# Makefiles sometimes call "rm -f" without more arguments. Kludge around ... 74# Makefiles sometimes call "rm -f" without more arguments. Kludge around ...
76.PHONY: create-rm-wrapper 75.PHONY: create-rm-wrapper
77pre-configure: create-rm-wrapper 76pre-configure: create-rm-wrapper
78create-rm-wrapper: 77create-rm-wrapper:
79 printf '#!/bin/sh\n[ "$$*" = "-f" ] && exit 0\nexec /bin/rm $$@\n' > \ 78 printf '#!/bin/sh\n[ "$$*" = "-f" ] && exit 0\nexec /bin/rm $$@\n' > \
80 ${WRAPPER_DIR}/bin/rm 79 ${WRAPPER_DIR}/bin/rm
81 chmod +x ${WRAPPER_DIR}/bin/rm 80 chmod +x ${WRAPPER_DIR}/bin/rm
82 81
83INCLUDE_SUBDIRS=\ 82INCLUDE_SUBDIRS=\
84 caps chardet cookie commandhandler content docshell dom exthandler fastfind find gfx gtkembedmoz \ 83 caps chardet cookie commandhandler content docshell dom exthandler fastfind find gfx gtkembedmoz \
85 java js layout locale mimetype necko nkcache nspr oji pipboot pipnss pref shistory \ 84 java js layout locale mimetype necko nkcache nspr oji pipboot pipnss pref shistory \
86 string uconv uriloader webbrowserpersist webbrwsr webshell widget windowwatcher xpcom \ 85 string uconv uriloader webbrowserpersist webbrwsr webshell widget windowwatcher xpcom \
87 xpconnect xulapp profdirserviceprovider thebes embedcomponents intl loginmgr 86 xpconnect xulapp profdirserviceprovider thebes embedcomponents intl loginmgr \
 87 toolkitcomps downloads
88 88
89post-install: 89post-install:
90 # XXX fix the pkg-config files instead 90 # XXX fix the pkg-config files instead
91 rm -f ${DESTDIR}${PREFIX}/lib/xulrunner/libxpcomglue.a 91 rm -f ${DESTDIR}${PREFIX}/lib/xulrunner/libxpcomglue.a
92 ln -s ${PREFIX}/lib/xulrunner-sdk/sdk/lib/libxpcomglue.a \ 92 ln -s ${PREFIX}/lib/xulrunner-sdk/sdk/lib/libxpcomglue.a \
93 ${DESTDIR}${PREFIX}/lib/xulrunner/libxpcomglue.a 93 ${DESTDIR}${PREFIX}/lib/xulrunner/libxpcomglue.a
94 rm -f ${DESTDIR}${PREFIX}/lib/xulrunner/libxpcomglue_s.a 94 rm -f ${DESTDIR}${PREFIX}/lib/xulrunner/libxpcomglue_s.a
95 ln -s ${PREFIX}/lib/xulrunner-sdk/sdk/lib/libxpcomglue_s.a \ 95 ln -s ${PREFIX}/lib/xulrunner-sdk/sdk/lib/libxpcomglue_s.a \
96 ${DESTDIR}${PREFIX}/lib/xulrunner/libxpcomglue_s.a 96 ${DESTDIR}${PREFIX}/lib/xulrunner/libxpcomglue_s.a
97 cd ${WRKSRC}/dist/include && \ 97 cd ${WRKSRC}/dist/include && \
98 ${INSTALL_DATA} `find ${INCLUDE_SUBDIRS} -name "*.h" -print` \ 98 ${INSTALL_DATA} `find ${INCLUDE_SUBDIRS} -name "*.h" -print` \
99 js/jsproto.tbl mozilla-config.h gtkembedmoz/gtkmozembed_glue.cpp \ 99 js/jsproto.tbl mozilla-config.h gtkembedmoz/gtkmozembed_glue.cpp \
100 ${DESTDIR}${PREFIX}/include/xulrunner/unstable 100 ${DESTDIR}${PREFIX}/include/xulrunner/unstable

cvs diff -r1.5 -r1.6 pkgsrc/devel/xulrunner/Attic/PLIST (expand / switch to unified diff)

--- pkgsrc/devel/xulrunner/Attic/PLIST 2009/08/05 20:58:42 1.5
+++ pkgsrc/devel/xulrunner/Attic/PLIST 2009/08/06 10:42:50 1.6
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.5 2009/08/05 20:58:42 tnn Exp $ 1@comment $NetBSD: PLIST,v 1.6 2009/08/06 10:42:50 tnn Exp $
2bin/xulrunner 2bin/xulrunner
3include/xulrunner/stable/base64.h 3include/xulrunner/stable/base64.h
4include/xulrunner/stable/blapit.h 4include/xulrunner/stable/blapit.h
5include/xulrunner/stable/cert.h 5include/xulrunner/stable/cert.h
6include/xulrunner/stable/certdb.h 6include/xulrunner/stable/certdb.h
7include/xulrunner/stable/certt.h 7include/xulrunner/stable/certt.h
8include/xulrunner/stable/ciferfam.h 8include/xulrunner/stable/ciferfam.h
9include/xulrunner/stable/cmmf.h 9include/xulrunner/stable/cmmf.h
10include/xulrunner/stable/cmmft.h 10include/xulrunner/stable/cmmft.h
11include/xulrunner/stable/cms.h 11include/xulrunner/stable/cms.h
12include/xulrunner/stable/cmsreclist.h 12include/xulrunner/stable/cmsreclist.h
13include/xulrunner/stable/cmst.h 13include/xulrunner/stable/cmst.h
14include/xulrunner/stable/crmf.h 14include/xulrunner/stable/crmf.h
@@ -840,26 +840,30 @@ include/xulrunner/unstable/nsICipherInfo @@ -840,26 +840,30 @@ include/xulrunner/unstable/nsICipherInfo
840include/xulrunner/unstable/nsIClassInfo.h 840include/xulrunner/unstable/nsIClassInfo.h
841include/xulrunner/unstable/nsIClassInfoImpl.h 841include/xulrunner/unstable/nsIClassInfoImpl.h
842include/xulrunner/unstable/nsIClientAuthDialogs.h 842include/xulrunner/unstable/nsIClientAuthDialogs.h
843include/xulrunner/unstable/nsIClipboard.h 843include/xulrunner/unstable/nsIClipboard.h
844include/xulrunner/unstable/nsIClipboardCommands.h 844include/xulrunner/unstable/nsIClipboardCommands.h
845include/xulrunner/unstable/nsIClipboardDragDropHookList.h 845include/xulrunner/unstable/nsIClipboardDragDropHookList.h
846include/xulrunner/unstable/nsIClipboardDragDropHooks.h 846include/xulrunner/unstable/nsIClipboardDragDropHooks.h
847include/xulrunner/unstable/nsIClipboardHelper.h 847include/xulrunner/unstable/nsIClipboardHelper.h
848include/xulrunner/unstable/nsIClipboardOwner.h 848include/xulrunner/unstable/nsIClipboardOwner.h
849include/xulrunner/unstable/nsICollation.h 849include/xulrunner/unstable/nsICollation.h
850include/xulrunner/unstable/nsICollection.h 850include/xulrunner/unstable/nsICollection.h
851include/xulrunner/unstable/nsIComboboxControlFrame.h 851include/xulrunner/unstable/nsIComboboxControlFrame.h
852include/xulrunner/unstable/nsICommandHandler.h 852include/xulrunner/unstable/nsICommandHandler.h
 853include/xulrunner/unstable/nsICommandLine.h
 854include/xulrunner/unstable/nsICommandLineHandler.h
 855include/xulrunner/unstable/nsICommandLineRunner.h
 856include/xulrunner/unstable/nsICommandLineValidator.h
853include/xulrunner/unstable/nsICommandManager.h 857include/xulrunner/unstable/nsICommandManager.h
854include/xulrunner/unstable/nsICommandParams.h 858include/xulrunner/unstable/nsICommandParams.h
855include/xulrunner/unstable/nsIComponentManager.h 859include/xulrunner/unstable/nsIComponentManager.h
856include/xulrunner/unstable/nsIComponentManagerObsolete.h 860include/xulrunner/unstable/nsIComponentManagerObsolete.h
857include/xulrunner/unstable/nsIComponentRegistrar.h 861include/xulrunner/unstable/nsIComponentRegistrar.h
858include/xulrunner/unstable/nsIComputedDOMStyle.h 862include/xulrunner/unstable/nsIComputedDOMStyle.h
859include/xulrunner/unstable/nsIConsoleListener.h 863include/xulrunner/unstable/nsIConsoleListener.h
860include/xulrunner/unstable/nsIConsoleMessage.h 864include/xulrunner/unstable/nsIConsoleMessage.h
861include/xulrunner/unstable/nsIConsoleService.h 865include/xulrunner/unstable/nsIConsoleService.h
862include/xulrunner/unstable/nsIContainerBoxObject.h 866include/xulrunner/unstable/nsIContainerBoxObject.h
863include/xulrunner/unstable/nsIContent.h 867include/xulrunner/unstable/nsIContent.h
864include/xulrunner/unstable/nsIContentDispatchChooser.h 868include/xulrunner/unstable/nsIContentDispatchChooser.h
865include/xulrunner/unstable/nsIContentHandler.h 869include/xulrunner/unstable/nsIContentHandler.h
@@ -1274,27 +1278,31 @@ include/xulrunner/unstable/nsIDocShell.h @@ -1274,27 +1278,31 @@ include/xulrunner/unstable/nsIDocShell.h
1274include/xulrunner/unstable/nsIDocShellHistory.h 1278include/xulrunner/unstable/nsIDocShellHistory.h
1275include/xulrunner/unstable/nsIDocShellLoadInfo.h 1279include/xulrunner/unstable/nsIDocShellLoadInfo.h
1276include/xulrunner/unstable/nsIDocShellTreeItem.h 1280include/xulrunner/unstable/nsIDocShellTreeItem.h
1277include/xulrunner/unstable/nsIDocShellTreeNode.h 1281include/xulrunner/unstable/nsIDocShellTreeNode.h
1278include/xulrunner/unstable/nsIDocShellTreeOwner.h 1282include/xulrunner/unstable/nsIDocShellTreeOwner.h
1279include/xulrunner/unstable/nsIDocument.h 1283include/xulrunner/unstable/nsIDocument.h
1280include/xulrunner/unstable/nsIDocumentCharsetInfo.h 1284include/xulrunner/unstable/nsIDocumentCharsetInfo.h
1281include/xulrunner/unstable/nsIDocumentEncoder.h 1285include/xulrunner/unstable/nsIDocumentEncoder.h
1282include/xulrunner/unstable/nsIDocumentLoader.h 1286include/xulrunner/unstable/nsIDocumentLoader.h
1283include/xulrunner/unstable/nsIDocumentLoaderFactory.h 1287include/xulrunner/unstable/nsIDocumentLoaderFactory.h
1284include/xulrunner/unstable/nsIDocumentObserver.h 1288include/xulrunner/unstable/nsIDocumentObserver.h
1285include/xulrunner/unstable/nsIDocumentTransformer.h 1289include/xulrunner/unstable/nsIDocumentTransformer.h
1286include/xulrunner/unstable/nsIDocumentViewer.h 1290include/xulrunner/unstable/nsIDocumentViewer.h
 1291include/xulrunner/unstable/nsIDownload.h
1287include/xulrunner/unstable/nsIDownloadHistory.h 1292include/xulrunner/unstable/nsIDownloadHistory.h
 1293include/xulrunner/unstable/nsIDownloadManager.h
 1294include/xulrunner/unstable/nsIDownloadManagerUI.h
 1295include/xulrunner/unstable/nsIDownloadProgressListener.h
1288include/xulrunner/unstable/nsIDownloader.h 1296include/xulrunner/unstable/nsIDownloader.h
1289include/xulrunner/unstable/nsIDragDropHandler.h 1297include/xulrunner/unstable/nsIDragDropHandler.h
1290include/xulrunner/unstable/nsIDragService.h 1298include/xulrunner/unstable/nsIDragService.h
1291include/xulrunner/unstable/nsIDragSession.h 1299include/xulrunner/unstable/nsIDragSession.h
1292include/xulrunner/unstable/nsIDragSessionGTK.h 1300include/xulrunner/unstable/nsIDragSessionGTK.h
1293include/xulrunner/unstable/nsIEditorBoxObject.h 1301include/xulrunner/unstable/nsIEditorBoxObject.h
1294include/xulrunner/unstable/nsIEditorDocShell.h 1302include/xulrunner/unstable/nsIEditorDocShell.h
1295include/xulrunner/unstable/nsIEffectiveTLDService.h 1303include/xulrunner/unstable/nsIEffectiveTLDService.h
1296include/xulrunner/unstable/nsIEmbeddingSiteWindow.h 1304include/xulrunner/unstable/nsIEmbeddingSiteWindow.h
1297include/xulrunner/unstable/nsIEmbeddingSiteWindow2.h 1305include/xulrunner/unstable/nsIEmbeddingSiteWindow2.h
1298include/xulrunner/unstable/nsIEncodedChannel.h 1306include/xulrunner/unstable/nsIEncodedChannel.h
1299include/xulrunner/unstable/nsIEntropyCollector.h 1307include/xulrunner/unstable/nsIEntropyCollector.h
1300include/xulrunner/unstable/nsIEnumerator.h 1308include/xulrunner/unstable/nsIEnumerator.h
@@ -1544,26 +1552,27 @@ include/xulrunner/unstable/nsIProxyObjec @@ -1544,26 +1552,27 @@ include/xulrunner/unstable/nsIProxyObjec
1544include/xulrunner/unstable/nsIRadioControlElement.h 1552include/xulrunner/unstable/nsIRadioControlElement.h
1545include/xulrunner/unstable/nsIRadioControlFrame.h 1553include/xulrunner/unstable/nsIRadioControlFrame.h
1546include/xulrunner/unstable/nsIRadioGroupContainer.h 1554include/xulrunner/unstable/nsIRadioGroupContainer.h
1547include/xulrunner/unstable/nsIRadioVisitor.h 1555include/xulrunner/unstable/nsIRadioVisitor.h
1548include/xulrunner/unstable/nsIRandomGenerator.h 1556include/xulrunner/unstable/nsIRandomGenerator.h
1549include/xulrunner/unstable/nsIRange.h 1557include/xulrunner/unstable/nsIRange.h
1550include/xulrunner/unstable/nsIRangeUtils.h 1558include/xulrunner/unstable/nsIRangeUtils.h
1551include/xulrunner/unstable/nsIRecentBadCertsService.h 1559include/xulrunner/unstable/nsIRecentBadCertsService.h
1552include/xulrunner/unstable/nsIRecyclingAllocator.h 1560include/xulrunner/unstable/nsIRecyclingAllocator.h
1553include/xulrunner/unstable/nsIReflowCallback.h 1561include/xulrunner/unstable/nsIReflowCallback.h
1554include/xulrunner/unstable/nsIRefreshURI.h 1562include/xulrunner/unstable/nsIRefreshURI.h
1555include/xulrunner/unstable/nsIRegion.h 1563include/xulrunner/unstable/nsIRegion.h
1556include/xulrunner/unstable/nsIRelativeFilePref.h 1564include/xulrunner/unstable/nsIRelativeFilePref.h
 1565include/xulrunner/unstable/nsIRemoteService.h
1557include/xulrunner/unstable/nsIRenderingContext.h 1566include/xulrunner/unstable/nsIRenderingContext.h
1558include/xulrunner/unstable/nsIRequest.h 1567include/xulrunner/unstable/nsIRequest.h
1559include/xulrunner/unstable/nsIRequestObserver.h 1568include/xulrunner/unstable/nsIRequestObserver.h
1560include/xulrunner/unstable/nsIRequestObserverProxy.h 1569include/xulrunner/unstable/nsIRequestObserverProxy.h
1561include/xulrunner/unstable/nsIResProtocolHandler.h 1570include/xulrunner/unstable/nsIResProtocolHandler.h
1562include/xulrunner/unstable/nsIResumableChannel.h 1571include/xulrunner/unstable/nsIResumableChannel.h
1563include/xulrunner/unstable/nsIRollupListener.h 1572include/xulrunner/unstable/nsIRollupListener.h
1564include/xulrunner/unstable/nsIRunnable.h 1573include/xulrunner/unstable/nsIRunnable.h
1565include/xulrunner/unstable/nsISHContainer.h 1574include/xulrunner/unstable/nsISHContainer.h
1566include/xulrunner/unstable/nsISHEntry.h 1575include/xulrunner/unstable/nsISHEntry.h
1567include/xulrunner/unstable/nsISHTransaction.h 1576include/xulrunner/unstable/nsISHTransaction.h
1568include/xulrunner/unstable/nsISHistory.h 1577include/xulrunner/unstable/nsISHistory.h
1569include/xulrunner/unstable/nsISHistoryInternal.h 1578include/xulrunner/unstable/nsISHistoryInternal.h
@@ -1921,26 +1930,27 @@ include/xulrunner/unstable/nsTObserverAr @@ -1921,26 +1930,27 @@ include/xulrunner/unstable/nsTObserverAr
1921include/xulrunner/unstable/nsTPromiseFlatString.h 1930include/xulrunner/unstable/nsTPromiseFlatString.h
1922include/xulrunner/unstable/nsTPtrArray.h 1931include/xulrunner/unstable/nsTPtrArray.h
1923include/xulrunner/unstable/nsTString.h 1932include/xulrunner/unstable/nsTString.h
1924include/xulrunner/unstable/nsTSubstring.h 1933include/xulrunner/unstable/nsTSubstring.h
1925include/xulrunner/unstable/nsTSubstringTuple.h 1934include/xulrunner/unstable/nsTSubstringTuple.h
1926include/xulrunner/unstable/nsTWeakRef.h 1935include/xulrunner/unstable/nsTWeakRef.h
1927include/xulrunner/unstable/nsTextFormatter.h 1936include/xulrunner/unstable/nsTextFormatter.h
1928include/xulrunner/unstable/nsTextFragment.h 1937include/xulrunner/unstable/nsTextFragment.h
1929include/xulrunner/unstable/nsThemeConstants.h 1938include/xulrunner/unstable/nsThemeConstants.h
1930include/xulrunner/unstable/nsThreadUtils.h 1939include/xulrunner/unstable/nsThreadUtils.h
1931include/xulrunner/unstable/nsThreadUtilsInternal.h 1940include/xulrunner/unstable/nsThreadUtilsInternal.h
1932include/xulrunner/unstable/nsTime.h 1941include/xulrunner/unstable/nsTime.h
1933include/xulrunner/unstable/nsTimeStamp.h 1942include/xulrunner/unstable/nsTimeStamp.h
 1943include/xulrunner/unstable/nsToolkitCompsCID.h
1934include/xulrunner/unstable/nsTraceRefcnt.h 1944include/xulrunner/unstable/nsTraceRefcnt.h
1935include/xulrunner/unstable/nsTraceRefcntImpl.h 1945include/xulrunner/unstable/nsTraceRefcntImpl.h
1936include/xulrunner/unstable/nsTransform2D.h 1946include/xulrunner/unstable/nsTransform2D.h
1937include/xulrunner/unstable/nsTreeColFrame.h 1947include/xulrunner/unstable/nsTreeColFrame.h
1938include/xulrunner/unstable/nsTreeUtils.h 1948include/xulrunner/unstable/nsTreeUtils.h
1939include/xulrunner/unstable/nsUConvCID.h 1949include/xulrunner/unstable/nsUConvCID.h
1940include/xulrunner/unstable/nsURIHashKey.h 1950include/xulrunner/unstable/nsURIHashKey.h
1941include/xulrunner/unstable/nsURILoader.h 1951include/xulrunner/unstable/nsURILoader.h
1942include/xulrunner/unstable/nsUTF8Utils.h 1952include/xulrunner/unstable/nsUTF8Utils.h
1943include/xulrunner/unstable/nsVariant.h 1953include/xulrunner/unstable/nsVariant.h
1944include/xulrunner/unstable/nsVersionComparator.h 1954include/xulrunner/unstable/nsVersionComparator.h
1945include/xulrunner/unstable/nsVoidArray.h 1955include/xulrunner/unstable/nsVoidArray.h
1946include/xulrunner/unstable/nsWaveDecoder.h 1956include/xulrunner/unstable/nsWaveDecoder.h

cvs diff -r1.2 -r1.3 pkgsrc/devel/xulrunner/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/devel/xulrunner/Attic/distinfo 2009/08/06 07:37:33 1.2
+++ pkgsrc/devel/xulrunner/Attic/distinfo 2009/08/06 10:42:50 1.3
@@ -1,18 +1,18 @@ @@ -1,18 +1,18 @@
1$NetBSD: distinfo,v 1.2 2009/08/06 07:37:33 tnn Exp $ 1$NetBSD: distinfo,v 1.3 2009/08/06 10:42:50 tnn Exp $
2 2
3SHA1 (xulrunner-1.9.1-source.tar.bz2) = acf223f2ba3b5e601f8832a3870a5d9034ac8d10 3SHA1 (xulrunner-1.9.1.2-source.tar.bz2) = 6439923ff9d316297926ebe193bac3ac1a41b494
4RMD160 (xulrunner-1.9.1-source.tar.bz2) = 00e862a86fad716b5c9b8c6ad25daa65e245a421 4RMD160 (xulrunner-1.9.1.2-source.tar.bz2) = d5e0b5f0e8b19b216394584ccabf37d776b89a39
5Size (xulrunner-1.9.1-source.tar.bz2) = 46444013 bytes 5Size (xulrunner-1.9.1.2-source.tar.bz2) = 46787928 bytes
6SHA1 (patch-aa) = 3bcbced4642b8814f5255973d45a0ac1eaded64d 6SHA1 (patch-aa) = 3bcbced4642b8814f5255973d45a0ac1eaded64d
7SHA1 (patch-ab) = 5331bae45501013d3ca13d161226e311bc10aafe 7SHA1 (patch-ab) = 5331bae45501013d3ca13d161226e311bc10aafe
8SHA1 (patch-ac) = e50356963fd235ea11fa45baae356fcf21c6669d 8SHA1 (patch-ac) = e50356963fd235ea11fa45baae356fcf21c6669d
9SHA1 (patch-ad) = 7afb960af4e4a311481e7a7b25008ca9b9f7fba1 9SHA1 (patch-ad) = 7afb960af4e4a311481e7a7b25008ca9b9f7fba1
10SHA1 (patch-ae) = 6679dd9c28f8029cc0ed2a32ae60da696099f351 10SHA1 (patch-ae) = 6679dd9c28f8029cc0ed2a32ae60da696099f351
11SHA1 (patch-af) = 13a9617cd2894cf342487d2a9cfe8cf3066ba0df 11SHA1 (patch-af) = 13a9617cd2894cf342487d2a9cfe8cf3066ba0df
12SHA1 (patch-ag) = 62e55040130d5e6cfb10b839fce6abd40a902f08 12SHA1 (patch-ag) = 62e55040130d5e6cfb10b839fce6abd40a902f08
13SHA1 (patch-ah) = 5f8bf19d5ac5ea7e263366a56d10d2eeeee61bac 13SHA1 (patch-ah) = 5f8bf19d5ac5ea7e263366a56d10d2eeeee61bac
14SHA1 (patch-ai) = 3444882b0f7f4b63273d8888af88be35ae60933a 14SHA1 (patch-ai) = 3444882b0f7f4b63273d8888af88be35ae60933a
15SHA1 (patch-aj) = 0e357b477aef423e7688dfb0be93cc8abc35e6e0 15SHA1 (patch-aj) = 0e357b477aef423e7688dfb0be93cc8abc35e6e0
16SHA1 (patch-ak) = 635187f582c16f8f044ffbdd950ec5f996d53ca8 16SHA1 (patch-ak) = 635187f582c16f8f044ffbdd950ec5f996d53ca8
17SHA1 (patch-al) = ca1a1fb5f875ab9c84c0afea5d913172a6f7ab57 17SHA1 (patch-al) = ca1a1fb5f875ab9c84c0afea5d913172a6f7ab57
18SHA1 (patch-am) = 75eb92d1941309ffc13f01d7f1946a2f09170220 18SHA1 (patch-am) = 75eb92d1941309ffc13f01d7f1946a2f09170220