Index: head/www/seamonkey/Makefile =================================================================== --- head/www/seamonkey/Makefile (revision 466027) +++ head/www/seamonkey/Makefile (revision 466028) @@ -1,86 +1,86 @@ # Created by: eivind/dima/jseger # $FreeBSD$ PORTNAME= seamonkey -DISTVERSION= 2.49.2 +DISTVERSION= 2.49.3 MOZILLA_VER= 52 # above + 3 CATEGORIES?= www mail news editors irc ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= The open source, standards compliant web browser BUILD_DEPENDS= nspr>=4.13.1:devel/nspr \ nss>=3.28.6:security/nss \ libevent>=2.0.21_2:devel/libevent \ harfbuzz>=1.4.1:print/harfbuzz \ graphite2>=1.3.8:graphics/graphite2 \ png>=1.6.25:graphics/png \ libvorbis>=1.3.5,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ sqlite3>=3.17.0:databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ yasm:devel/yasm \ zip:archivers/zip # soundtouch>=1.9.0:audio/soundtouch \ LIB_DEPENDS= libv4l2.so:multimedia/libv4l SSP_UNSAFE= yes USE_GECKO= gecko USE_GL= gl USES= tar:xz MOZ_PIS_SCRIPTS= moz_pis_S50cleanhome MOZ_OPTIONS+= --enable-application=suite USE_MOZILLA= -soundtouch MOZ_PKGCONFIG_FILES= OPTIONS_DEFINE= LDAP LIGHTNING RUST OPTIONS_SINGLE= TOOLKIT OPTIONS_SINGLE_TOOLKIT= GTK2 GTK3 OPTIONS_DEFAULT=CANBERRA GTK3 LDAP LIGHTNING LDAP_DESC?= LDAP support for Mailnews .include "${.CURDIR}/../../www/firefox/Makefile.options" .include MOZSRC:= ${WRKSRC}/mozilla .if ! ${PORT_OPTIONS:MLDAP} MOZ_OPTIONS+= --disable-ldap .else MOZ_OPTIONS+= --enable-ldap .endif .if ${PORT_OPTIONS:MLIGHTNING} MOZ_OPTIONS+= --enable-calendar .else MOZ_OPTIONS+= --disable-calendar .endif post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/suite/app/nsSuiteApp.cpp @${REINPLACE_CMD} -e '/accessibility.typeaheadfind.enablesound/s/true/false/' \ ${WRKSRC}/mozilla/modules/libpref/init/all.js @${SED} -e 's|%%MOZILLA%%|${MOZILLA}|g' \ < ${FILESDIR}/seamonkey.desktop.in > \ ${WRKDIR}/${MOZILLA}.desktop pre-configure: (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${MOZSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${MOZSRC}/js/src/ && ${LOCALBASE}/bin/autoconf-2.13) post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA}.desktop ${STAGEDIR}${PREFIX}/share/applications/ ${LN} -sf ${PREFIX}/lib/${MOZILLA}/chrome/icons/default/default48.png \ ${STAGEDIR}${PREFIX}/share/pixmaps/${MOZILLA}.png .include Index: head/www/seamonkey/distinfo =================================================================== --- head/www/seamonkey/distinfo (revision 466027) +++ head/www/seamonkey/distinfo (revision 466028) @@ -1,3 +1,3 @@ -TIMESTAMP = 1508138535 -SHA256 (seamonkey-2.49.2.source.tar.xz) = 09fc9f8b1817a901b4e0d7635701ab50236885821d73694ac21615c8d911b575 -SIZE (seamonkey-2.49.2.source.tar.xz) = 229980312 +TIMESTAMP = 1522389599 +SHA256 (seamonkey-2.49.3.source.tar.xz) = 3d149ccb0c5bafe086182b071343561bff430907cbd67f0516282722942f098a +SIZE (seamonkey-2.49.3.source.tar.xz) = 231791060 Index: head/www/seamonkey/files/patch-bug1440717 =================================================================== --- head/www/seamonkey/files/patch-bug1440717 (nonexistent) +++ head/www/seamonkey/files/patch-bug1440717 (revision 466028) @@ -0,0 +1,40 @@ +commit ae9da5994b51 +Author: Nicolas Silva +Date: Mon Mar 12 13:36:00 2018 +0100 + + Bug 1440717 - Use RefPtr for CompositingRenderTargetOGL::mGL. r=Bas, a=ritu + + --HG-- + extra : source : b6d2d55223d2aa5cb85bbdf33075d1d38f2a9a30 + extra : intermediate-source : 0ec90964e0bc479412a4da8a61d48b665211736e +--- + gfx/layers/opengl/CompositingRenderTargetOGL.cpp | 2 +- + gfx/layers/opengl/CompositingRenderTargetOGL.h | 2 +- + 2 files changed, 2 insertions(+), 2 deletions(-) + +diff --git mozilla/gfx/layers/opengl/CompositingRenderTargetOGL.cpp mozilla/gfx/layers/opengl/CompositingRenderTargetOGL.cpp +index c05b8edfd346..a1521c56da87 100644 +--- mozilla/gfx/layers/opengl/CompositingRenderTargetOGL.cpp ++++ mozilla/gfx/layers/opengl/CompositingRenderTargetOGL.cpp +@@ -60,7 +60,7 @@ CompositingRenderTargetOGL::BindRenderTarget() + msg.AppendPrintf("Framebuffer not complete -- CheckFramebufferStatus returned 0x%x, " + "GLContext=%p, IsOffscreen()=%d, mFBO=%d, aFBOTextureTarget=0x%x, " + "aRect.width=%d, aRect.height=%d", +- result, mGL, mGL->IsOffscreen(), mFBO, mInitParams.mFBOTextureTarget, ++ result, mGL.get(), mGL->IsOffscreen(), mFBO, mInitParams.mFBOTextureTarget, + mInitParams.mSize.width, mInitParams.mSize.height); + NS_WARNING(msg.get()); + } +diff --git mozilla/gfx/layers/opengl/CompositingRenderTargetOGL.h mozilla/gfx/layers/opengl/CompositingRenderTargetOGL.h +index 501701d6f1a3..071dc5cac1c2 100644 +--- mozilla/gfx/layers/opengl/CompositingRenderTargetOGL.h ++++ mozilla/gfx/layers/opengl/CompositingRenderTargetOGL.h +@@ -184,7 +184,7 @@ private: + * the target is always cleared at the end of a frame. + */ + RefPtr mCompositor; +- GLContext* mGL; ++ RefPtr mGL; + GLuint mTextureHandle; + GLuint mFBO; + }; Property changes on: head/www/seamonkey/files/patch-bug1440717 ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/www/seamonkey-i18n/Makefile =================================================================== --- head/www/seamonkey-i18n/Makefile (revision 466027) +++ head/www/seamonkey-i18n/Makefile (revision 466028) @@ -1,85 +1,85 @@ # Created by: Andrew Pantyukhin # $FreeBSD$ PORTNAME= seamonkey-i18n -PORTVERSION= 2.49.2 +PORTVERSION= 2.49.3 CATEGORIES= www mail news editors irc MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/langpack \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build1/linux-i686/xpi \ LOCAL/jbeich/${DIST_SUBDIR} PKGNAMEPREFIX= DISTFILES= ${SEAMONKEY_I18N_:S/$/.langpack.xpi/:S/^/seamonkey-${PORTVERSION}./} DIST_SUBDIR= xpi/${DISTNAME} MAINTAINER= gecko@FreeBSD.org COMMENT= Localized interface for SeaMonkey USES= zip gecko:seamonkey USE_XPI= seamonkey linux-seamonkey NO_ARCH= yes USE_SUBMAKE= yes WDIR= langpack-*@seamonkey.mozilla.org XPI_DISTNAMES= ${SEAMONKEY_I18N_} PLIST?= ${WRKDIR}/plist PLISTF?= ${WRKDIR}/plist_files .include "${.CURDIR}/Makefile.option" .include .ifndef WITHOUT_SWITCHER RUN_DEPENDS+= xpi-quick-locale-switcher>=0:www/xpi-quick-locale-switcher .endif .include "${.CURDIR}/Makefile.lang" SEAMONKEY_I18N_?= ${SEAMONKEY_I18N} .for dist in ${XPI_DISTNAMES} XPI_ID_${dist}= langpack-${dist}@seamonkey.mozilla.org .endfor pre-everything:: @${ECHO_CMD} @${ECHO_CMD} "Please define SEAMONKEY_I18N_ALL to install all languages." @${ECHO_CMD} do-extract: @${MKDIR} ${WRKSRC} @for lang in ${SEAMONKEY_I18N_}; do \ if ! (${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/seamonkey-${PORTVERSION}.$$lang.langpack.xpi -d ${WRKSRC}/langpack-$$lang@seamonkey.mozilla.org);\ then \ exit 1; \ fi; \ cd ${WRKSRC}/langpack-$$lang@seamonkey.mozilla.org/; \ ${FIND} -H -s * ! -type d | \ ${SED} -e "s|^|lib/xpi/langpack-$$lang@seamonkey.mozilla.org/|" >> ${PLISTF}; \ done ${CAT} ${PLISTF} | ${SORT} >> ${PLIST} do-install: @${MKDIR} ${STAGEDIR}${XPI_LIBDIR} ${XPI_LINKFARMS:S,^,${STAGEDIR},} cd ${WRKSRC}; ${PAX} -rw . ${STAGEDIR}${XPI_LIBDIR} ${CHMOD} -R a+rX,go-w ${STAGEDIR}${XPI_LIBDIR}/${WDIR}/ @for sldir in ${XPI_LINKFARMS}; do \ ${ECHO_CMD} "@dir $${sldir}" ${_A}; \ done @${ECHO_CMD} '@exec for _dir in ${XPI_LINKFARMS} ; { \ ${LN} -sf ${XPI_LIBDIR}/${WDIR} $$_dir/ ${_Q}; }' ${_A} @${ECHO_CMD} '@unexec for _dir in ${XPI_LINKFARMS}; { ${RM} $$_dir/${WDIR} ; }' ${_A} post-patch: ${FIND} ${WRKSRC} -name install.rdf -print0 | \ ${XARGS} -0L1 ${REINPLACE_CMD} -i '' -e '/ Index: head/www/seamonkey-i18n/distinfo =================================================================== --- head/www/seamonkey-i18n/distinfo (revision 466027) +++ head/www/seamonkey-i18n/distinfo (revision 466028) @@ -1,41 +1,41 @@ -TIMESTAMP = 1508138535 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.cs.langpack.xpi) = f3d1fcc5e55887652bfeb92720f2ff5c4f5795ff0b5c5cf2b99d2306cf785bf2 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.cs.langpack.xpi) = 941974 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.de.langpack.xpi) = 3b0ca0d924130ffec2090e4576e95041a317085be8333042243198d0c22227ce -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.de.langpack.xpi) = 949901 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.en-GB.langpack.xpi) = 2831d0bf9ca092090239bc5822ad4bad68ef94ffbd7427cca9c8fd073ae03a30 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.en-GB.langpack.xpi) = 911788 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.en-US.langpack.xpi) = 9102d7a3d14c00d3d694c063e9c2087e5e75a3f8810689df14625dfbcc4caa22 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.en-US.langpack.xpi) = 930971 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.es-AR.langpack.xpi) = dad877f67d5eb03f9da57fc0f4d6cda5b8429784c7f57f4b18d05e543f87a7cd -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.es-AR.langpack.xpi) = 952759 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.es-ES.langpack.xpi) = 82e76f9e97ee7685edc45f7425723280555591da02df207f572e57876588ece3 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.es-ES.langpack.xpi) = 897737 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.fr.langpack.xpi) = fd7a23a23d331e0d97a7d48408388771a4443911d54c0e70958d67606efabd05 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.fr.langpack.xpi) = 969290 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.hu.langpack.xpi) = 75102b128e373e803bbb531d1cf765b12ffd1cd21e161a257aeebcdb5f40bf25 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.hu.langpack.xpi) = 955178 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.it.langpack.xpi) = a41ab25f3336b4d236b7bc4e0c252141e165de7a122299cb6547f08b5b804da5 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.it.langpack.xpi) = 793590 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.ja.langpack.xpi) = 3489b511763104efa6ac5cabf11206bf2aceb5bbdce4122efa7c9e0f2765fb44 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.ja.langpack.xpi) = 1033800 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.lt.langpack.xpi) = 8443d56226e2c8483c57acb890c337acd7afcbd1fbce87c441a690dd4ec5c940 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.lt.langpack.xpi) = 956024 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.nb-NO.langpack.xpi) = afdd49dffc9296bb654b3868ed96a601ae9aaa015357706c162ecf59b35b3b6f -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.nb-NO.langpack.xpi) = 921826 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.nl.langpack.xpi) = 18052040a814f3af64cbc80f8976729f4fef68d605abf921a17accebc8e1d7e5 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.nl.langpack.xpi) = 957391 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.pl.langpack.xpi) = 2a972ae25bd7a5d2ffcb191425bb3fc7b527f4069b9c426fea9c473563125fca -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.pl.langpack.xpi) = 913004 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.pt-PT.langpack.xpi) = 23b3c609a7b3a91de05b4d0dabcbf9505d30ac9eb3cc326f04b928c71df5247d -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.pt-PT.langpack.xpi) = 939012 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.ru.langpack.xpi) = 31800aa4cf83f3f99ed86e85230fe979b4dc6b650240f497f6e27c3a8e692074 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.ru.langpack.xpi) = 995908 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.sk.langpack.xpi) = 486b0b3e379b83d949167aadc5a489c6f0ea8e33d84022297a4c7d2bff8ce938 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.sk.langpack.xpi) = 967988 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.sv-SE.langpack.xpi) = 19ae712fe9f4fb0ff1ba80c1a2ddc51ec5536687c78586eb975ce5c71573c6fc -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.sv-SE.langpack.xpi) = 940793 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.zh-CN.langpack.xpi) = f1f0e6060b9c6ce6c37e77be3e056ec1657ae2fad661c59b9316b57bb3a0f777 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.zh-CN.langpack.xpi) = 946348 -SHA256 (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.zh-TW.langpack.xpi) = e55e470c9b02f75a9385a51308a9ef8bd7abe6e922bf8db7778239db5638c414 -SIZE (xpi/seamonkey-i18n-2.49.2/seamonkey-2.49.2.zh-TW.langpack.xpi) = 1002365 +TIMESTAMP = 1522389599 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.cs.langpack.xpi) = 2998e9f55d28011f10be507d40fcb7a53506100b3bfa37ca0545eb368233d63a +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.cs.langpack.xpi) = 941974 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.de.langpack.xpi) = 5356bab980445fb0d7836deb1591befdfef01498e77f9cd5e85f12e2e726f4ad +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.de.langpack.xpi) = 949902 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.en-GB.langpack.xpi) = 71dc0e9d5dce21970605174e0257764430951a59a792d7f2900ee869fe19b796 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.en-GB.langpack.xpi) = 911789 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.en-US.langpack.xpi) = 068e89e43a353fd05ba042372ef4431de520685a38343b89a28e709bdc7cd831 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.en-US.langpack.xpi) = 930971 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.es-AR.langpack.xpi) = c7ad093b247086847c0751fb6edc0effdf7be2e0bb143670dfc34983e06558f1 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.es-AR.langpack.xpi) = 952759 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.es-ES.langpack.xpi) = 699b6b554731163df8056733be743acf745609befb8a713b059ed9b4c346e891 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.es-ES.langpack.xpi) = 897737 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.fr.langpack.xpi) = 40405acedcdb1c36e5334b3b89d1a96b6f8d0fda0aea5e1f58cb70b90ca95522 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.fr.langpack.xpi) = 969290 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.hu.langpack.xpi) = fe2635b7e0a98c558fcf7eb4a9ba949f949187d2bea30bb79dc0434ee6f46478 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.hu.langpack.xpi) = 955174 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.it.langpack.xpi) = 301422c0833b37b69e6a21d1abdf028c633e2935a33abfdaa48a97e1bb00df08 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.it.langpack.xpi) = 793590 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.ja.langpack.xpi) = c702a573da8e01b943cc2e54b47eef1a995ffee1398f00d590216bfd841f907c +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.ja.langpack.xpi) = 1033801 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.lt.langpack.xpi) = eaa111e36cf541f60cc88f29728cfd142fbe21fdb908742ab5292827b9e0c1e4 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.lt.langpack.xpi) = 956024 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.nb-NO.langpack.xpi) = 0e97861c3943e6f05955bb0f567390b5e929ed90e2da6664b4a164ac5e2a4bee +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.nb-NO.langpack.xpi) = 921826 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.nl.langpack.xpi) = 93e8b616418a9be94c2ff89f18f02f1fabdff408e46a7be11093b85495e11f59 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.nl.langpack.xpi) = 957391 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.pl.langpack.xpi) = a4d1dba5190e97765014c9bc64c089138873280a56f9cf99fd52fb15a8c305d8 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.pl.langpack.xpi) = 913004 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.pt-PT.langpack.xpi) = 781bf9917f6c6f171bad0c5e0f2e0243c3a0ccb59c52c7773d9f3ecffdd8abaa +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.pt-PT.langpack.xpi) = 939012 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.ru.langpack.xpi) = d0a1de13c8e19c07ddb8bbff2f931e0f0182b36ba975b5ee80ce6959d7edfd29 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.ru.langpack.xpi) = 995907 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.sk.langpack.xpi) = 794831306e1c5ac3319e8bffc7bb26916c9b7b0235ee1356fabdc066f8cbc372 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.sk.langpack.xpi) = 967988 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.sv-SE.langpack.xpi) = b94fde2edcba34225998deffd50d48d82dc2099468017d34fb5f6c26944ebb68 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.sv-SE.langpack.xpi) = 940793 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.zh-CN.langpack.xpi) = 7313c3dbb7e2ec9318989f289ecc856570b84a9072c8099300f1625eabc1b711 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.zh-CN.langpack.xpi) = 946348 +SHA256 (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.zh-TW.langpack.xpi) = 7687091d5833d4923f44232fd6c0a74ee9c6e657681fc20c43ec4d0b514ff4a7 +SIZE (xpi/seamonkey-i18n-2.49.3/seamonkey-2.49.3.zh-TW.langpack.xpi) = 1002365