Index: branches/2018Q4/Mk/Uses/gecko.mk =================================================================== --- branches/2018Q4/Mk/Uses/gecko.mk (revision 487199) +++ branches/2018Q4/Mk/Uses/gecko.mk (revision 487200) @@ -1,112 +1,112 @@ # $FreeBSD$ # # Handle dependency of different gecko based applications # # MAINTAINER: gecko@FreeBSD.org # # Feature: gecko # Usage: USES=gecko or USES=gecko:ARGS # Valid ARGS: firefox, seamonkey, thunderbird # The following arguments are available # - build: also add the dependency as a build # dependency # - [0-9][0-9][+]?: a version optionnally # followed by a + # .if !defined(_INCLUDE_USES_GECKO_MK) _INCLUDE_USES_GECKO_MK= yes _GECKO_VERSION= ${gecko_ARGS:M[0-9][0-9]*} .if ${gecko_ARGS:Mfirefox} _GECKO_DEFAULT_VERSION= 60 -_GECKO_VERSIONS= 60 63 +_GECKO_VERSIONS= 60 64 _GECKO_TYPE= firefox # Dependence lines for different Firefox versions 60_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox-esr -63_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox +64_DEPENDS= ${LOCALBASE}/lib/firefox/firefox:www/firefox .if exists(${LOCALBASE}/bin/firefox) _GECKO_INSTALLED_VER!= ${PKG_QUERY} %v firefox firefox-esr _GECKO_INSTALLED_VER:= ${_GECKO_INSTALLED_VER:C/\..*//} .endif .elif ${gecko_ARGS:Mseamonkey} _GECKO_DEFAULT_VERSION= 49 _GECKO_VERSIONS= 49 _GECKO_TYPE= seamonkey .if exists(${LOCALBASE}/bin/seamonkey) _GECKO_INSTALLED_VER!= ${PKG_QUERY} %v seamonkey _GECKO_INSTALLED_VER:= ${_GECKO_INSTALLED_VER:C/[0-9]*\.//:C/\..*//} .endif # Dependence lines for different Seamonkey versions 49_DEPENDS= ${LOCALBASE}/lib/seamonkey/seamonkey:www/seamonkey .elif ${gecko_ARGS:Mthunderbird} _GECKO_DEFAULT_VERSION= 60 _GECKO_VERSIONS= 60 _GECKO_TYPE= thunderbird .if exists(${LOCALBASE}/bin/thunderbird) _GECKO_INSTALLED_VER!= ${PKG_QUERY} %v thunderbird _GECKO_INSTALLED_VER:= ${_GECKO_INSTALLED_VER:C/\..*//} .endif # Dependence lines for different Thunderbird versions 60_DEPENDS= ${LOCALBASE}/lib/thunderbird/thunderbird:mail/thunderbird .else IGNORE= Unknown type of gecko dependency you may specify either firefox, seamonkey or thunderbird .endif .if defined(_GECKO_TYPE) .if ${_GECKO_VERSION:M*+} _GECKO_MIN_VERSION:= ${_GECKO_VERSION:S/+//} _GECKO_WANTED_VERSIONS:= ${_GECKO_DEFAULT_VERSION} .endif .if ${_GECKO_VERSION:M[0-9][0-9]} _GECKO_WANTED_VERSIONS:= ${_GECKO_VERSION:M[0-9][0-9]} .endif _GECKO_WANTED_VERSIONS?= ${_GECKO_DEFAULT_VERSION} .if defined(_GECKO_MIN_VERSION) . for _v in ${_GECKO_VERSIONS} . if ${_GECKO_MIN_VERSION} <= ${_v} _GECKO_WANTED_VERSIONS+= ${_v} . endif . endfor .endif .for _v in ${_GECKO_WANTED_VERSIONS:O:u} _GECKO_HIGHEST_VERSION:= ${_v} .if defined(_GECKO_INSTALLED_VER) && ${_GECKO_INSTALLED_VER} == ${_v} _GECKO_WANTED_VERSION:= ${_v} .endif .endfor .if !defined(_GECKO_WANTED_VERSION) .if defined(_GECKO_INSTALLED_VER) IGNORE= cannot install: ${_GECKO_TYPE} versions mismatch: ${_GECKO_TYPE}-${_GECKO_INSTALLED_VER} is installed and wanted version is ${_GECKO_TYPE}-${_GECKO_VERSION:M[0-9][0-9]} .else _GECKO_WANTED_VERSION:= ${_GECKO_HIGHEST_VERSION} .endif .endif .if ${gecko_ARGS:Mbuild} BUILD_DEPENDS+= ${${_GECKO_WANTED_VERSION}_DEPENDS} .endif RUN_DEPENDS+= ${${_GECKO_WANTED_VERSION}_DEPENDS} .endif .endif Index: branches/2018Q4/Mk/bsd.gecko.mk =================================================================== --- branches/2018Q4/Mk/bsd.gecko.mk (revision 487199) +++ branches/2018Q4/Mk/bsd.gecko.mk (revision 487200) @@ -1,595 +1,598 @@ #-*- tab-width: 4; -*- # ex:ts=4 # # Date created: 12 Nov 2005 # Whom: Michael Johnson # # $FreeBSD$ # # 4 column tabs prevent hair loss and tooth decay! # bsd.gecko.mk abstracts the selection of gecko-based backends. It allows users # and porters to support any available gecko backend without needing to build # many conditional tests. ${USE_GECKO} is the list of backends that your port # can handle, and ${GECKO} is set by bsd.gecko.mk to be the chosen backend. # Users set ${WITH_GECKO} to the list of gecko backends they want on their # system. .if defined(USE_GECKO) .if !defined(_POSTMKINCLUDED) && !defined(Gecko_Pre_Include) Gecko_Pre_Include= bsd.gecko.mk # This file contains some reusable components for mozilla ports. It's of # use primarily to apps from the mozilla project itself (such as Firefox, # Thunderbird, etc.), and probably won't be of use for gecko-based ports # like epiphany, galeon, etc. # # You need to make sure to add USE_GECKO=gecko to for your port can uses # one of these options below. # # Ports can use the following: # # USE_MOZILLA By default, it enables every system dependency # listed in '_ALL_DEPENDS'. If your port doesn't # need one of those then you can use '-' like # 'USE_MOZILLA= -png -vpx' to subtract the # dependencies. Experimental deps use '+' like # 'USE_MOZILLA= +speex +theora'. # # MOZILLA_PLIST_DIRS List of directories to descend into when installing # and creating the plist # # MOZ_PIS_SCRIPTS List of scripts residing in ${FILESDIR} to be # filtered through MOZCONFIG_SED and installed along # with our Pluggable Init Scripts (PIS) # # MOZ_SED_ARGS sed(1) commands through which MOZ_PIS_SCRIPTS are # filtered. There is a default set defined here, so # you probably want to add to MOZ_SED_ARGS rather # than clobber it # # MOZ_OPTIONS configure arguments (added to .mozconfig). If # NOMOZCONFIG is defined, you probably want to set # CONFIGURE_ARGS+=${MOZ_OPTIONS} # # MOZ_MK_OPTIONS The make(1) arguments (added to .mozconfig). If # NOMOZCONFIG is defined, you probably want to set # MAKE_ARGS+=${MOZ_MK_OPTIONS} # # MOZ_EXPORT Environment variables for the build process (added # to .mozconfig). If NOMOZCONFIG is defined, you # probably want to set MAKE_ENV+=${MOZ_EXPORT} # # MOZ_CHROME A variable for the --enable-chrome-format= in # CONFIGURE_ARGS. The default is omni. # # MOZ_TOOLKIT A variable for the --enable-default-toolkit= in # CONFIGURE_ARGS. The default is cairo-gtk2. # # PORT_MOZCONFIG Defaults to ${FILESDIR}/mozconfig.in, but can be # set to a generic mozconfig included with the port # # NOMOZCONFIG Don't drop a customized .mozconfig into the build # directory. Options will have to be specified in # CONFIGURE_ARGS instead # MAINTAINER?= gecko@FreeBSD.org MOZILLA?= ${PORTNAME} MOZILLA_VER?= ${PORTVERSION} MOZILLA_BIN?= ${PORTNAME}-bin MOZILLA_EXEC_NAME?=${MOZILLA} MOZ_RPATH?= ${MOZILLA} USES+= cpe gmake iconv localbase perl5 pkgconfig \ python:2.7,build desktop-file-utils CPE_VENDOR?=mozilla USE_PERL5= build USE_XORG= x11 xcomposite xdamage xext xfixes xrender xt HAS_CONFIGURE= yes CONFIGURE_OUTSOURCE= yes BUNDLE_LIBS= yes .if ${MOZILLA_VER:R:R} >= 49 USES+= compiler:c++17-lang .else USES+= compiler:c++11-lang .endif .if ${MOZILLA_VER:R:R} >= 50 USE_XORG+= xcb .endif .if ${MOZILLA_VER:R:R} >= 56 MESA_LLVM_VER?= 60 BUILD_DEPENDS+= llvm${MESA_LLVM_VER}>0:devel/llvm${MESA_LLVM_VER} MOZ_EXPORT+= LLVM_CONFIG=llvm-config${MESA_LLVM_VER} .endif .if ${MOZILLA_VER:R:R} >= 61 BUILD_DEPENDS+= ${LOCALBASE}/bin/python${PYTHON3_DEFAULT}:lang/python${PYTHON3_DEFAULT:S/.//g} MOZ_EXPORT+= PYTHON3="${LOCALBASE}/bin/python${PYTHON3_DEFAULT}" .endif .if ${MOZILLA_VER:R:R} >= 63 BUILD_DEPENDS+= rust-cbindgen>=0.6.2:devel/rust-cbindgen \ node:www/node .endif +.if ${MOZILLA_VER:R:R} < 64 +MOZ_OPTIONS+= --enable-pie +.endif + .if ${OPSYS} == FreeBSD && ${OSREL} == 11.1 && ${MOZILLA_VER:R:R} < 49 LLD_UNSAFE= yes .endif MOZILLA_SUFX?= none MOZSRC?= ${WRKSRC} PLISTF?= ${WRKDIR}/plist_files MOZ_PIS_DIR?= lib/${MOZILLA}/init.d PORT_MOZCONFIG?= ${FILESDIR}/mozconfig.in MOZCONFIG?= ${WRKSRC}/.mozconfig MOZILLA_PLIST_DIRS?= bin lib share/pixmaps share/applications PKGINSTALL?= ${WRKDIR}/pkg-install PKGDEINSTALL?= ${WRKDIR}/pkg-deinstall PKGINSTALL_INC?= ${.CURDIR}/../../www/firefox/files/pkg-install.in PKGDEINSTALL_INC?= ${.CURDIR}/../../www/firefox/files/pkg-deinstall.in MOZ_PKGCONFIG_FILES?= ${MOZILLA}-gtkmozembed ${MOZILLA}-js \ ${MOZILLA}-xpcom ${MOZILLA}-plugin MOZ_EXPORT+= ${CONFIGURE_ENV} \ RUSTFLAGS="${RUSTFLAGS}" \ PERL="${PERL}" MOZ_OPTIONS+= --prefix="${PREFIX}" MOZ_MK_OPTIONS+=MOZ_OBJDIR="${BUILD_WRKSRC}" LDFLAGS+= -Wl,--as-needed # Adjust -C target-cpu if -march/-mcpu is set by bsd.cpu.mk .if ${ARCH} == amd64 || ${ARCH} == i386 RUSTFLAGS+= ${CFLAGS:M-march=*:S/-march=/-C target-cpu=/} .else RUSTFLAGS+= ${CFLAGS:M-mcpu=*:S/-mcpu=/-C target-cpu=/} .endif .if ${MOZILLA_VER:R:R} < 55 && ${OPSYS} == FreeBSD && ${OSVERSION} < 1200032 # use jemalloc 3.0.0 (4.0 for firefox 43+) API for stats/tuning MOZ_EXPORT+= MOZ_JEMALLOC4=1 .if ${MOZILLA_VER:R:R} >= 48 MOZ_OPTIONS+= --enable-jemalloc=4 .elif ${OSVERSION} < 1100079 MOZ_OPTIONS+= --enable-jemalloc .endif # Mozilla >= 48 .endif # Mozilla < 55 # Standard depends _ALL_DEPENDS= cairo event ffi graphite harfbuzz hunspell icu jpeg nspr nss png pixman soundtouch sqlite vpx .if ${PORT_OPTIONS:MINTEGER_SAMPLES} MOZ_EXPORT+= MOZ_INTEGER_SAMPLES=1 _ALL_DEPENDS+= tremor .else _ALL_DEPENDS+= vorbis .endif .if ! ${PORT_OPTIONS:MBUNDLED_CAIRO} cairo_BUILD_DEPENDS=cairo>=1.12.16_1,2:graphics/cairo cairo_LIB_DEPENDS= libcairo.so:graphics/cairo cairo_MOZ_OPTIONS= --enable-system-cairo .endif event_LIB_DEPENDS= libevent.so:devel/libevent event_MOZ_OPTIONS= --with-system-libevent ffi_LIB_DEPENDS= libffi.so:devel/libffi ffi_MOZ_OPTIONS= --enable-system-ffi .if exists(${FILESDIR}/patch-bug847568) graphite_LIB_DEPENDS= libgraphite2.so:graphics/graphite2 graphite_MOZ_OPTIONS= --with-system-graphite2 harfbuzz_LIB_DEPENDS= libharfbuzz.so:print/harfbuzz harfbuzz_MOZ_OPTIONS= --with-system-harfbuzz .endif hunspell_LIB_DEPENDS= libhunspell-1.6.so:textproc/hunspell hunspell_MOZ_OPTIONS= --enable-system-hunspell icu_LIB_DEPENDS= libicui18n.so:devel/icu icu_MOZ_OPTIONS= --with-system-icu --with-intl-api -jpeg_BUILD_DEPENDS=yasm:devel/yasm # XXX Remove files/patch-ijg-libjpeg once -turbo is default jpeg_USES= jpeg jpeg_MOZ_OPTIONS= --with-system-jpeg=${LOCALBASE} nspr_LIB_DEPENDS= libnspr4.so:devel/nspr nspr_MOZ_OPTIONS= --with-system-nspr nss_LIB_DEPENDS= libnss3.so:security/nss nss_MOZ_OPTIONS= --with-system-nss pixman_LIB_DEPENDS= libpixman-1.so:x11/pixman pixman_MOZ_OPTIONS= --enable-system-pixman png_LIB_DEPENDS= libpng.so:graphics/png png_MOZ_OPTIONS= --with-system-png=${LOCALBASE} .if exists(${FILESDIR}/patch-z-bug517422) soundtouch_LIB_DEPENDS= libSoundTouch.so:audio/soundtouch soundtouch_MOZ_OPTIONS= --with-system-soundtouch .endif sqlite_LIB_DEPENDS= libsqlite3.so:databases/sqlite3 sqlite_MOZ_OPTIONS= --enable-system-sqlite .if exists(${FILESDIR}/patch-z-bug517422) # XXX disabled: update to 1.2.x or review backported fixes theora_LIB_DEPENDS= libtheora.so:multimedia/libtheora theora_MOZ_OPTIONS= --with-system-theora tremor_LIB_DEPENDS= libogg.so:audio/libogg libvorbisidec.so:audio/libtremor tremor_MOZ_OPTIONS= --with-system-tremor --with-system-ogg vorbis_LIB_DEPENDS= libogg.so:audio/libogg libvorbis.so:audio/libvorbis vorbis_MOZ_OPTIONS= --with-system-vorbis --with-system-ogg .endif -vpx_BUILD_DEPENDS= yasm:devel/yasm vpx_LIB_DEPENDS= libvpx.so:multimedia/libvpx vpx_MOZ_OPTIONS= --with-system-libvpx .for use in ${USE_MOZILLA} ${use:S/-/_WITHOUT_/}= ${TRUE} .endfor LIB_DEPENDS+= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 .for dep in ${_ALL_DEPENDS} ${USE_MOZILLA:M+*:S/+//} .if !defined(_WITHOUT_${dep}) BUILD_DEPENDS+= ${${dep}_BUILD_DEPENDS} LIB_DEPENDS+= ${${dep}_LIB_DEPENDS} RUN_DEPENDS+= ${${dep}_RUN_DEPENDS} USES+= ${${dep}_USES} MOZ_OPTIONS+= ${${dep}_MOZ_OPTIONS} .else BUILD_DEPENDS+= ${-${dep}_BUILD_DEPENDS} .endif .endfor # Standard options MOZ_CHROME?= omni MOZ_TOOLKIT?= cairo-gtk3 MOZ_CHANNEL?= ${PKGNAMESUFFIX:Urelease:S/^-//} MOZ_OPTIONS+= \ --enable-chrome-format=${MOZ_CHROME} \ --enable-default-toolkit=${MOZ_TOOLKIT} \ --enable-update-channel=${MOZ_CHANNEL} \ - --disable-updater \ - --enable-pie + --disable-updater # others MOZ_OPTIONS+= --with-system-zlib \ --with-system-bz2 # API keys from www/chromium # http://www.chromium.org/developers/how-tos/api-keys # Note: these are for FreeBSD use ONLY. For your own distribution, # please get your own set of keys. MOZ_EXPORT+= MOZ_GOOGLE_API_KEY=AIzaSyBsp9n41JLW8jCokwn7vhoaMejDFRd1mp8 .if ${PORT_OPTIONS:MGTK2} MOZ_TOOLKIT= cairo-gtk2 .endif .if ${MOZ_TOOLKIT:Mcairo-gtk3} BUILD_DEPENDS+= gtk3>=3.14.6:x11-toolkits/gtk30 USE_GNOME+= gdkpixbuf2 gtk20 gtk30 .else # gtk2, cairo-gtk2 USE_GNOME+= gdkpixbuf2 gtk20 .endif .if ${PORT_OPTIONS:MOPTIMIZED_CFLAGS} CFLAGS+= -O3 MOZ_EXPORT+= MOZ_OPTIMIZE_FLAGS="${CFLAGS:M-O*}" MOZ_OPTIONS+= --enable-optimize .else MOZ_OPTIONS+= --disable-optimize . if ${MOZILLA_VER:R:R} >= 56 . if ${/usr/bin/ld:L:tA} != /usr/bin/ld.lld # ld 2.17 barfs on Stylo built with -C opt-level=0 USE_BINUTILS= yes LDFLAGS+= -B${LOCALBASE}/bin . endif . endif .endif .if ${PORT_OPTIONS:MCANBERRA} RUN_DEPENDS+= libcanberra>0:audio/libcanberra .endif .if ${PORT_OPTIONS:MDBUS} BUILD_DEPENDS+= libnotify>0:devel/libnotify LIB_DEPENDS+= libdbus-1.so:devel/dbus \ libdbus-glib-1.so:devel/dbus-glib \ libstartup-notification-1.so:x11/startup-notification MOZ_OPTIONS+= --enable-startup-notification .else MOZ_OPTIONS+= --disable-dbus .endif .if ${PORT_OPTIONS:MFFMPEG} # dom/media/platforms/ffmpeg/FFmpegRuntimeLinker.cpp RUN_DEPENDS+= ffmpeg>=0.8,1:multimedia/ffmpeg .endif .if ${MOZILLA_VER:R:R} < 46 MOZ_OPTIONS+= --disable-gstreamer .endif .if ${PORT_OPTIONS:MGCONF} USE_GNOME+= gconf2 MOZ_OPTIONS+= --enable-gconf .else MOZ_OPTIONS+= --disable-gconf .endif .if ${PORT_OPTIONS:MLIBPROXY} LIB_DEPENDS+= libproxy.so:net/libproxy MOZ_OPTIONS+= --enable-libproxy .else MOZ_OPTIONS+= --disable-libproxy .endif .if ${PORT_OPTIONS:MALSA} LIB_DEPENDS+= libasound.so:audio/alsa-lib RUN_DEPENDS+= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-plugins RUN_DEPENDS+= alsa-lib>=1.1.1_1:audio/alsa-lib MOZ_OPTIONS+= --enable-alsa .endif .if ${PORT_OPTIONS:MJACK} BUILD_DEPENDS+= ${LOCALBASE}/include/jack/jack.h:audio/jack MOZ_OPTIONS+= --enable-jack .endif .if ${PORT_OPTIONS:MPULSEAUDIO} BUILD_DEPENDS+= ${LOCALBASE}/include/pulse/pulseaudio.h:audio/pulseaudio MOZ_OPTIONS+= --enable-pulseaudio .else MOZ_OPTIONS+= --disable-pulseaudio .endif .if ${PORT_OPTIONS:MSNDIO} LIB_DEPENDS+= libsndio.so:audio/sndio post-patch-SNDIO-on: @${REINPLACE_CMD} -e 's|OpenBSD|${OPSYS}|g' \ ${MOZSRC}/media/libcubeb/src/moz.build \ ${MOZSRC}/toolkit/library/moz.build . for tests in tests gtest @if [ -f "${MOZSRC}/media/libcubeb/${tests}/moz.build" ]; then \ ${REINPLACE_CMD} -e 's|OpenBSD|${OPSYS}|g' \ ${MOZSRC}/media/libcubeb/${tests}/moz.build; \ fi . endfor @if [ -f "${MOZSRC}/media/webrtc/trunk/webrtc/build/common.gypi" ]; then \ ${REINPLACE_CMD} -e 's|OS==\"openbsd\"|OS==\"${OPSYS:tl}\"|g' \ ${MOZSRC}/media/webrtc/trunk/webrtc/build/common.gypi; \ fi @if [ -f "${MOZSRC}/media/webrtc/signaling/test/common.build" ]; then \ ${ECHO_CMD} "OS_LIBS += ['sndio']" >> \ ${MOZSRC}/media/webrtc/signaling/test/common.build; \ fi .endif .if ${PORT_OPTIONS:MRUST} || ${MOZILLA_VER:R:R} >= 54 BUILD_DEPENDS+= ${RUST_PORT:T}>=1.28:${RUST_PORT} RUST_PORT?= lang/rust . if ${MOZILLA_VER:R:R} < 54 MOZ_OPTIONS+= --enable-rust . endif .else MOZ_OPTIONS+= --disable-rust .endif .if ${PORT_OPTIONS:MDEBUG} MOZ_OPTIONS+= --enable-debug --disable-release STRIP= # ports/184285 .else MOZ_OPTIONS+= --disable-debug --disable-debug-symbols --enable-release . if ${MOZILLA_VER:R:R} >= 56 && (${ARCH:Maarch64} || ${MACHINE_CPU:Msse2}) MOZ_OPTIONS+= --enable-rust-simd . endif .endif .if ${PORT_OPTIONS:MDTRACE} MOZ_OPTIONS+= --enable-dtrace \ --disable-gold . if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100061 LIBS+= -lelf . endif STRIP= .else MOZ_OPTIONS+= --disable-dtrace .endif .if ${PORT_OPTIONS:MPROFILE} MOZ_OPTIONS+= --enable-profiling STRIP= .else MOZ_OPTIONS+= --disable-profiling .endif .if ${PORT_OPTIONS:MTEST} USE_XORG+= xscrnsaver MOZ_OPTIONS+= --enable-tests .else MOZ_OPTIONS+= --disable-tests .endif .if !defined(STRIP) || ${STRIP} == "" MOZ_OPTIONS+= --disable-strip --disable-install-strip .else MOZ_OPTIONS+= --enable-strip --enable-install-strip .endif # _MAKE_JOBS is only available after bsd.port.post.mk, thus cannot be # used in .mozconfig. And client.mk automatically uses -jN where N # is what multiprocessing.cpu_count() returns. .if defined(DISABLE_MAKE_JOBS) || defined(MAKE_JOBS_UNSAFE) MAKE_JOBS_NUMBER= 1 .endif .if defined(MAKE_JOBS_NUMBER) MOZ_MAKE_FLAGS+=-j${MAKE_JOBS_NUMBER} .endif .if defined(MOZ_MAKE_FLAGS) MOZ_MK_OPTIONS+=MOZ_MAKE_FLAGS="${MOZ_MAKE_FLAGS}" .endif MOZ_SED_ARGS+= -e's|@CPPFLAGS@|${CPPFLAGS}|g' \ -e 's|@CFLAGS@|${CFLAGS}|g' \ -e 's|@LDFLAGS@|${LDFLAGS}|g' \ -e 's|@LIBS@|${LIBS}|g' \ -e 's|@LOCALBASE@|${LOCALBASE}|g' \ -e 's|@PERL@|${PERL}|g' \ -e 's|@MOZDIR@|${PREFIX}/lib/${MOZILLA}|g' \ -e 's|%%PREFIX%%|${PREFIX}|g' \ -e 's|%%CFLAGS%%|${CFLAGS}|g' \ -e 's|%%LDFLAGS%%|${LDFLAGS}|g' \ -e 's|%%LIBS%%|${LIBS}|g' \ -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ -e 's|%%PERL%%|${PERL}|g' \ -e 's|%%MOZILLA%%|${MOZILLA}|g' \ -e 's|%%MOZILLA_BIN%%|${MOZILLA_BIN}|g' \ -e 's|%%MOZDIR%%|${PREFIX}/lib/${MOZILLA}|g' MOZCONFIG_SED?= ${SED} ${MOZ_SED_ARGS} .if ${ARCH} == amd64 . if ${USE_MOZILLA:M-nss} USE_BINUTILS= # intel-gcm.s CFLAGS+= -B${LOCALBASE}/bin LDFLAGS+= -B${LOCALBASE}/bin . endif .elif ${ARCH:Mpowerpc*} . if ${ARCH} == "powerpc64" MOZ_EXPORT+= UNAME_m="${ARCH}" CFLAGS+= -mminimal-toc . endif .elif ${ARCH} == "sparc64" # Work around miscompilation/mislinkage of the sCanonicalVTable hacks. MOZ_OPTIONS+= --disable-v1-string-abi .endif .else # bsd.port.post.mk post-patch: gecko-post-patch gecko-moz-pis-patch gecko-post-patch: .if exists(${PKGINSTALL_INC}) @${MOZCONFIG_SED} < ${PKGINSTALL_INC} > ${PKGINSTALL} .endif .if exists(${PKGDEINSTALL_INC}) @${MOZCONFIG_SED} < ${PKGDEINSTALL_INC} > ${PKGDEINSTALL} .endif @${RM} ${MOZCONFIG} .if !defined(NOMOZCONFIG) @if [ -e ${PORT_MOZCONFIG} ] ; then \ ${MOZCONFIG_SED} < ${PORT_MOZCONFIG} >> ${MOZCONFIG} ; \ fi .for arg in ${MOZ_OPTIONS} @${ECHO_CMD} ac_add_options ${arg:Q} >> ${MOZCONFIG} .endfor .for arg in ${MOZ_MK_OPTIONS} @${ECHO_CMD} mk_add_options ${arg:Q} >> ${MOZCONFIG} .endfor .for var in ${MOZ_EXPORT} @${ECHO_CMD} export ${var:Q} >> ${MOZCONFIG} .endfor .endif # .if !defined(NOMOZCONFIG) .if exists(${MOZSRC}/build/unix/mozilla-config.in) @${REINPLACE_CMD} -e 's/%{idldir}/%idldir%/g ; \ s|"%FULL_NSPR_CFLAGS%"|`nspr-config --cflags`|g ; \ s|"%FULL_NSPR_LIBS%"|`nspr-config --libs`|g' \ ${MOZSRC}/build/unix/mozilla-config.in .endif .if ${USE_MOZILLA:M-nspr} @${ECHO_MSG} "===> Applying NSPR patches" @for i in ${.CURDIR}/../../devel/nspr/files/patch-*; do \ ${PATCH} ${PATCH_ARGS} -d ${MOZSRC}/nsprpub < $$i; \ done .endif .if ${USE_MOZILLA:M-nss} @${ECHO_MSG} "===> Applying NSS patches" @for i in ${.CURDIR}/../../security/nss/files/patch-*; do \ ${PATCH} ${PATCH_ARGS} -d ${MOZSRC}/security/nss < $$i; \ done .endif @for f in \ ${WRKSRC}/directory/c-sdk/config/FreeBSD.mk \ ${WRKSRC}/directory/c-sdk/configure \ ${MOZSRC}/security/coreconf/FreeBSD.mk \ ${MOZSRC}/js/src/Makefile.in \ ${MOZSRC}/js/src/configure \ ${MOZSRC}/configure \ ${WRKSRC}/configure; do \ if [ -f $$f ] ; then \ ${REINPLACE_CMD} -Ee 's|-lc_r|-pthread|g ; \ s|-l?pthread|-pthread|g ; \ s|echo aout|echo elf|g ; \ s|/usr/X11R6|${LOCALBASE}|g' \ $$f; \ fi; \ done @if [ -f ${WRKSRC}/config/baseconfig.mk ] ; then \ ${REINPLACE_CMD} -e 's|%%MOZILLA%%|${MOZILLA}|g' \ ${WRKSRC}/config/baseconfig.mk; \ fi @${REINPLACE_CMD} -e 's|%%MOZILLA%%|${MOZILLA}|g' \ ${MOZSRC}/config/baseconfig.mk @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g ; \ s|%%LOCALBASE%%|${LOCALBASE}|g' \ ${MOZSRC}/build/unix/run-mozilla.sh @${REINPLACE_CMD} -e 's|/usr/local/netscape|${LOCALBASE}|g ; \ s|/usr/local/lib/netscape|${LOCALBASE}/lib|g' \ ${MOZSRC}/xpcom/io/SpecialSystemDirectory.cpp @${REINPLACE_CMD} -e 's|/etc|${PREFIX}&|g' \ ${MOZSRC}/xpcom/build/nsXPCOMPrivate.h @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ -e 's|mozilla/plugins|browser_plugins|g' \ -e 's|share/mozilla/extensions|lib/xpi|g' \ ${MOZSRC}/xpcom/io/nsAppFileLocationProvider.cpp \ ${MOZSRC}/toolkit/xre/nsXREDirProvider.cpp @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${MOZSRC}/extensions/spellcheck/hunspell/*/mozHunspell.cpp # handles mozilla pis scripts. gecko-moz-pis-patch: .for moz in ${MOZ_PIS_SCRIPTS} @${MOZCONFIG_SED} < ${FILESDIR}/${moz} > ${WRKDIR}/${moz} .endfor pre-install: gecko-moz-pis-pre-install post-install-script: gecko-create-plist gecko-create-plist: # Create the plist ${RM} ${PLISTF} .for dir in ${MOZILLA_PLIST_DIRS} @cd ${STAGEDIR}${PREFIX}/${dir} && ${FIND} -H -s * ! -type d | \ ${SED} -e 's|^|${dir}/|' >> ${PLISTF} .endfor ${CAT} ${PLISTF} | ${SORT} >> ${TMPPLIST} gecko-moz-pis-pre-install: .if defined(MOZ_PIS_SCRIPTS) ${MKDIR} ${STAGEDIR}${PREFIX}/${MOZ_PIS_DIR} .for moz in ${MOZ_PIS_SCRIPTS} ${INSTALL_SCRIPT} ${WRKDIR}/${moz} ${STAGEDIR}${PREFIX}/${MOZ_PIS_DIR} .endfor .endif .endif .endif # HERE THERE BE TACOS -- adamw Index: branches/2018Q4/www/firefox/Makefile =================================================================== --- branches/2018Q4/www/firefox/Makefile (revision 487199) +++ branches/2018Q4/www/firefox/Makefile (revision 487200) @@ -1,66 +1,67 @@ # Created by: Alan Eldridge # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 63.0.3 +DISTVERSION= 64.0 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build4/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build3/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Web browser based on the browser portion of Mozilla BUILD_DEPENDS= nspr>=4.19:devel/nspr \ - nss>=3.39:security/nss \ + nss>=3.40.1:security/nss \ icu>=59.1,1:devel/icu \ libevent>=2.1.8:devel/libevent \ - harfbuzz>=1.8.8:print/harfbuzz \ + harfbuzz>=1.9.0:print/harfbuzz \ graphite2>=1.3.12:graphics/graphite2 \ png>=1.6.34:graphics/png \ libvorbis>=1.3.6,3:audio/libvorbis \ libvpx>=1.5.0:multimedia/libvpx \ - sqlite3>=3.24.0:databases/sqlite3 \ + sqlite3>=3.25.1: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 \ USE_GECKO= gecko CONFLICTS_INSTALL= firefox-esr MOZ_PKGCONFIG_FILES= # empty USE_MOZILLA= -cairo -hunspell -soundtouch USE_GL= gl USES= tar:xz FIREFOX_ICON= ${MOZILLA}.png FIREFOX_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/browser/chrome/icons/default/default48.png FIREFOX_DESKTOP= ${MOZSRC}/taskcluster/docker/${MOZILLA}-snap/${MOZILLA}.desktop MOZ_OPTIONS= --enable-application=browser \ --enable-official-branding OPTIONS_EXCLUDE= BUNDLED_CAIRO DTRACE .include "${.CURDIR}/../../www/firefox/Makefile.options" post-patch: @${REINPLACE_CMD} -e 's/%u/%U/' -e '/X-MultipleArgs/d' \ -e '/^Icon/s/=.*/=${FIREFOX_ICON:R}/' \ ${FIREFOX_DESKTOP} @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/browser/app/nsBrowserApp.cpp pre-configure: (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${WRKSRC}/js/src/ && ${LOCALBASE}/bin/autoconf-2.13) post-install: ${INSTALL_DATA} ${FIREFOX_DESKTOP} ${STAGEDIR}${PREFIX}/share/applications/ ${MKDIR} ${STAGEDIR}${PREFIX}/share/pixmaps ${LN} -sf ${FIREFOX_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${FIREFOX_ICON} .include Index: branches/2018Q4/www/firefox/distinfo =================================================================== --- branches/2018Q4/www/firefox/distinfo (revision 487199) +++ branches/2018Q4/www/firefox/distinfo (revision 487200) @@ -1,3 +1,3 @@ -TIMESTAMP = 1542325023 -SHA256 (firefox-63.0.3.source.tar.xz) = 48a834daa9c5773272a30933936ea8a78b217494355749ee68996639451d0931 -SIZE (firefox-63.0.3.source.tar.xz) = 266109244 +TIMESTAMP = 1544151497 +SHA256 (firefox-64.0.source.tar.xz) = da40f2f8f1cbf0ddb3454aa9f65bb1a2b2043ca9b1724aecd016337be77d537f +SIZE (firefox-64.0.source.tar.xz) = 271865888 Index: branches/2018Q4/www/firefox/files/patch-bug1507655 =================================================================== --- branches/2018Q4/www/firefox/files/patch-bug1507655 (nonexistent) +++ branches/2018Q4/www/firefox/files/patch-bug1507655 (revision 487200) @@ -0,0 +1,29 @@ +Revert bug 1497976 as close_fds on Python 2 is too slow + +diff --git build/moz.configure/util.configure build/moz.configure/util.configure +index 25862fee7c32..3fc725a5124e 100644 +--- build/moz.configure/util.configure ++++ build/moz.configure/util.configure +@@ -22,7 +22,6 @@ + + # A wrapper to obtain a process' output and return code. + # Returns a tuple (retcode, stdout, stderr). +-@imports('os') + @imports(_from='__builtin__', _import='unicode') + @imports('subprocess') + @imports(_from='mozbuild.shellutil', _import='quote') +@@ -45,13 +44,7 @@ + + log.debug('Executing: `%s`', quote(*args)) + proc = subprocess.Popen(args, stdout=subprocess.PIPE, +- stderr=subprocess.PIPE, +- # On Python 2 on Windows, close_fds prevents the +- # process from inheriting stdout/stderr. +- # Elsewhere, it simply prevents it from inheriting +- # extra file descriptors, which is what we want. +- close_fds=os.name != 'nt', +- **kwargs) ++ stderr=subprocess.PIPE, **kwargs) + stdout, stderr = proc.communicate() + return proc.wait(), stdout, stderr + Property changes on: branches/2018Q4/www/firefox/files/patch-bug1507655 ___________________________________________________________________ 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: branches/2018Q4/www/firefox/files/patch-bug847568 =================================================================== --- branches/2018Q4/www/firefox/files/patch-bug847568 (revision 487199) +++ branches/2018Q4/www/firefox/files/patch-bug847568 (revision 487200) @@ -1,259 +1,259 @@ # Allow building against system-wide graphite2/harfbuzz. diff --git config/system-headers.mozbuild config/system-headers.mozbuild index 7620b4d00623..09d3db5ca8c0 100644 --- config/system-headers.mozbuild +++ config/system-headers.mozbuild @@ -1300,6 +1300,19 @@ if CONFIG['MOZ_ENABLE_CONTENTMANAGER']: 'SelectSingleContentItemPage.h', ] +if CONFIG['MOZ_SYSTEM_GRAPHITE2']: + system_headers += [ + 'graphite2/Font.h', + 'graphite2/Segment.h', + ] + +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + system_headers += [ + 'harfbuzz/hb-glib.h', + 'harfbuzz/hb-ot.h', + 'harfbuzz/hb.h', + ] + if CONFIG['MOZ_SYSTEM_LIBVPX']: system_headers += [ 'vpx_mem/vpx_mem.h', diff --git dom/base/moz.build dom/base/moz.build index 8e19020315ae..2fcdbb6f7b42 100644 --- dom/base/moz.build +++ dom/base/moz.build @@ -495,6 +495,9 @@ if CONFIG['MOZ_BUILD_APP'] in ['browser', 'mobile/android', 'xulrunner']: if CONFIG['MOZ_X11']: CXXFLAGS += CONFIG['TK_CFLAGS'] +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + GENERATED_FILES += [ 'PropertyUseCounterMap.inc', 'UseCounterList.h', diff --git gfx/graphite2/moz-gr-update.sh gfx/graphite2/moz-gr-update.sh index faaab1b17971..04eff5f09882 100644 --- gfx/graphite2/moz-gr-update.sh +++ gfx/graphite2/moz-gr-update.sh @@ -1,6 +1,7 @@ #!/bin/bash # Script used to update the Graphite2 library in the mozilla source tree +# and bump version for --with-system-graphite2 # This script lives in gfx/graphite2, along with the library source, # but must be run from the top level of the mozilla-central tree. @@ -37,12 +38,16 @@ echo "See" $0 "for update procedure." >> gfx/graphite2/README.mozilla #find gfx/graphite2/ -name "*.cpp" -exec perl -p -i -e "s///;s/Windows.h/windows.h/;" {} \; #find gfx/graphite2/ -name "*.h" -exec perl -p -i -e "s///;s/Windows.h/windows.h/;" {} \; +# chase version for --with-system-graphite2 +perl -p -i -e "s/[0-9]+\,[0-9]+\,[0-9]+/$RELEASE/ and tr/./,/ \ + if /GR2_VERSION_REQUIRE/" old-configure.in + # summarize what's been touched echo Updated to $RELEASE. echo Here is what changed in the gfx/graphite2 directory: echo -hg stat gfx/graphite2 +hg stat old-configure.in gfx/graphite2 echo echo If gfx/graphite2/src/files.mk has changed, please make corresponding diff --git gfx/harfbuzz/README-mozilla gfx/harfbuzz/README-mozilla index 22c76a7df020..a01490bd49ee 100644 --- gfx/harfbuzz/README-mozilla +++ gfx/harfbuzz/README-mozilla @@ -15,3 +15,8 @@ from within the gfx/harfbuzz directory. If the collection of source files changes, manual updates to moz.build may be needed as we don't use the upstream makefiles. + +The in-tree copy may be omitted during build by --with-system-harfbuzz. +Make sure to keep pkg-config version check within toolkit/moz.configure in sync +with checkout version or increment latest tag by one if it's not based +on upstream release. diff --git gfx/moz.build gfx/moz.build index 771f652e837a..3b358d84e384 100644 --- gfx/moz.build +++ gfx/moz.build @@ -10,6 +10,12 @@ with Files('**'): if CONFIG['MOZ_TREE_CAIRO']: DIRS += ['cairo'] +if not CONFIG['MOZ_SYSTEM_GRAPHITE2']: + DIRS += ['graphite2/src' ] + +if not CONFIG['MOZ_SYSTEM_HARFBUZZ']: + DIRS += ['harfbuzz/src'] + DIRS += [ '2d', 'ycbcr', @@ -18,8 +24,6 @@ DIRS += [ 'qcms', 'gl', 'layers', - 'graphite2/src', - 'harfbuzz/src', 'ots/src', 'thebes', 'ipc', diff --git gfx/skia/generate_mozbuild.py gfx/skia/generate_mozbuild.py index e06ae3457a47..93faa61594a3 100755 --- gfx/skia/generate_mozbuild.py +++ gfx/skia/generate_mozbuild.py @@ -148,6 +148,9 @@ if CONFIG['CC_TYPE'] in ('clang', 'clang-cl'): '-Wno-unused-private-field', ] +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk3', 'android'): CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS'] CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS'] diff --git gfx/skia/moz.build gfx/skia/moz.build index 2118677ca3a8..e4978b413784 100644 --- gfx/skia/moz.build +++ gfx/skia/moz.build @@ -822,6 +822,9 @@ if CONFIG['CC_TYPE'] in ('clang', 'clang-cl'): '-Wno-unused-private-field', ] +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk3', 'android'): CXXFLAGS += CONFIG['MOZ_CAIRO_CFLAGS'] CXXFLAGS += CONFIG['CAIRO_FT_CFLAGS'] diff --git gfx/thebes/moz.build gfx/thebes/moz.build index 56f1b9fe3f4b..0ac1100b0df3 100644 --- gfx/thebes/moz.build +++ gfx/thebes/moz.build @@ -288,7 +288,13 @@ if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk3': LOCAL_INCLUDES += CONFIG['SKIA_INCLUDES'] -DEFINES['GRAPHITE2_STATIC'] = True +if CONFIG['MOZ_SYSTEM_GRAPHITE2']: + CXXFLAGS += CONFIG['MOZ_GRAPHITE2_CFLAGS'] +else: + DEFINES['GRAPHITE2_STATIC'] = True + +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] if CONFIG['CC_TYPE'] == 'clang': # Suppress warnings from Skia header files. diff --git intl/unicharutil/util/moz.build intl/unicharutil/util/moz.build index cb1233c56d7e..06fb1f9f174b 100644 --- intl/unicharutil/util/moz.build +++ intl/unicharutil/util/moz.build @@ -25,4 +25,7 @@ UNIFIED_SOURCES += [ 'nsUnicodeProperties.cpp', ] +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] + FINAL_LIBRARY = 'xul' diff --git netwerk/dns/moz.build netwerk/dns/moz.build index 79c26e3e7001..c4d93bc5f7dc 100644 --- netwerk/dns/moz.build +++ netwerk/dns/moz.build @@ -76,3 +76,6 @@ USE_LIBS += ['icu'] if CONFIG['CC_TYPE'] in ('clang', 'gcc'): CXXFLAGS += ['-Wno-error=shadow'] + +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + CXXFLAGS += CONFIG['MOZ_HARFBUZZ_CFLAGS'] diff --git old-configure.in old-configure.in index 95a58b634593..b614eef85c89 100644 --- old-configure.in +++ old-configure.in @@ -3951,6 +3951,27 @@ dnl ======================================================== AC_SUBST(MOZ_LINUX_32_SSE2_STARTUP_ERROR) +dnl ======================================================== +dnl Check for graphite2 +dnl ======================================================== +if test -n "$MOZ_SYSTEM_GRAPHITE2"; then + dnl graphite2.pc has bogus version, check manually + _SAVE_CFLAGS=$CFLAGS + CFLAGS="$CFLAGS $MOZ_GRAPHITE2_CFLAGS" + AC_TRY_COMPILE([ #include + #define GR2_VERSION_REQUIRE(major,minor,bugfix) \ + ( GR2_VERSION_MAJOR * 10000 + GR2_VERSION_MINOR \ + * 100 + GR2_VERSION_BUGFIX >= \ + (major) * 10000 + (minor) * 100 + (bugfix) ) + ], [ + #if !GR2_VERSION_REQUIRE(1,3,12) + #error "Insufficient graphite2 version." + #endif + ], [], + [AC_MSG_ERROR([--with-system-graphite2 requested but no working libgraphite2 found])]) + CFLAGS=$_SAVE_CFLAGS +fi + dnl ======================================================== dnl Check for pixman and cairo dnl ======================================================== diff --git toolkit/library/moz.build toolkit/library/moz.build index 24f940e1ed7e..079a575adec3 100644 --- toolkit/library/moz.build +++ toolkit/library/moz.build @@ -223,6 +223,12 @@ if CONFIG['MOZ_SYSTEM_JPEG']: if CONFIG['MOZ_SYSTEM_PNG']: OS_LIBS += CONFIG['MOZ_PNG_LIBS'] +if CONFIG['MOZ_SYSTEM_GRAPHITE2']: + OS_LIBS += CONFIG['MOZ_GRAPHITE2_LIBS'] + +if CONFIG['MOZ_SYSTEM_HARFBUZZ']: + OS_LIBS += CONFIG['MOZ_HARFBUZZ_LIBS'] + if CONFIG['MOZ_SYSTEM_LIBEVENT']: OS_LIBS += CONFIG['MOZ_LIBEVENT_LIBS'] diff --git toolkit/moz.configure toolkit/moz.configure index 9297e4d6f501..d8e273887e4b 100644 --- toolkit/moz.configure +++ toolkit/moz.configure @@ -883,6 +883,26 @@ add_old_configure_assignment('FT2_LIBS', add_old_configure_assignment('FT2_CFLAGS', ft2_info.cflags) +# Graphite2 +# ============================================================== +option('--with-system-graphite2', + help="Use system graphite2 (located with pkgconfig)") + +system_graphite2 = pkg_check_modules('MOZ_GRAPHITE2', 'graphite2', + when='--with-system-graphite2') + +set_config('MOZ_SYSTEM_GRAPHITE2', depends_if(system_graphite2)(lambda _: True)) + +# HarfBuzz +# ============================================================== +option('--with-system-harfbuzz', + help="Use system harfbuzz (located with pkgconfig)") + -+system_harfbuzz = pkg_check_modules('MOZ_HARFBUZZ', 'harfbuzz >= 1.8.8', ++system_harfbuzz = pkg_check_modules('MOZ_HARFBUZZ', 'harfbuzz >= 1.9.0', + when='--with-system-harfbuzz') + +set_config('MOZ_SYSTEM_HARFBUZZ', depends_if(system_harfbuzz)(lambda _: True)) + # Mortar # ============================================================== option('--enable-mortar', help='Enable mortar extension') Index: branches/2018Q4/www/firefox-i18n/Makefile =================================================================== --- branches/2018Q4/www/firefox-i18n/Makefile (revision 487199) +++ branches/2018Q4/www/firefox-i18n/Makefile (revision 487200) @@ -1,89 +1,90 @@ # Created by: Andrew Pantyukhin # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 63.0.3 +PORTVERSION= 64.0 +PORTREVISION= 2 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ - MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build4/linux-i686/xpi + MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build3/linux-i686/xpi PKGNAMEPREFIX= DISTFILES= ${FIREFOX_I18N_:S/$/.xpi/} DIST_SUBDIR= xpi/${DISTNAME} MAINTAINER= gecko@FreeBSD.org COMMENT= Localized interface for Firefox EXTRACT_DEPENDS= zip:archivers/zip -USES= zip:infozip gecko:firefox,63,build +USES= zip:infozip gecko:firefox,64,build USE_XPI= firefox NO_ARCH= yes USE_SUBMAKE= yes WDIR= langpack-*@firefox.mozilla.org XPI_DISTNAMES= ${FIREFOX_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" FIREFOX_I18N_?= ${FIREFOX_I18N} .for dist in ${XPI_DISTNAMES} XPI_ID_${dist}= langpack-${dist}@firefox.mozilla.org .endfor pre-everything:: @${ECHO_CMD} @${ECHO_CMD} "Please define FIREFOX_I18N_ALL to install all languages." @${ECHO_CMD} do-extract: @${MKDIR} ${WRKSRC} @for lang in ${FIREFOX_I18N_}; do \ if ! (${UNZIP_CMD} -qo ${_DISTDIR}/$$lang.xpi -d ${WRKSRC}/langpack-$$lang@firefox.mozilla.org);\ then \ exit 1; \ fi; \ cd ${WRKSRC}/langpack-$$lang@firefox.mozilla.org/; \ ${FIND} -H -s * ! -type d | \ ${SED} -e "s|^|lib/xpi/langpack-$$lang@firefox.mozilla.org/|" >> ${PLISTF}; \ done ${CAT} ${PLISTF} | ${SORT} >> ${PLIST} do-install: @${MKDIR} ${STAGEDIR}${XPI_LIBDIR} cd ${WRKSRC}; ${PAX} -rw . ${STAGEDIR}${XPI_LIBDIR} ${CHMOD} -R a+rX,go-w ${STAGEDIR}${XPI_LIBDIR}/${WDIR}/ @for e in ${STAGEDIR}${XPI_LIBDIR}/${WDIR}; do \ for _dir in ${XPI_LINKFARMS} ; do \ ${LN} -sf $${_e##*/} ${STAGEDIR}$$_dir/ ${_Q} ; \ done \ done @${ECHO_CMD} '@exec ${INSTALL} -d ${XPI_SLDIRS_ALL:S,^${PREFIX},%D,}' ${_A} @${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: branches/2018Q4/www/firefox-i18n/distinfo =================================================================== --- branches/2018Q4/www/firefox-i18n/distinfo (revision 487199) +++ branches/2018Q4/www/firefox-i18n/distinfo (revision 487200) @@ -1,199 +1,199 @@ -TIMESTAMP = 1542325261 -SHA256 (xpi/firefox-i18n-63.0.3/ach.xpi) = 133a31ec9eda6f5eb0bfa38b0f319cfaf5c4176ff619a8a505e71af4a7f365fb -SIZE (xpi/firefox-i18n-63.0.3/ach.xpi) = 455083 -SHA256 (xpi/firefox-i18n-63.0.3/af.xpi) = 6d60477b462c45cb4e038e2b00aa4a31c7f4bbe138a1db14a7c4bb303848595b -SIZE (xpi/firefox-i18n-63.0.3/af.xpi) = 437909 -SHA256 (xpi/firefox-i18n-63.0.3/an.xpi) = f12854a4c2ccbb2b81cc0cafe838c9f1a545e912e34b9319b7f3af9ce7061629 -SIZE (xpi/firefox-i18n-63.0.3/an.xpi) = 474544 -SHA256 (xpi/firefox-i18n-63.0.3/ar.xpi) = a0ae3906017de26370466cea30c43c7286d0b46acbb8fecfc61a86c97b616f6b -SIZE (xpi/firefox-i18n-63.0.3/ar.xpi) = 513466 -SHA256 (xpi/firefox-i18n-63.0.3/as.xpi) = 6798a1a6aec24e48ae494a4f057c45e3b7ea31488fd7eed486ba1816f442e3b3 -SIZE (xpi/firefox-i18n-63.0.3/as.xpi) = 482194 -SHA256 (xpi/firefox-i18n-63.0.3/ast.xpi) = 362cc17e42bc625b8514135ebbe7042ba94074d978f750594035c409a2f3ebb7 -SIZE (xpi/firefox-i18n-63.0.3/ast.xpi) = 465658 -SHA256 (xpi/firefox-i18n-63.0.3/az.xpi) = e91aabf17a379952750066881acc09aa3dc65082ebc101e08e279d48c382af54 -SIZE (xpi/firefox-i18n-63.0.3/az.xpi) = 490944 -SHA256 (xpi/firefox-i18n-63.0.3/be.xpi) = f514fab6434fa23f9adaa1c52ff9067f2c87c5d8c6396ebbacac6aefc42904cb -SIZE (xpi/firefox-i18n-63.0.3/be.xpi) = 549296 -SHA256 (xpi/firefox-i18n-63.0.3/bg.xpi) = 671f94406a40b7dd2c2adb2fb913cf42b7bf41717c44e81bfe522dd856e30988 -SIZE (xpi/firefox-i18n-63.0.3/bg.xpi) = 523533 -SHA256 (xpi/firefox-i18n-63.0.3/bn-BD.xpi) = 4759803e520bbfe1d9db2289409b1e5734c8de19e696802eb1f43b72b092beab -SIZE (xpi/firefox-i18n-63.0.3/bn-BD.xpi) = 548599 -SHA256 (xpi/firefox-i18n-63.0.3/bn-IN.xpi) = d7afc0782af3833e97f2ce711b2d9f4e55aeaf5df8efbb9b1382b45ac0b1f2dd -SIZE (xpi/firefox-i18n-63.0.3/bn-IN.xpi) = 516019 -SHA256 (xpi/firefox-i18n-63.0.3/br.xpi) = c1bd25609ef30d86173e0df3e8e99bd6dbff6ef40b0f098052968346bec236d4 -SIZE (xpi/firefox-i18n-63.0.3/br.xpi) = 474387 -SHA256 (xpi/firefox-i18n-63.0.3/bs.xpi) = eff1783e942af1193510e63651f41ed9c191c1a47c44e5d77a8469229b74e493 -SIZE (xpi/firefox-i18n-63.0.3/bs.xpi) = 472890 -SHA256 (xpi/firefox-i18n-63.0.3/ca.xpi) = c3b5c3113e311ef375150613057cedd81aa8e69ad1bac7496ea9266640e7e739 -SIZE (xpi/firefox-i18n-63.0.3/ca.xpi) = 469252 -SHA256 (xpi/firefox-i18n-63.0.3/cak.xpi) = ad78a6ad161386695a2825cd3edc41379c414876f53a270a7071d04737b82564 -SIZE (xpi/firefox-i18n-63.0.3/cak.xpi) = 502721 -SHA256 (xpi/firefox-i18n-63.0.3/cs.xpi) = 72f59287425933bfc824184dfe7447f4cad341404a2324b9f36cf3086fb5c83f -SIZE (xpi/firefox-i18n-63.0.3/cs.xpi) = 489313 -SHA256 (xpi/firefox-i18n-63.0.3/cy.xpi) = 7a9477642f7b054b1e24fa5d5b9d59ea26438ef45aeb8e3313547186b4e1cd17 -SIZE (xpi/firefox-i18n-63.0.3/cy.xpi) = 481075 -SHA256 (xpi/firefox-i18n-63.0.3/da.xpi) = 377e98788e41f5a3a000b41d9339d2f37e497914885a00320859f85d42fdb79d -SIZE (xpi/firefox-i18n-63.0.3/da.xpi) = 481842 -SHA256 (xpi/firefox-i18n-63.0.3/de.xpi) = 14bd321b737a79523f28ce5d9ba37df985e5e260f2b183be66f9674b112f5802 -SIZE (xpi/firefox-i18n-63.0.3/de.xpi) = 491988 -SHA256 (xpi/firefox-i18n-63.0.3/dsb.xpi) = 5ffd4a6e2a908612fcf55662f573b8b51e928957ac58a6b07a8be36d4b794321 -SIZE (xpi/firefox-i18n-63.0.3/dsb.xpi) = 500879 -SHA256 (xpi/firefox-i18n-63.0.3/el.xpi) = e452895005fd3c35697f610f56aeafe9d3d1eeaed64ef5f0a9efb9a1a5383a27 -SIZE (xpi/firefox-i18n-63.0.3/el.xpi) = 558446 -SHA256 (xpi/firefox-i18n-63.0.3/en-CA.xpi) = 7d02b7f5cf55ef803a731031bc1d53d9e9a279096a6df7c8726feb4355834a9f -SIZE (xpi/firefox-i18n-63.0.3/en-CA.xpi) = 450715 -SHA256 (xpi/firefox-i18n-63.0.3/en-GB.xpi) = 73f6fc1ce107695a5fdd4f3eb5a7f3b462ea08b0a3912356f5050328332962ac -SIZE (xpi/firefox-i18n-63.0.3/en-GB.xpi) = 442415 -SHA256 (xpi/firefox-i18n-63.0.3/en-US.xpi) = 4a0d0e51d27edb1148c91e0cdd106e4c663e67ce04fc3db559bcf0d8830c447c -SIZE (xpi/firefox-i18n-63.0.3/en-US.xpi) = 425479 -SHA256 (xpi/firefox-i18n-63.0.3/en-ZA.xpi) = c3a3184aeeb6eab44e1a353caa79a5bc6c7e620c7fd3ba8c9b386811cfcece67 -SIZE (xpi/firefox-i18n-63.0.3/en-ZA.xpi) = 427851 -SHA256 (xpi/firefox-i18n-63.0.3/eo.xpi) = 58478371f7dad87b673494af6d17b654ce04a6c419c8b6d5dd37f4682eef80bb -SIZE (xpi/firefox-i18n-63.0.3/eo.xpi) = 478965 -SHA256 (xpi/firefox-i18n-63.0.3/es-AR.xpi) = 52cb334d461cd010377cfd35213cbe065435168dd7a5ef1d85570e3985b8fae9 -SIZE (xpi/firefox-i18n-63.0.3/es-AR.xpi) = 486916 -SHA256 (xpi/firefox-i18n-63.0.3/es-CL.xpi) = 09a6f406be1a71c9b28da92aca02b6cb12ca84ed26fe8dfe88adacd293d1dba9 -SIZE (xpi/firefox-i18n-63.0.3/es-CL.xpi) = 487572 -SHA256 (xpi/firefox-i18n-63.0.3/es-ES.xpi) = c8ba72016e05fb2ab40064a57feda7964bfbd394aac11b384688ccefe4b7b558 -SIZE (xpi/firefox-i18n-63.0.3/es-ES.xpi) = 431431 -SHA256 (xpi/firefox-i18n-63.0.3/es-MX.xpi) = 2e6b5a78e7def20c6c00cfd8d1c1be84df4e62dba23e05f13aa52a0e7e7fc81c -SIZE (xpi/firefox-i18n-63.0.3/es-MX.xpi) = 490505 -SHA256 (xpi/firefox-i18n-63.0.3/et.xpi) = 62eb5ba195bfb11f001b875910c76c0fce320da711e7ced8c7b06ae31cfcf2f1 -SIZE (xpi/firefox-i18n-63.0.3/et.xpi) = 469970 -SHA256 (xpi/firefox-i18n-63.0.3/eu.xpi) = 2ed251ec4bd183b0086e777a01992048d31271ec9bf9869d5a070bab81cb3b84 -SIZE (xpi/firefox-i18n-63.0.3/eu.xpi) = 478606 -SHA256 (xpi/firefox-i18n-63.0.3/fa.xpi) = ba66475a7a152b35f22454074a4160da2c52c229c2fb60ca515bd5a020829969 -SIZE (xpi/firefox-i18n-63.0.3/fa.xpi) = 529582 -SHA256 (xpi/firefox-i18n-63.0.3/ff.xpi) = 30ccae32050ccaba4f3bdd7f017f57f0eef6b75e2e0666be7a8999791cc4193b -SIZE (xpi/firefox-i18n-63.0.3/ff.xpi) = 467973 -SHA256 (xpi/firefox-i18n-63.0.3/fi.xpi) = 79ee324aa4358fc494e70e05bd0948355d79688e9fa3b74591a0489c44d7b483 -SIZE (xpi/firefox-i18n-63.0.3/fi.xpi) = 467883 -SHA256 (xpi/firefox-i18n-63.0.3/fr.xpi) = cea47e257be67838302e37821fd59e837fe68d30022b7006dab93e3dcafb84a6 -SIZE (xpi/firefox-i18n-63.0.3/fr.xpi) = 496629 -SHA256 (xpi/firefox-i18n-63.0.3/fy-NL.xpi) = e5114e840017814a3709f2924e6d9372892d4fdcaf441fc57724707033d6732f -SIZE (xpi/firefox-i18n-63.0.3/fy-NL.xpi) = 485368 -SHA256 (xpi/firefox-i18n-63.0.3/ga-IE.xpi) = 02843dfed7c2994ff6455df1f064555a5ac8486dbff00b2380442f3a1da5320a -SIZE (xpi/firefox-i18n-63.0.3/ga-IE.xpi) = 479146 -SHA256 (xpi/firefox-i18n-63.0.3/gd.xpi) = 707104938e8508dad8b9566e09571522e1a5bdb34cda6b6f534b468f3296d987 -SIZE (xpi/firefox-i18n-63.0.3/gd.xpi) = 484591 -SHA256 (xpi/firefox-i18n-63.0.3/gl.xpi) = 096c923791bcc08579973427fb63e3e1b14008747b5ba33dae51bf0896f1d177 -SIZE (xpi/firefox-i18n-63.0.3/gl.xpi) = 455902 -SHA256 (xpi/firefox-i18n-63.0.3/gn.xpi) = 48c865af74a1c6b2f54878575f124ec424f9bc1c9fdf62ca57c4c4096c715f0d -SIZE (xpi/firefox-i18n-63.0.3/gn.xpi) = 496363 -SHA256 (xpi/firefox-i18n-63.0.3/gu-IN.xpi) = 816284bf26a9b0a1ab7d34a146eee722591635c88cde12b0b22b026828c90804 -SIZE (xpi/firefox-i18n-63.0.3/gu-IN.xpi) = 556303 -SHA256 (xpi/firefox-i18n-63.0.3/he.xpi) = 82405ba755711962e430e3f26eb8906044067ca51167d33ed435e74f4fd4698b -SIZE (xpi/firefox-i18n-63.0.3/he.xpi) = 486232 -SHA256 (xpi/firefox-i18n-63.0.3/hi-IN.xpi) = 518c56f8bf6658b997956543f6bf90f721397c79786b4b1a82bcc550d51f27ea -SIZE (xpi/firefox-i18n-63.0.3/hi-IN.xpi) = 545392 -SHA256 (xpi/firefox-i18n-63.0.3/hr.xpi) = 55c737c0ea6fc74bb49a2ae58d2e66fcf7068a2d16014d878191fe3c10a5b6b8 -SIZE (xpi/firefox-i18n-63.0.3/hr.xpi) = 468499 -SHA256 (xpi/firefox-i18n-63.0.3/hsb.xpi) = 7eb1617935706ff6f217af84901593f36c8b804677359e57dc0263a32d36be9b -SIZE (xpi/firefox-i18n-63.0.3/hsb.xpi) = 500688 -SHA256 (xpi/firefox-i18n-63.0.3/hu.xpi) = 0dd11f24d4708bbd365afa14824af9d034871455b4b39aa9016a85cca2ab62ad -SIZE (xpi/firefox-i18n-63.0.3/hu.xpi) = 497766 -SHA256 (xpi/firefox-i18n-63.0.3/hy-AM.xpi) = 335dc44396a272ded14d59ac8e8be2f3b1ab44478680b1ecf8f1e8561ef2cc00 -SIZE (xpi/firefox-i18n-63.0.3/hy-AM.xpi) = 525186 -SHA256 (xpi/firefox-i18n-63.0.3/ia.xpi) = f52b1a2f7de012ca992ee8f9657e5ba8556ccbe4800ef5f28304fc005bb5e069 -SIZE (xpi/firefox-i18n-63.0.3/ia.xpi) = 474989 -SHA256 (xpi/firefox-i18n-63.0.3/id.xpi) = a16e59f8fe24ea8e250d35b6e3bd9f4f3288a35a65c63a22d9c50a26e8451de0 -SIZE (xpi/firefox-i18n-63.0.3/id.xpi) = 468256 -SHA256 (xpi/firefox-i18n-63.0.3/is.xpi) = 3ae1bc07c94a05e209dec8e04a87035026fe64141944586d77ed088fa5f104f1 -SIZE (xpi/firefox-i18n-63.0.3/is.xpi) = 467334 -SHA256 (xpi/firefox-i18n-63.0.3/it.xpi) = 8a3b970adfac445bc18e9051f3dc5910e3649112e618381eaeef991fc50a6cea -SIZE (xpi/firefox-i18n-63.0.3/it.xpi) = 351086 -SHA256 (xpi/firefox-i18n-63.0.3/ja.xpi) = 9017b89abe511039143cb48045e8dddc61791ce1675ffa560a079eeeda67d066 -SIZE (xpi/firefox-i18n-63.0.3/ja.xpi) = 501998 -SHA256 (xpi/firefox-i18n-63.0.3/ka.xpi) = fcb51dc8ff33eb7836bbc30b3b1c9de1cf3cb296105c867c4565eb334fed919d -SIZE (xpi/firefox-i18n-63.0.3/ka.xpi) = 517231 -SHA256 (xpi/firefox-i18n-63.0.3/kab.xpi) = cd6e861266b2e0de2cb49fa3c9ed4e9e5b779d2ad672769ed0abfbb441bb2a30 -SIZE (xpi/firefox-i18n-63.0.3/kab.xpi) = 490517 -SHA256 (xpi/firefox-i18n-63.0.3/kk.xpi) = fb3b470673af37d57e0458ada6c505fe4d08107b37bf271b098653435e1b8803 -SIZE (xpi/firefox-i18n-63.0.3/kk.xpi) = 546393 -SHA256 (xpi/firefox-i18n-63.0.3/km.xpi) = c6469cd91f07c845759db65eb9600ec4a6b0acad9d036bb6c2a157c753ee751c -SIZE (xpi/firefox-i18n-63.0.3/km.xpi) = 530633 -SHA256 (xpi/firefox-i18n-63.0.3/kn.xpi) = e3b2b389a82c47bef00f9e5458097ebaecbb7150dc8f4890cd626da6225d2acc -SIZE (xpi/firefox-i18n-63.0.3/kn.xpi) = 536462 -SHA256 (xpi/firefox-i18n-63.0.3/ko.xpi) = 9527759ae962a504ff5d3c2c8194273beae0906ef9d125957de3788f00bb1ccc -SIZE (xpi/firefox-i18n-63.0.3/ko.xpi) = 496524 -SHA256 (xpi/firefox-i18n-63.0.3/lij.xpi) = 5c40ab1a51ab5143e08700df6c57b3d57379a054c5d45a1876ebe5daa0ee4105 -SIZE (xpi/firefox-i18n-63.0.3/lij.xpi) = 478457 -SHA256 (xpi/firefox-i18n-63.0.3/lt.xpi) = 9a950d9252d096c2fd88d8cdeed693f835b01f661ce277faf14a52c5bd96348d -SIZE (xpi/firefox-i18n-63.0.3/lt.xpi) = 501126 -SHA256 (xpi/firefox-i18n-63.0.3/lv.xpi) = 5097ecdb31910563f8ee0cd267147ada40167c5f218817044f560cd9e66e6413 -SIZE (xpi/firefox-i18n-63.0.3/lv.xpi) = 489160 -SHA256 (xpi/firefox-i18n-63.0.3/mai.xpi) = f0baf8541b365445cc9ae8e2ff86c73ba90fb11a7f4b1aeae42489a79a52f6df -SIZE (xpi/firefox-i18n-63.0.3/mai.xpi) = 498741 -SHA256 (xpi/firefox-i18n-63.0.3/mk.xpi) = 45cc56fa796b8357348d77035454dfbf7bf7edd43b3e1eee0db323cedf6a1761 -SIZE (xpi/firefox-i18n-63.0.3/mk.xpi) = 463728 -SHA256 (xpi/firefox-i18n-63.0.3/ml.xpi) = d7366db105776fb9b560a9649a709d22f0af51b3e23d282d395061e495cae09d -SIZE (xpi/firefox-i18n-63.0.3/ml.xpi) = 546428 -SHA256 (xpi/firefox-i18n-63.0.3/mr.xpi) = 6bbb6cc2e1409bf1e9b47bb8a09dcb3831fdc01c0554ac70a5d3908c90122790 -SIZE (xpi/firefox-i18n-63.0.3/mr.xpi) = 538970 -SHA256 (xpi/firefox-i18n-63.0.3/ms.xpi) = f1cbbdd4c5478fc94c283fb20fe83e6dbd7e971ed26c2e9bfb7f5db3a088cb99 -SIZE (xpi/firefox-i18n-63.0.3/ms.xpi) = 471526 -SHA256 (xpi/firefox-i18n-63.0.3/my.xpi) = 144dbfab5a6b72520c07bbe3080de28a13427d522d9cbde750bb0d062376c2ba -SIZE (xpi/firefox-i18n-63.0.3/my.xpi) = 516684 -SHA256 (xpi/firefox-i18n-63.0.3/nb-NO.xpi) = 3849a4ff407628fc6980c8b5a76e35d8cdc11f213b26657c948bcdab3f2db800 -SIZE (xpi/firefox-i18n-63.0.3/nb-NO.xpi) = 470895 -SHA256 (xpi/firefox-i18n-63.0.3/ne-NP.xpi) = 3c58272b8d115af9748811b1d962507379ce2c5a4eebc0bc315572a926b97a0f -SIZE (xpi/firefox-i18n-63.0.3/ne-NP.xpi) = 508080 -SHA256 (xpi/firefox-i18n-63.0.3/nl.xpi) = c4664366d401df4bc0710bf7ad2e7f6a3cdc3591fbe3f509a91374812b58f3f8 -SIZE (xpi/firefox-i18n-63.0.3/nl.xpi) = 460042 -SHA256 (xpi/firefox-i18n-63.0.3/nn-NO.xpi) = d5bf65a8f4e5279d08dda798e8d9dd6380a16ee5cbbe96e680fe65b1ff531a49 -SIZE (xpi/firefox-i18n-63.0.3/nn-NO.xpi) = 469113 -SHA256 (xpi/firefox-i18n-63.0.3/oc.xpi) = 789323f14ee2c89bd9105cf8f4c0e87a75300d20169fced32117076633b7d344 -SIZE (xpi/firefox-i18n-63.0.3/oc.xpi) = 482911 -SHA256 (xpi/firefox-i18n-63.0.3/or.xpi) = 435f79e0b4399d0a99c766a65b243194f299cafbb17b98b4d6ea8cdf4bf9b4db -SIZE (xpi/firefox-i18n-63.0.3/or.xpi) = 489361 -SHA256 (xpi/firefox-i18n-63.0.3/pa-IN.xpi) = 010ff111b72e74470697411c90023b1333f1369d028aefba8cbffe2a1ac5d7ff -SIZE (xpi/firefox-i18n-63.0.3/pa-IN.xpi) = 508191 -SHA256 (xpi/firefox-i18n-63.0.3/pl.xpi) = f84cc74ec6b2e30c9b82f8d479bf02fca3c016a6c13c3d39470329a217155b4a -SIZE (xpi/firefox-i18n-63.0.3/pl.xpi) = 379306 -SHA256 (xpi/firefox-i18n-63.0.3/pt-BR.xpi) = 72064d54939a43b790c842124c0a4cf07f281cd1d021aa4e1c57e494d2d29efa -SIZE (xpi/firefox-i18n-63.0.3/pt-BR.xpi) = 471902 -SHA256 (xpi/firefox-i18n-63.0.3/pt-PT.xpi) = 6663036a129cbd90198f424732302eb3889d8992466c5989751466c611d848ce -SIZE (xpi/firefox-i18n-63.0.3/pt-PT.xpi) = 485596 -SHA256 (xpi/firefox-i18n-63.0.3/rm.xpi) = 9ed36fd9b4d4fc6f2241106b885b173b559a3e8a1ee7aa4215befb21ee1a72e3 -SIZE (xpi/firefox-i18n-63.0.3/rm.xpi) = 475828 -SHA256 (xpi/firefox-i18n-63.0.3/ro.xpi) = 070ea96f27c06db3bfc4847ae160b5da8484c0d2f5a8ab987be124904e49e3c0 -SIZE (xpi/firefox-i18n-63.0.3/ro.xpi) = 472568 -SHA256 (xpi/firefox-i18n-63.0.3/ru.xpi) = f16b8e1f6cc00e9cfabe6e85131528d6c3481fcbf10b54018af1ff6a347513c2 -SIZE (xpi/firefox-i18n-63.0.3/ru.xpi) = 543429 -SHA256 (xpi/firefox-i18n-63.0.3/si.xpi) = 8c449f610eef3815f484ac319726d4b0d81c9ff0a34cd36da3e44a52737fd373 -SIZE (xpi/firefox-i18n-63.0.3/si.xpi) = 492577 -SHA256 (xpi/firefox-i18n-63.0.3/sk.xpi) = 43b9ce02b704688b94f46e4caa63f033d2f41e57b4ee64e2a3fd1f5154c0c9e1 -SIZE (xpi/firefox-i18n-63.0.3/sk.xpi) = 500227 -SHA256 (xpi/firefox-i18n-63.0.3/sl.xpi) = b0ef14f3d558eab46c50294beb5d9b172cf4c5186758fac91770fae5dc8bf8c7 -SIZE (xpi/firefox-i18n-63.0.3/sl.xpi) = 482003 -SHA256 (xpi/firefox-i18n-63.0.3/son.xpi) = 45bbe7ba73b7500c31b985821daef1afa74e94064733f592b3a96121f9837c93 -SIZE (xpi/firefox-i18n-63.0.3/son.xpi) = 452799 -SHA256 (xpi/firefox-i18n-63.0.3/sq.xpi) = 6a007f99623cbf19d0deee82e5d3cff7c6d4a5b584874cc34536d04361df522e -SIZE (xpi/firefox-i18n-63.0.3/sq.xpi) = 492310 -SHA256 (xpi/firefox-i18n-63.0.3/sr.xpi) = 631882baa642575b51cdea8505417a754e6c54e8a3b8de52d898db0e1dd85f23 -SIZE (xpi/firefox-i18n-63.0.3/sr.xpi) = 507257 -SHA256 (xpi/firefox-i18n-63.0.3/sv-SE.xpi) = 9f7b360951bef787411f5bef3446cb0a607fd508a4140bf20272b9458d179086 -SIZE (xpi/firefox-i18n-63.0.3/sv-SE.xpi) = 481625 -SHA256 (xpi/firefox-i18n-63.0.3/ta.xpi) = c4a03399d5839d5f70b5dc84522461fc32f65d31ecfec3acceef2ae0dc9a720f -SIZE (xpi/firefox-i18n-63.0.3/ta.xpi) = 533418 -SHA256 (xpi/firefox-i18n-63.0.3/te.xpi) = 1dee514b2682c7a161ecc2c0e2601e1331fec844d252dc42f7dcd1898994b87e -SIZE (xpi/firefox-i18n-63.0.3/te.xpi) = 545789 -SHA256 (xpi/firefox-i18n-63.0.3/th.xpi) = f5eed40ac638af044a767fb0dacc2f532496f619d3a4c37fff680f12df5d0e2d -SIZE (xpi/firefox-i18n-63.0.3/th.xpi) = 519006 -SHA256 (xpi/firefox-i18n-63.0.3/tr.xpi) = 98a8797f0ec4616b0d5c2a33587347e59b5b7d772f11b95fcde9cb6ebd76b95c -SIZE (xpi/firefox-i18n-63.0.3/tr.xpi) = 491288 -SHA256 (xpi/firefox-i18n-63.0.3/uk.xpi) = 04d5244e5f46b3862dc14ec3cba44803f2e9c00e62e16cdf8afa929d3223ae37 -SIZE (xpi/firefox-i18n-63.0.3/uk.xpi) = 548378 -SHA256 (xpi/firefox-i18n-63.0.3/ur.xpi) = b5877006327605d57996bd856ecf3d38c442b13bc4989e6660f66328ad13fd06 -SIZE (xpi/firefox-i18n-63.0.3/ur.xpi) = 525516 -SHA256 (xpi/firefox-i18n-63.0.3/uz.xpi) = bebba4decb4cbd6954ac1bc6424abc5cdbeed0c22b7ab5f72d3d5ae35d7d3dfc -SIZE (xpi/firefox-i18n-63.0.3/uz.xpi) = 469357 -SHA256 (xpi/firefox-i18n-63.0.3/vi.xpi) = b635ca6a5f27b612d9779d55560bd9b414be802daaa5dd3be1307ae20604edd8 -SIZE (xpi/firefox-i18n-63.0.3/vi.xpi) = 489043 -SHA256 (xpi/firefox-i18n-63.0.3/xh.xpi) = b8f51991b82bb255f17a8f28aa0b457bda42925e004f27695a7be518f2b96809 -SIZE (xpi/firefox-i18n-63.0.3/xh.xpi) = 466840 -SHA256 (xpi/firefox-i18n-63.0.3/zh-CN.xpi) = c5108e03edc50df28bb38b3af18d2f6fb3726b76104719d2b95d0432819d2d20 -SIZE (xpi/firefox-i18n-63.0.3/zh-CN.xpi) = 504055 -SHA256 (xpi/firefox-i18n-63.0.3/zh-TW.xpi) = c52f63a9ad26abdc9eded3f78a14b6c9a93790225505ff760a7ed169962b3eb0 -SIZE (xpi/firefox-i18n-63.0.3/zh-TW.xpi) = 507002 +TIMESTAMP = 1544151497 +SHA256 (xpi/firefox-i18n-64.0/ach.xpi) = f7892be24ac5ef42c22edf86a012e95e25502c5c5f737f54f8b9c63173857372 +SIZE (xpi/firefox-i18n-64.0/ach.xpi) = 455463 +SHA256 (xpi/firefox-i18n-64.0/af.xpi) = 7ef092a89156e88d11c67574d56f36c0e711021fc82536562c4f62bd1f707e0f +SIZE (xpi/firefox-i18n-64.0/af.xpi) = 431976 +SHA256 (xpi/firefox-i18n-64.0/an.xpi) = eeefe78961a3c0b51dac647f9e57858c11e68831b51f6c5831c7a0b375797521 +SIZE (xpi/firefox-i18n-64.0/an.xpi) = 473568 +SHA256 (xpi/firefox-i18n-64.0/ar.xpi) = 13f8d3f342b4b36b5bfd43468bedcf84e576cd7c39ca25cbcc39d94f37a3f671 +SIZE (xpi/firefox-i18n-64.0/ar.xpi) = 513398 +SHA256 (xpi/firefox-i18n-64.0/as.xpi) = 27a3014d5309f9a9e75633bb30cde0468c3f96e1a6083186f1bdb6961f7f113e +SIZE (xpi/firefox-i18n-64.0/as.xpi) = 478291 +SHA256 (xpi/firefox-i18n-64.0/ast.xpi) = 1304896adead0aa137a92efb31e6ea5fc08ecf834eb473dc19d4fae00769790c +SIZE (xpi/firefox-i18n-64.0/ast.xpi) = 461828 +SHA256 (xpi/firefox-i18n-64.0/az.xpi) = 5694a4d92272202e033f0b675ecfeea11594b8f1ad72e291888a87e366e8aa6a +SIZE (xpi/firefox-i18n-64.0/az.xpi) = 490034 +SHA256 (xpi/firefox-i18n-64.0/be.xpi) = a5faf2dbadd4e02dd091c1d4e5ab081d15a81c5e94be6de417656ec4671bf41d +SIZE (xpi/firefox-i18n-64.0/be.xpi) = 553257 +SHA256 (xpi/firefox-i18n-64.0/bg.xpi) = b0e29cc4524f06ca76d28831f6a998668aa6d05d3d54ea089c704e98bccf2ea9 +SIZE (xpi/firefox-i18n-64.0/bg.xpi) = 523739 +SHA256 (xpi/firefox-i18n-64.0/bn-BD.xpi) = b1db2f78a91ffd26d9d507990b90d03d85c189386645e5a941e551ed7a0f42b7 +SIZE (xpi/firefox-i18n-64.0/bn-BD.xpi) = 541873 +SHA256 (xpi/firefox-i18n-64.0/bn-IN.xpi) = 2d8e5b653fbb3558bff174b0c3719471838f0725127b596c96a6d515da71b5c9 +SIZE (xpi/firefox-i18n-64.0/bn-IN.xpi) = 528978 +SHA256 (xpi/firefox-i18n-64.0/br.xpi) = 62045a918544b5993defe7567e5e7e8521ffe74812bc0fbbb17be62a0b59ec47 +SIZE (xpi/firefox-i18n-64.0/br.xpi) = 479238 +SHA256 (xpi/firefox-i18n-64.0/bs.xpi) = fdfb7b9a220a38c3190f160a8cd0591f0d8aa6c235d6a765d8779473a52951f2 +SIZE (xpi/firefox-i18n-64.0/bs.xpi) = 471750 +SHA256 (xpi/firefox-i18n-64.0/ca.xpi) = 70834220149e07d6724dc5014257fe73e888eef69d1a91ef629ca060a7f133d5 +SIZE (xpi/firefox-i18n-64.0/ca.xpi) = 469698 +SHA256 (xpi/firefox-i18n-64.0/cak.xpi) = ea3fc352224300a815bdea8f9e21803b96333f00d1a5f3cd3d298558c9a89076 +SIZE (xpi/firefox-i18n-64.0/cak.xpi) = 506033 +SHA256 (xpi/firefox-i18n-64.0/cs.xpi) = 3e7dc361d22cce7edcf76737ae933c6fc1055f8b5de3ed818d951399337eed0f +SIZE (xpi/firefox-i18n-64.0/cs.xpi) = 494715 +SHA256 (xpi/firefox-i18n-64.0/cy.xpi) = 55c04bb8d52f17d76753fb8f86028e18b6a2ca5c2d31372cd702811f426abecd +SIZE (xpi/firefox-i18n-64.0/cy.xpi) = 484374 +SHA256 (xpi/firefox-i18n-64.0/da.xpi) = 7e65181d73225429007c10e55d7df58c112ca3d98ff07e161cdf32bda3771e2e +SIZE (xpi/firefox-i18n-64.0/da.xpi) = 486848 +SHA256 (xpi/firefox-i18n-64.0/de.xpi) = 77a083106fa0d5ac093cda891d1dbd0d1cdbff5d7b2052af4afb371ed7981175 +SIZE (xpi/firefox-i18n-64.0/de.xpi) = 494533 +SHA256 (xpi/firefox-i18n-64.0/dsb.xpi) = 65bf177d7329c30ce40a39d7361a339ecfea14f365b2fc743789b19536c72f40 +SIZE (xpi/firefox-i18n-64.0/dsb.xpi) = 504229 +SHA256 (xpi/firefox-i18n-64.0/el.xpi) = 67c2156fa4780082c17a4a7bd6b0edaed446ea2465f47afbe0568ea6183b4681 +SIZE (xpi/firefox-i18n-64.0/el.xpi) = 558813 +SHA256 (xpi/firefox-i18n-64.0/en-CA.xpi) = cd11eba938c0ebfd42bd1a1e80f1ff3108ad78f88c56d48eb13b0522329b509f +SIZE (xpi/firefox-i18n-64.0/en-CA.xpi) = 454068 +SHA256 (xpi/firefox-i18n-64.0/en-GB.xpi) = 879d9544cea983d17b8206c37bb7833a6a423fbe73b142f280dd6b3d7c61581b +SIZE (xpi/firefox-i18n-64.0/en-GB.xpi) = 440963 +SHA256 (xpi/firefox-i18n-64.0/en-US.xpi) = de9dc47b1f56c8a9a6f4164ca33b22c00e2bed80f1e8553a8a7ed1c45383d9e7 +SIZE (xpi/firefox-i18n-64.0/en-US.xpi) = 413609 +SHA256 (xpi/firefox-i18n-64.0/en-ZA.xpi) = ae61c96e7046beeb692f8fed5be4787bc5bac704ce001bf80672ee93a7a281fe +SIZE (xpi/firefox-i18n-64.0/en-ZA.xpi) = 424501 +SHA256 (xpi/firefox-i18n-64.0/eo.xpi) = 9224b4f6cd16a642804619a143502c2d485af8f389fac2f1b403faed55c9f34d +SIZE (xpi/firefox-i18n-64.0/eo.xpi) = 482461 +SHA256 (xpi/firefox-i18n-64.0/es-AR.xpi) = 14c662b64faf232835d0e3ca3b5494a3b4f9ef65a03a2636544785e0037a2a1b +SIZE (xpi/firefox-i18n-64.0/es-AR.xpi) = 490544 +SHA256 (xpi/firefox-i18n-64.0/es-CL.xpi) = 67767c7fac17f6b442de39a50f7f46a08dfd45d817277650c71ea27d971897e4 +SIZE (xpi/firefox-i18n-64.0/es-CL.xpi) = 490254 +SHA256 (xpi/firefox-i18n-64.0/es-ES.xpi) = 3c2e2cf654f222927cae113dd7a807292723a9fa4fac1772bd7b0f9c92f9c736 +SIZE (xpi/firefox-i18n-64.0/es-ES.xpi) = 437807 +SHA256 (xpi/firefox-i18n-64.0/es-MX.xpi) = c8706e3730119089c1ff90a547d45f4b03731e2009cd6690f2310fdd4e91a227 +SIZE (xpi/firefox-i18n-64.0/es-MX.xpi) = 493155 +SHA256 (xpi/firefox-i18n-64.0/et.xpi) = 862425a3d7c21d41b75aed6404d53c2ce5be7052454ab00ec305e4726513f77e +SIZE (xpi/firefox-i18n-64.0/et.xpi) = 473517 +SHA256 (xpi/firefox-i18n-64.0/eu.xpi) = 9d63a9332bd6ac379d55396cae8decc1117be86acc757708a906fa1b7df0efb6 +SIZE (xpi/firefox-i18n-64.0/eu.xpi) = 477302 +SHA256 (xpi/firefox-i18n-64.0/fa.xpi) = 08cef3c2c90078067d13b623f7a5c5ae59d7de41da2bc18e08fd2f03bbd04b1b +SIZE (xpi/firefox-i18n-64.0/fa.xpi) = 529978 +SHA256 (xpi/firefox-i18n-64.0/ff.xpi) = a500ae05f7680966a4500ae1802bc4b01bc03d5a908af8f091881be48784ae99 +SIZE (xpi/firefox-i18n-64.0/ff.xpi) = 470384 +SHA256 (xpi/firefox-i18n-64.0/fi.xpi) = 690d781512e9e4927070464d8bf4de22d909f896439e59e893c1e9d8fd3fb2f8 +SIZE (xpi/firefox-i18n-64.0/fi.xpi) = 470566 +SHA256 (xpi/firefox-i18n-64.0/fr.xpi) = 12eaefb0cc5a7ed71ca23b9c1bf939ad6a0fe81d767b3fd09fbbf10901ad6957 +SIZE (xpi/firefox-i18n-64.0/fr.xpi) = 499969 +SHA256 (xpi/firefox-i18n-64.0/fy-NL.xpi) = 196c2bd479011ffaf0eb63bbc7d1cd162ea3ce652a471c2c0510f3c456b6426b +SIZE (xpi/firefox-i18n-64.0/fy-NL.xpi) = 488309 +SHA256 (xpi/firefox-i18n-64.0/ga-IE.xpi) = 97cbb1f60869cdd9f9dab53c907697d83d37d79f69fc632fd367428a68b7bd8d +SIZE (xpi/firefox-i18n-64.0/ga-IE.xpi) = 474811 +SHA256 (xpi/firefox-i18n-64.0/gd.xpi) = 04bda09e52d28211089e7505d5cb08c4d3e0506440d83dfab83f7ac9e5a3e046 +SIZE (xpi/firefox-i18n-64.0/gd.xpi) = 491207 +SHA256 (xpi/firefox-i18n-64.0/gl.xpi) = db4a88b2a2d9ab18f1efcb2d12d7c919d023e8727238128857d10f460db7ca71 +SIZE (xpi/firefox-i18n-64.0/gl.xpi) = 467033 +SHA256 (xpi/firefox-i18n-64.0/gn.xpi) = 19dd1406c4539ff5b7b972d4024b21fb022f3574ed4e81b7bd8c7eb6c2d78cec +SIZE (xpi/firefox-i18n-64.0/gn.xpi) = 497408 +SHA256 (xpi/firefox-i18n-64.0/gu-IN.xpi) = 5bef251086e9b6d7b3685f707350974ac1b7ea47cad03fadf32101aacedec64c +SIZE (xpi/firefox-i18n-64.0/gu-IN.xpi) = 559365 +SHA256 (xpi/firefox-i18n-64.0/he.xpi) = 6c800f7e838a565c3a210acdaa3263f3e3293d469b3188bcc53f0f27eab1d80d +SIZE (xpi/firefox-i18n-64.0/he.xpi) = 485009 +SHA256 (xpi/firefox-i18n-64.0/hi-IN.xpi) = 766cfd3ab92ed8e8a7a7d4ec58eb6ab8ea4030cfda64e552da825dbe16f7d65a +SIZE (xpi/firefox-i18n-64.0/hi-IN.xpi) = 544055 +SHA256 (xpi/firefox-i18n-64.0/hr.xpi) = 77ac5ba67a94bd27990df70d630929f377334924e848dfa8ac25a72211daaff8 +SIZE (xpi/firefox-i18n-64.0/hr.xpi) = 464599 +SHA256 (xpi/firefox-i18n-64.0/hsb.xpi) = bf324c51afbabbd0504e7b7c20a4a7573a69b351ba9a75f72b9d87987b461034 +SIZE (xpi/firefox-i18n-64.0/hsb.xpi) = 503924 +SHA256 (xpi/firefox-i18n-64.0/hu.xpi) = 9f0aa6b7dd2df887487bfbcadf8abfc46f2b8fd8b7a451d481da973696df9c45 +SIZE (xpi/firefox-i18n-64.0/hu.xpi) = 501529 +SHA256 (xpi/firefox-i18n-64.0/hy-AM.xpi) = 081eb9a2778e441d3fb9136a4dba5e56190167c20db690dda31ac9387316fc56 +SIZE (xpi/firefox-i18n-64.0/hy-AM.xpi) = 520935 +SHA256 (xpi/firefox-i18n-64.0/ia.xpi) = f171c2703fee4fce8ed3e7cdc5297fe089b0a36c4df45dc7522b8417f265be51 +SIZE (xpi/firefox-i18n-64.0/ia.xpi) = 478734 +SHA256 (xpi/firefox-i18n-64.0/id.xpi) = da12f9c5aae88cb39fe0f2f9f3e9e7f735af8ec91210e49ee384d7be7c9efed0 +SIZE (xpi/firefox-i18n-64.0/id.xpi) = 471524 +SHA256 (xpi/firefox-i18n-64.0/is.xpi) = 3816157abe978c0d52445444a54fa26b325c294a36eeac7d6d31dd0db81f5450 +SIZE (xpi/firefox-i18n-64.0/is.xpi) = 469900 +SHA256 (xpi/firefox-i18n-64.0/it.xpi) = 4bf2ca86dc3242a721b272eb2cb9c1bca0e9378464e0b3b5c53b04d8b8581788 +SIZE (xpi/firefox-i18n-64.0/it.xpi) = 355574 +SHA256 (xpi/firefox-i18n-64.0/ja.xpi) = 26f07c033d74b5c8b7e7becb693f8a26c4fadee9cace1ae6af7369af773c7600 +SIZE (xpi/firefox-i18n-64.0/ja.xpi) = 506350 +SHA256 (xpi/firefox-i18n-64.0/ka.xpi) = 8870756a30c0362c5163d81590b1d1313c3f886a1a31edde5a6b03472056e71f +SIZE (xpi/firefox-i18n-64.0/ka.xpi) = 521844 +SHA256 (xpi/firefox-i18n-64.0/kab.xpi) = f75f59db9286702720f2c9dc3337c9dd77386103b01d33958cada724e66c27b7 +SIZE (xpi/firefox-i18n-64.0/kab.xpi) = 493579 +SHA256 (xpi/firefox-i18n-64.0/kk.xpi) = 8d6833608809edeb34290e33eac6b2956e83ac1b033fc067e3de34d9b4f691f1 +SIZE (xpi/firefox-i18n-64.0/kk.xpi) = 550177 +SHA256 (xpi/firefox-i18n-64.0/km.xpi) = 676289edf6779f5386ab3c26d066796b30de2cca6cca6b1eef616c8275f022ed +SIZE (xpi/firefox-i18n-64.0/km.xpi) = 535433 +SHA256 (xpi/firefox-i18n-64.0/kn.xpi) = 497494e1414fe9afd72bc7e3bddeb7de98e3331348ef260d523d81ea795f9e86 +SIZE (xpi/firefox-i18n-64.0/kn.xpi) = 538349 +SHA256 (xpi/firefox-i18n-64.0/ko.xpi) = 9602f5168767d8df7b1470d91550d68a9a908bb189d46230d3638277c39119d1 +SIZE (xpi/firefox-i18n-64.0/ko.xpi) = 500867 +SHA256 (xpi/firefox-i18n-64.0/lij.xpi) = afc4159d3e250a3b5232c8e11258562a213129e5f244209ac8c0c468dbc3f728 +SIZE (xpi/firefox-i18n-64.0/lij.xpi) = 476179 +SHA256 (xpi/firefox-i18n-64.0/lt.xpi) = 59664e10e45de7459467e7e44fa318673792ad2ef782db6c6a6433b584709fca +SIZE (xpi/firefox-i18n-64.0/lt.xpi) = 504607 +SHA256 (xpi/firefox-i18n-64.0/lv.xpi) = 980fa3959dfcb512f30643ccb8f58dd04fa7b87f1dc7c4cc727dd236cc224e72 +SIZE (xpi/firefox-i18n-64.0/lv.xpi) = 490763 +SHA256 (xpi/firefox-i18n-64.0/mai.xpi) = 4b105acd807131fcab8df57ecbd9067fa5086ac83dcca2971024d67ed02d1e2e +SIZE (xpi/firefox-i18n-64.0/mai.xpi) = 496190 +SHA256 (xpi/firefox-i18n-64.0/mk.xpi) = f2c7e7e343bb9efd25039683c88164890924de51658bf49f2698a9b5263ae967 +SIZE (xpi/firefox-i18n-64.0/mk.xpi) = 457991 +SHA256 (xpi/firefox-i18n-64.0/ml.xpi) = aa276e580e80221c8dd2d3bfd97b642014a27032b6a5a1793dec4e6bfc8d6e6c +SIZE (xpi/firefox-i18n-64.0/ml.xpi) = 542325 +SHA256 (xpi/firefox-i18n-64.0/mr.xpi) = 5bb9ab7930b1c42968a7e44cdf5b10d319a3140fbdb67a3be7056d0668acbb82 +SIZE (xpi/firefox-i18n-64.0/mr.xpi) = 540017 +SHA256 (xpi/firefox-i18n-64.0/ms.xpi) = 9ec63c6b87db6958ae14c1199c4e96fec570aa5fdb6188c06bbddeb8ed964b9c +SIZE (xpi/firefox-i18n-64.0/ms.xpi) = 473931 +SHA256 (xpi/firefox-i18n-64.0/my.xpi) = 87ec74434cab18aa32e3ce5fd70f35bb3b6e6286f10fcce030751ba1a44c98e2 +SIZE (xpi/firefox-i18n-64.0/my.xpi) = 518178 +SHA256 (xpi/firefox-i18n-64.0/nb-NO.xpi) = 140a4eaa9275979ea620603a739f34a7ff035de848c76ebaa392824414fbfbb4 +SIZE (xpi/firefox-i18n-64.0/nb-NO.xpi) = 473416 +SHA256 (xpi/firefox-i18n-64.0/ne-NP.xpi) = 5e85eaf0ca4dd8c9839716ddf1272aaccf6d0e3875526655b1a5f7b57d0393e7 +SIZE (xpi/firefox-i18n-64.0/ne-NP.xpi) = 505818 +SHA256 (xpi/firefox-i18n-64.0/nl.xpi) = e8f350b39ba754b5cb4fece06cb36e0bb3d3e4df7cb7907f6002ca920aed348b +SIZE (xpi/firefox-i18n-64.0/nl.xpi) = 465178 +SHA256 (xpi/firefox-i18n-64.0/nn-NO.xpi) = f39dfa5faca15761430a4f5ae5ae387494780251df90d78c44193c7048f154b0 +SIZE (xpi/firefox-i18n-64.0/nn-NO.xpi) = 472041 +SHA256 (xpi/firefox-i18n-64.0/oc.xpi) = e2f0a52bacfd18cc123c614efeae7076e691371b3569d388b9762a46f52e4142 +SIZE (xpi/firefox-i18n-64.0/oc.xpi) = 486836 +SHA256 (xpi/firefox-i18n-64.0/or.xpi) = 7d987d55037f75f80001f73e757a20770fca2a3138e06fde74133e1b6cdbb5b3 +SIZE (xpi/firefox-i18n-64.0/or.xpi) = 485454 +SHA256 (xpi/firefox-i18n-64.0/pa-IN.xpi) = c078bbcd3904b1c8b71076a2bea567da77a19df9d67cae41e0e58252e21e515d +SIZE (xpi/firefox-i18n-64.0/pa-IN.xpi) = 505897 +SHA256 (xpi/firefox-i18n-64.0/pl.xpi) = 6e39e7c09bf789295e85c12291db7fc3a179ad2f3532efb8423dd0daf7d491d7 +SIZE (xpi/firefox-i18n-64.0/pl.xpi) = 383257 +SHA256 (xpi/firefox-i18n-64.0/pt-BR.xpi) = a535255ab05fbb332ea8268cca1fb8919b22342ff1e0877a54cd5d9201a2fa73 +SIZE (xpi/firefox-i18n-64.0/pt-BR.xpi) = 475690 +SHA256 (xpi/firefox-i18n-64.0/pt-PT.xpi) = 5da6464caa38f0ac56313f13b1ae2e900e7cf7ab06cf7ae6f26f04a222f8a6a6 +SIZE (xpi/firefox-i18n-64.0/pt-PT.xpi) = 488741 +SHA256 (xpi/firefox-i18n-64.0/rm.xpi) = 2d947ad3d44f006ecee083cd8fe37f57e19bfaaf20151f211f54694c3520603e +SIZE (xpi/firefox-i18n-64.0/rm.xpi) = 478596 +SHA256 (xpi/firefox-i18n-64.0/ro.xpi) = 6f5aaa492ca2a49e4cf2272f60e422660fe6e330575df442ee10743f41cae033 +SIZE (xpi/firefox-i18n-64.0/ro.xpi) = 479967 +SHA256 (xpi/firefox-i18n-64.0/ru.xpi) = cb374fdceb3d4f7f3300cda97caa767d43f2bff6360075c8b91ef64ef8fd97a5 +SIZE (xpi/firefox-i18n-64.0/ru.xpi) = 546345 +SHA256 (xpi/firefox-i18n-64.0/si.xpi) = 0483ce757807e63f7569b88e46664d1179a163977b256d307d00a1bf23264334 +SIZE (xpi/firefox-i18n-64.0/si.xpi) = 489556 +SHA256 (xpi/firefox-i18n-64.0/sk.xpi) = ca866df6173877ed0bc5206a8b926ea6af84f7c93579234396e5930cdabdeda4 +SIZE (xpi/firefox-i18n-64.0/sk.xpi) = 504064 +SHA256 (xpi/firefox-i18n-64.0/sl.xpi) = 64d08cfb2363dcaff5c4bea74c22a8d73dcacb8ceaa06c5d1570d2ed2afce7bd +SIZE (xpi/firefox-i18n-64.0/sl.xpi) = 484982 +SHA256 (xpi/firefox-i18n-64.0/son.xpi) = 2117ebec8511e67ee8ca59b2a25365a63b93693ed92a6c7c261e0cd8e811f772 +SIZE (xpi/firefox-i18n-64.0/son.xpi) = 448995 +SHA256 (xpi/firefox-i18n-64.0/sq.xpi) = f2496fcc19c62241676ae1ce3084d8ca286aea22891323bea205d5344dc00ead +SIZE (xpi/firefox-i18n-64.0/sq.xpi) = 492688 +SHA256 (xpi/firefox-i18n-64.0/sr.xpi) = faf5ec9e043acb26a393db3d4928ab97733309e6197c2788238237c6d7c4b821 +SIZE (xpi/firefox-i18n-64.0/sr.xpi) = 506359 +SHA256 (xpi/firefox-i18n-64.0/sv-SE.xpi) = 24682aab7308dd328c8e205e2dd85354807311b8e7c4515f078a8ae7fa3af9f6 +SIZE (xpi/firefox-i18n-64.0/sv-SE.xpi) = 484134 +SHA256 (xpi/firefox-i18n-64.0/ta.xpi) = e236c66b7b75deb9e6692a4b1620f37339d7a54ffdabfbdb68eae6a4734a0053 +SIZE (xpi/firefox-i18n-64.0/ta.xpi) = 530867 +SHA256 (xpi/firefox-i18n-64.0/te.xpi) = 82d45a3f5dfa0c2e316ef27c30414a24866afafdb625fda322b4923fb2817811 +SIZE (xpi/firefox-i18n-64.0/te.xpi) = 547595 +SHA256 (xpi/firefox-i18n-64.0/th.xpi) = 5b406c3454a998a517fc7691ef47c8dfb5b4a7bebb5d080f0a64b4e2b27a8ad7 +SIZE (xpi/firefox-i18n-64.0/th.xpi) = 508198 +SHA256 (xpi/firefox-i18n-64.0/tr.xpi) = 993de7c31db7d98c221de0e9a8c57e373e39b011cf95dba4369de9a86331cff5 +SIZE (xpi/firefox-i18n-64.0/tr.xpi) = 494709 +SHA256 (xpi/firefox-i18n-64.0/uk.xpi) = 7ff50a27e3c4f019510634734f8df1e1419fbc084792986ad9ebf4ded4ac091f +SIZE (xpi/firefox-i18n-64.0/uk.xpi) = 520997 +SHA256 (xpi/firefox-i18n-64.0/ur.xpi) = 7db69120a9cebcfd9ddff8691fad9fc1f5f0abe62d9d4530157d29a708873721 +SIZE (xpi/firefox-i18n-64.0/ur.xpi) = 521724 +SHA256 (xpi/firefox-i18n-64.0/uz.xpi) = 7503af7b3aff3374229a5218fd1b1ed004203746ea7924031550b086bbc6993f +SIZE (xpi/firefox-i18n-64.0/uz.xpi) = 466671 +SHA256 (xpi/firefox-i18n-64.0/vi.xpi) = 062c12a75f2fb4b1feec11ae84f01b1d26dbc2581bb00ba2ec4346fb01144bdc +SIZE (xpi/firefox-i18n-64.0/vi.xpi) = 488332 +SHA256 (xpi/firefox-i18n-64.0/xh.xpi) = c5e176b33f2c32c418a1960b01280bf18980ed5706cfe5f2891a9bac4b8fbb5a +SIZE (xpi/firefox-i18n-64.0/xh.xpi) = 463285 +SHA256 (xpi/firefox-i18n-64.0/zh-CN.xpi) = 23d0a7e234b3734df8fb6fa31a15f250a4f82e017df7ddc92f779c0765a8719d +SIZE (xpi/firefox-i18n-64.0/zh-CN.xpi) = 507516 +SHA256 (xpi/firefox-i18n-64.0/zh-TW.xpi) = 224af39ae1ce61d1f4228d5898a43803caee04f3fd4617adb7dcb52e2da5b76f +SIZE (xpi/firefox-i18n-64.0/zh-TW.xpi) = 510618 Index: branches/2018Q4 =================================================================== --- branches/2018Q4 (revision 487199) +++ branches/2018Q4 (revision 487200) Property changes on: branches/2018Q4 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r486573-486575,486734,486823