diff --git a/audio/fasttracker2/Makefile b/audio/fasttracker2/Makefile index 982bb9f9943..8afae6d9e22 100644 --- a/audio/fasttracker2/Makefile +++ b/audio/fasttracker2/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fasttracker2 -DISTVERSION= 0.1-b134 +DISTVERSION= 0.1-b135 CATEGORIES= audio MASTER_SITES= https://16-bits.org/ \ LOCAL/ehaupt diff --git a/audio/fasttracker2/distinfo b/audio/fasttracker2/distinfo index 4cf7da1c062..93c2c832e6a 100644 --- a/audio/fasttracker2/distinfo +++ b/audio/fasttracker2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1549950528 -SHA256 (ft2clone-b134-code.zip) = 0b65ee79c4393a0dcb9fbe41458eaa5fdc9722c0606b370e61a76fd1dd91c9fa -SIZE (ft2clone-b134-code.zip) = 3463053 +TIMESTAMP = 1550039493 +SHA256 (ft2clone-b135-code.zip) = 154a8629e64199fda54ecc5a3c5f83286bdac573f919525babb224bfd113ee09 +SIZE (ft2clone-b135-code.zip) = 3462980 diff --git a/comms/rxtx/Makefile b/comms/rxtx/Makefile index 30e6d3731c3..28fe0054ae2 100644 --- a/comms/rxtx/Makefile +++ b/comms/rxtx/Makefile @@ -28,6 +28,7 @@ CONFIGURE_ENV= JAVA_HOME=${JAVA_HOME} INSTALL_TARGET= install-strip USE_LDCONFIG= yes +MAKE_JOBS_UNSAFE= yes PLIST_SUB= JAVA_HOME=${JAVA_HOME:S,^${PREFIX}/,,} PLIST_SUB+= ARCH=${ARCH:C/armv.*/arm/:S/powerpc64/ppc64/} diff --git a/databases/rubygem-dbf/Makefile b/databases/rubygem-dbf/Makefile index 93bed29168b..ec8ed44e356 100644 --- a/databases/rubygem-dbf/Makefile +++ b/databases/rubygem-dbf/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dbf -PORTVERSION= 4.0.1 +PORTVERSION= 4.1.1 CATEGORIES= databases rubygems MASTER_SITES= RG diff --git a/databases/rubygem-dbf/distinfo b/databases/rubygem-dbf/distinfo index 925e23159d7..1634255dc24 100644 --- a/databases/rubygem-dbf/distinfo +++ b/databases/rubygem-dbf/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1546883417 -SHA256 (rubygem/dbf-4.0.1.gem) = 3b3b87554743dae8abaa1543437dd57c7c997ae8721e11a31cbf529d2620fda7 -SIZE (rubygem/dbf-4.0.1.gem) = 127488 +TIMESTAMP = 1550093422 +SHA256 (rubygem/dbf-4.1.1.gem) = f1ce5b92ad546b9a83d88ef7137b168e81b948b4cabed3e9ba30d34b6e3d98b9 +SIZE (rubygem/dbf-4.1.1.gem) = 127488 diff --git a/devel/catch/Makefile b/devel/catch/Makefile index 92d32e61e8d..2ac73411289 100644 --- a/devel/catch/Makefile +++ b/devel/catch/Makefile @@ -3,7 +3,7 @@ PORTNAME= catch DISTVERSIONPREFIX= v -DISTVERSION= 2.6.0 +DISTVERSION= 2.6.1 PORTREVISION= 0 CATEGORIES= devel diff --git a/devel/catch/distinfo b/devel/catch/distinfo index 0a19a6d466b..ecc49946fa6 100644 --- a/devel/catch/distinfo +++ b/devel/catch/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1549025650 -SHA256 (catchorg-Catch2-v2.6.0_GH0.tar.gz) = 4c94a685557328eb1b0ed1017ca37c3a378742dc03b558cf02267b6ba8579577 -SIZE (catchorg-Catch2-v2.6.0_GH0.tar.gz) = 559274 +TIMESTAMP = 1550050778 +SHA256 (catchorg-Catch2-v2.6.1_GH0.tar.gz) = b57c2d3362102a77955d3cd0181b792c496520349bfefee8379b9d35b8819f80 +SIZE (catchorg-Catch2-v2.6.1_GH0.tar.gz) = 559715 diff --git a/devel/libserialport/Makefile b/devel/libserialport/Makefile index 160b4101c0c..0d075501478 100644 --- a/devel/libserialport/Makefile +++ b/devel/libserialport/Makefile @@ -3,6 +3,7 @@ PORTNAME= libserialport PORTVERSION= 0.1.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://sigrok.org/download/source/libserialport/ diff --git a/devel/libserialport/files/patch-freebsd.c b/devel/libserialport/files/patch-freebsd.c new file mode 100644 index 00000000000..1bf54294cbe --- /dev/null +++ b/devel/libserialport/files/patch-freebsd.c @@ -0,0 +1,37 @@ +--- freebsd.c.orig 2018-07-17 13:22:11 UTC ++++ freebsd.c +@@ -327,9 +327,8 @@ SP_PRIV enum sp_return list_ports(struct sp_port ***li + DIR *dir; + struct dirent entry; + struct dirent *result; +- struct termios tios; + char name[PATH_MAX]; +- int fd, ret; ++ int ret; + + DEBUG("Enumerating tty devices"); + if (!(dir = opendir("/dev"))) +@@ -353,21 +352,10 @@ SP_PRIV enum sp_return list_ports(struct sp_port ***li + DEBUG_FMT("Found device %s", name); + + /* Check that we can open tty/cua device in rw mode - we need that. */ +- if ((fd = open(name, O_RDWR | O_NONBLOCK | O_NOCTTY | O_TTY_INIT | O_CLOEXEC)) < 0) { +- DEBUG("Open failed, skipping"); ++ if (access(name, R_OK | W_OK) != 0) { ++ DEBUG("access(2) check failed, skipping"); + continue; + } +- +- /* Sanity check if we got a real tty. */ +- if (!isatty(fd)) { +- close(fd); +- continue; +- } +- +- ret = tcgetattr(fd, &tios); +- close(fd); +- if (ret < 0 || cfgetospeed(&tios) <= 0 || cfgetispeed(&tios) <= 0) +- continue; + + DEBUG_FMT("Found port %s", name); + DBG("%s: %s\n", __func__, entry.d_name); diff --git a/devel/libversion/Makefile b/devel/libversion/Makefile index 34064fbac43..900560dcd83 100644 --- a/devel/libversion/Makefile +++ b/devel/libversion/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libversion -PORTVERSION= 2.8.2 +PORTVERSION= 2.9.0 CATEGORIES= devel MAINTAINER= amdmi3@FreeBSD.org diff --git a/devel/libversion/distinfo b/devel/libversion/distinfo index ad653046294..d389b4a4ee1 100644 --- a/devel/libversion/distinfo +++ b/devel/libversion/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1549990130 -SHA256 (repology-libversion-2.8.2_GH0.tar.gz) = bfc62a89aa7340a9f1c5abb0d2dbe7edd218059b484802b94fe806ca13096eca -SIZE (repology-libversion-2.8.2_GH0.tar.gz) = 14313 +TIMESTAMP = 1550082881 +SHA256 (repology-libversion-2.9.0_GH0.tar.gz) = ab95e62759a53c2ea2428b39d2e864589f64137c1150f56d166a4754b34736ea +SIZE (repology-libversion-2.9.0_GH0.tar.gz) = 22085 diff --git a/devel/libversion/pkg-plist b/devel/libversion/pkg-plist index 2d5f22b6a96..f05fd15d09e 100644 --- a/devel/libversion/pkg-plist +++ b/devel/libversion/pkg-plist @@ -1,6 +1,9 @@ bin/version_compare include/libversion/config.h +include/libversion/export.h include/libversion/version.h +lib/cmake/libversion/libversionConfig-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/libversion/libversionConfig.cmake lib/libversion.a lib/libversion.so lib/libversion.so.0 diff --git a/devel/osc/Makefile b/devel/osc/Makefile index 6354e8226c0..9e3e106ee94 100644 --- a/devel/osc/Makefile +++ b/devel/osc/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= osc -PORTVERSION= 0.164.1 +PORTVERSION= 0.164.2 CATEGORIES= devel MAINTAINER= amdmi3@FreeBSD.org diff --git a/devel/osc/distinfo b/devel/osc/distinfo index fb952692d0a..82377ea3ca8 100644 --- a/devel/osc/distinfo +++ b/devel/osc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1547826752 -SHA256 (openSUSE-osc-0.164.1_GH0.tar.gz) = d976d64998d949a1b1fe993e3ae708868e6ae7ae3393702ae91b2fb04f481b7d -SIZE (openSUSE-osc-0.164.1_GH0.tar.gz) = 347278 +TIMESTAMP = 1550086242 +SHA256 (openSUSE-osc-0.164.2_GH0.tar.gz) = b2050735311278c011ff194bf78b389eef469ad918ac02fc5b520d2882b71ad4 +SIZE (openSUSE-osc-0.164.2_GH0.tar.gz) = 348104 diff --git a/devel/p5-FFI-Platypus/Makefile b/devel/p5-FFI-Platypus/Makefile index a897d9fc3db..e40c4cf401a 100644 --- a/devel/p5-FFI-Platypus/Makefile +++ b/devel/p5-FFI-Platypus/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= FFI-Platypus -PORTVERSION= 0.82 +PORTVERSION= 0.83 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/devel/p5-FFI-Platypus/distinfo b/devel/p5-FFI-Platypus/distinfo index 8c14e70dabe..a5e61c62310 100644 --- a/devel/p5-FFI-Platypus/distinfo +++ b/devel/p5-FFI-Platypus/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1549892494 -SHA256 (FFI-Platypus-0.82.tar.gz) = f431c930501b18ddccdeac9c4361db11c8f5e9f47f3f8ca33f4b98e228c85b6b -SIZE (FFI-Platypus-0.82.tar.gz) = 243792 +TIMESTAMP = 1550093397 +SHA256 (FFI-Platypus-0.83.tar.gz) = fd0ce59ddc84d574e084595c7fed207a5411bf61da03bdb07ff1b7b804a0932a +SIZE (FFI-Platypus-0.83.tar.gz) = 250668 diff --git a/devel/py-oslo.policy/Makefile b/devel/py-oslo.policy/Makefile index 7a3a6f4dbcc..d6e7adb3d5b 100644 --- a/devel/py-oslo.policy/Makefile +++ b/devel/py-oslo.policy/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= oslo.policy -PORTVERSION= 1.44.1 +PORTVERSION= 2.1.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-oslo.policy/distinfo b/devel/py-oslo.policy/distinfo index 326c1891da0..2fd130f27db 100644 --- a/devel/py-oslo.policy/distinfo +++ b/devel/py-oslo.policy/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1547665238 -SHA256 (oslo.policy-1.44.1.tar.gz) = bbb0e2ae4cc9a48d687c50a8d7db7f685ed925b54485281c029c0e11a1c83a1c -SIZE (oslo.policy-1.44.1.tar.gz) = 89194 +TIMESTAMP = 1550093412 +SHA256 (oslo.policy-2.1.0.tar.gz) = 432bdf89bb8b82e16d3575f858a47e4fa7048a2f6bdfe5358fd60f3e6cdd1dfd +SIZE (oslo.policy-2.1.0.tar.gz) = 90057 diff --git a/devel/py-pyvisa-py/Makefile b/devel/py-pyvisa-py/Makefile index 9467863817c..258d161e467 100644 --- a/devel/py-pyvisa-py/Makefile +++ b/devel/py-pyvisa-py/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pyvisa-py -PORTVERSION= 0.2 +PORTVERSION= 0.3.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -15,6 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= python USE_PYTHON= autoplist concurrent distutils + NO_ARCH= yes OPTIONS_DEFINE= SERIAL USB diff --git a/devel/py-pyvisa-py/distinfo b/devel/py-pyvisa-py/distinfo index b4f1c7ed801..6b802c394fc 100644 --- a/devel/py-pyvisa-py/distinfo +++ b/devel/py-pyvisa-py/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1519582840 -SHA256 (PyVISA-py-0.2.tar.gz) = 4e77ac0302f13f22e003d9be07ede371ead3fd672a17d9a963e24e8babc29ad7 -SIZE (PyVISA-py-0.2.tar.gz) = 50244 +TIMESTAMP = 1550093416 +SHA256 (PyVISA-py-0.3.1.tar.gz) = 1c918650a770a634434f6e8e0e1c097b5f0f80dc23bc60d3779c9890b4aa9150 +SIZE (PyVISA-py-0.3.1.tar.gz) = 57613 diff --git a/devel/py-pyvisa/Makefile b/devel/py-pyvisa/Makefile index 5ad078366aa..79b2fe3d5f4 100644 --- a/devel/py-pyvisa/Makefile +++ b/devel/py-pyvisa/Makefile @@ -17,8 +17,9 @@ RUN_DEPENDS= ${PY_ENUM34} \ ${PYTHON_PKGNAMEPREFIX}pyvisa-py>=0:devel/py-pyvisa-py@${PY_FLAVOR} USES= python -USE_LOCALE= en_US.UTF-8 USE_PYTHON= autoplist concurrent distutils + NO_ARCH= yes +USE_LOCALE= en_US.UTF-8 .include diff --git a/devel/rubygem-aws-sdk-core/Makefile b/devel/rubygem-aws-sdk-core/Makefile index d6152974bce..b90bc11a7e3 100644 --- a/devel/rubygem-aws-sdk-core/Makefile +++ b/devel/rubygem-aws-sdk-core/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -DISTVERSION= 2.11.218 +DISTVERSION= 2.11.219 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk-core/distinfo b/devel/rubygem-aws-sdk-core/distinfo index 47e6727dd00..b2c783d94b9 100644 --- a/devel/rubygem-aws-sdk-core/distinfo +++ b/devel/rubygem-aws-sdk-core/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1550000063 -SHA256 (rubygem/aws-sdk-core-2.11.218.gem) = b17e9969ba4822c49b0d8d5264cd393944334ac544ba7767e7fd954cf8debafc -SIZE (rubygem/aws-sdk-core-2.11.218.gem) = 1521664 +TIMESTAMP = 1550093428 +SHA256 (rubygem/aws-sdk-core-2.11.219.gem) = 9c21a8ec1ed04f9ef33962f5a9e24c5b77b098a45873a2c3232a562e2810ede7 +SIZE (rubygem/aws-sdk-core-2.11.219.gem) = 1521664 diff --git a/devel/rubygem-aws-sdk-resources/Makefile b/devel/rubygem-aws-sdk-resources/Makefile index 98ce5489aac..a4d5ccb0d80 100644 --- a/devel/rubygem-aws-sdk-resources/Makefile +++ b/devel/rubygem-aws-sdk-resources/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -DISTVERSION= 2.11.218 +DISTVERSION= 2.11.219 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk-resources/distinfo b/devel/rubygem-aws-sdk-resources/distinfo index eea35923d8f..70a1898669c 100644 --- a/devel/rubygem-aws-sdk-resources/distinfo +++ b/devel/rubygem-aws-sdk-resources/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1550000068 -SHA256 (rubygem/aws-sdk-resources-2.11.218.gem) = ed17023316a495464df0eee59ea2bb7daa4f21af95e9bca48adf0289cdb004e3 -SIZE (rubygem/aws-sdk-resources-2.11.218.gem) = 48640 +TIMESTAMP = 1550093433 +SHA256 (rubygem/aws-sdk-resources-2.11.219.gem) = d098f18783430942001e7946915a04575e1a0cc73a82d67203a36afaa498c17d +SIZE (rubygem/aws-sdk-resources-2.11.219.gem) = 48640 diff --git a/devel/rubygem-aws-sdk/Makefile b/devel/rubygem-aws-sdk/Makefile index 12854e2ac3c..a2f4e40e24c 100644 --- a/devel/rubygem-aws-sdk/Makefile +++ b/devel/rubygem-aws-sdk/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -DISTVERSION= 2.11.218 +DISTVERSION= 2.11.219 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-aws-sdk/distinfo b/devel/rubygem-aws-sdk/distinfo index e90dbfedaf4..dea5a5e5e69 100644 --- a/devel/rubygem-aws-sdk/distinfo +++ b/devel/rubygem-aws-sdk/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1550000070 -SHA256 (rubygem/aws-sdk-2.11.218.gem) = 4151634b090d06bfc57e129746723c955e2dc2b2458dcc889f9b91666a1bfa54 -SIZE (rubygem/aws-sdk-2.11.218.gem) = 4608 +TIMESTAMP = 1550093436 +SHA256 (rubygem/aws-sdk-2.11.219.gem) = ded077362a8e5487aa82b769fdc18ee5ca80d73b8f91f96f00470c4a7ee4b4c6 +SIZE (rubygem/aws-sdk-2.11.219.gem) = 4608 diff --git a/devel/udis86/Makefile b/devel/udis86/Makefile index 38287c4bd11..368c2274c6e 100644 --- a/devel/udis86/Makefile +++ b/devel/udis86/Makefile @@ -13,12 +13,11 @@ COMMENT= Minimalistic x86 and x86-64 disassembler library LICENSE= BSD2CLAUSE USES= gmake libtool +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --without-sphinx-build --enable-shared USE_LDCONFIG= yes INSTALL_TARGET= install-strip -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --without-sphinx-build --enable-shared - INFO= udis86 PORTDOCS= x86 @@ -51,6 +50,7 @@ CONFIGURE_ENV+= PYTHON="${FALSE}" .endif post-install: - @${INSTALL_DATA} ${WRKSRC}/docs/manual/udis86.info ${STAGEDIR}${PREFIX}/${INFO_PATH}/ + ${INSTALL_DATA} ${WRKSRC}/docs/manual/udis86.info \ + ${STAGEDIR}${PREFIX}/${INFO_PATH} .include diff --git a/dns/dsc/Makefile b/dns/dsc/Makefile index ed6adcfb313..d703fe1f198 100644 --- a/dns/dsc/Makefile +++ b/dns/dsc/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= dsc -PORTVERSION= 2.7.0 -PORTREVISION= 1 +PORTVERSION= 2.8.0 CATEGORIES= dns MASTER_SITES= https://www.dns-oarc.net/files/dsc/ \ https://dns.company/files/dsc/ @@ -26,9 +25,20 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-extra-cflags=-I${LOCALBASE}/include SUB_FILES= pkg-message +SHEBANG_FILES= cron/upload-prep.pl -USE_RC_SUBR= dsc +USE_RC_SUBR= dsc OPTIONS_DEFINE= DOCS +post-extract: + ${REINPLACE_CMD} -e 's|/usr/local/dsc/etc|${PREFIX}/etc/dsc|' \ + ${WRKSRC}/cron/upload-prep.pl + ${REINPLACE_CMD} -e 's|/usr/local/|${PREFIX}/|' \ + ${WRKSRC}/cron/upload-rsync.sh \ + ${WRKSRC}/cron/upload-ssh.sh \ + ${WRKSRC}/cron/upload-x509.sh \ + ${WRKSRC}/src/dsc.conf.5.in \ + ${WRKSRC}/src/dsc.sh + .include diff --git a/dns/dsc/distinfo b/dns/dsc/distinfo index fe9344b710e..8a12c125fa0 100644 --- a/dns/dsc/distinfo +++ b/dns/dsc/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1534374842 -SHA256 (dsc-2.7.0.tar.gz) = eab7f79229a800087d96cb8bac39927558f1d512428d7825d5edb5f7064d2c31 -SIZE (dsc-2.7.0.tar.gz) = 325520 +TIMESTAMP = 1550048113 +SHA256 (dsc-2.8.0.tar.gz) = a8e7ee0063f1ac34f686bdba773ec209a0a974ccdf0e032ba10163800ec86880 +SIZE (dsc-2.8.0.tar.gz) = 333408 diff --git a/dns/dsc/files/patch-cron_upload-prep.pl b/dns/dsc/files/patch-cron_upload-prep.pl deleted file mode 100644 index 4d5b102dce8..00000000000 --- a/dns/dsc/files/patch-cron_upload-prep.pl +++ /dev/null @@ -1,17 +0,0 @@ ---- cron/upload-prep.pl.orig 2017-08-21 08:14:08 UTC -+++ cron/upload-prep.pl -@@ -1,4 +1,4 @@ --#!/usr/bin/perl -+#!/usr/local/bin/perl - # - # Copyright (c) 2016-2017, OARC, Inc. - # Copyright (c) 2007, The Measurement Factory, Inc. -@@ -54,7 +54,7 @@ exit 0 if Proc::PID::File->running(dir = - sleep 3; - - --foreach my $conf () { -+foreach my $conf () { - next unless open (CONF, $conf); - my $rundir = undef; - while () { diff --git a/editors/Makefile b/editors/Makefile index ab37ff56edc..9a7103aecb9 100644 --- a/editors/Makefile +++ b/editors/Makefile @@ -38,7 +38,7 @@ SUBDIR += emacs SUBDIR += emacs-devel SUBDIR += encryptpad - SUBDIR += featherpad + SUBDIR += featherpad SUBDIR += fileobj SUBDIR += flim SUBDIR += focuswriter @@ -251,6 +251,7 @@ SUBDIR += web-mode SUBDIR += with-editor SUBDIR += wordgrinder + SUBDIR += wxhexeditor SUBDIR += xcoral SUBDIR += xed SUBDIR += xi-core diff --git a/editors/wxhexeditor/Makefile b/editors/wxhexeditor/Makefile new file mode 100644 index 00000000000..0c0f57872f7 --- /dev/null +++ b/editors/wxhexeditor/Makefile @@ -0,0 +1,31 @@ +# Created by: Alexey Dokuchaev +# $FreeBSD$ + +PORTNAME= wxhexeditor +PORTVERSION= 0.24 +CATEGORIES= editors +MASTER_SITES= SF/${PORTNAME}/wxHexEditor/v${PORTVERSION}%20Beta/ +DISTNAME= wxHexEditor-v${PORTVERSION}-src + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Graphical hex editor for big files with x86 disassembly support + +LICENSE= GPLv2 + +LIB_DEPENDS= libudis86.so:devel/udis86 \ + libmhash.so:security/mhash + +USES= gettext-tools gmake tar:xz +USE_WX= 3.0+ +MAKE_ARGS= WXCONFIG="${WX_CONFIG}" + +WRKSRC= ${WRKDIR}/wxHexEditor + +# Follow the ${MTREE_FILE} which specifies simple, unsuffixed names +# for these particular locales +post-patch: + @${MV} ${WRKSRC}/locale/hu_HU ${WRKSRC}/locale/hu + @${MV} ${WRKSRC}/locale/ja_JP ${WRKSRC}/locale/ja + @${MV} ${WRKSRC}/locale/nl_NL ${WRKSRC}/locale/nl + +.include diff --git a/editors/wxhexeditor/distinfo b/editors/wxhexeditor/distinfo new file mode 100644 index 00000000000..8e86b619dd2 --- /dev/null +++ b/editors/wxhexeditor/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1514687038 +SHA256 (wxHexEditor-v0.24-src.tar.xz) = a1b893fcc5b2a6e5e971b5fe4116b65f9fed6d317e8cdc6cb9219a0a609fd5ab +SIZE (wxHexEditor-v0.24-src.tar.xz) = 900868 diff --git a/editors/wxhexeditor/files/patch-Makefile b/editors/wxhexeditor/files/patch-Makefile new file mode 100644 index 00000000000..ae775255e31 --- /dev/null +++ b/editors/wxhexeditor/files/patch-Makefile @@ -0,0 +1,60 @@ +--- Makefile.orig 2017-12-31 02:15:18 UTC ++++ Makefile +@@ -1,9 +1,9 @@ + WXCONFIG ?= wx-config + HOST= +-WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -Iudis86 -Imhash/include -MMD -fopenmp -Wall -O2 ++WXCXXFLAGS= `$(WXCONFIG) --cxxflags` -MMD -Wall -I$(LOCALBASE)/include + WXLDFLAGS = `$(WXCONFIG) --libs` `$(WXCONFIG) --libs aui` `$(WXCONFIG) --libs core` +-WXCXXFLAGS += -fopenmp +-LDFLAGS += -lgomp ++#WXCXXFLAGS += -fopenmp ++#LDFLAGS += -lgomp + #add this ldflags for WinConsole "-Wl,--subsystem,console -mconsole" for win-debug + #LDFLAGS += -Wl,--subsystem,console -mconsole + RC = `$(WXCONFIG) --rescomp` +@@ -22,7 +22,7 @@ SOURCES= src/HexEditorGui.cpp \ + src/HexEditorCtrl/wxHexCtrl/Tag.cpp\ + src/HexEditorCtrl/HexEditorCtrlGui.cpp\ + src/HexEditorFrame.cpp +-LIBS = udis86/libudis86/.libs/libudis86.a mhash/lib/.libs/libmhash.a ++LIBS = -ludis86 -lmhash + OBJECTS=$(SOURCES:.cpp=.o) + DEPENDS=$(OBJECTS:.o=.d) + LANGUAGEDIRS=`ls -l ./locale | grep ^d | sed s/.*\ //g;` +@@ -33,7 +33,7 @@ EXECUTABLE=wxHexEditor + EXECUTABLE_WIN=$(EXECUTABLE).exe + EXECUTABLE_DIR_MAC=$(EXECUTABLE).app + +-PREFIX = /usr ++PREFIX ?= /usr + BINDIR = $(PREFIX)/bin + DATADIR = $(PREFIX)/share + LOCALEDIR = $(DATADIR)/locale +@@ -47,7 +47,7 @@ clang: all + + all:$(EXECUTABLE) langs + +-$(OBJECTS): $(LIBS) $(SOURCES) ++$(OBJECTS): $(SOURCES) + + MOBJECTS=$(LANGUAGES:.po=.mo) + +@@ -169,12 +169,12 @@ prepmacdir: langs + cp locale/$$i/wxHexEditor.mo $(EXECUTABLE_DIR_MAC)/Contents/Resources/locale/$$i/; done + + install: +- install -D -m 755 $(EXECUTABLE) $(DESTDIR)/$(BINDIR)/$(EXECUTABLE) +- install -D -m 644 resources/wxHexEditor.png $(DESTDIR)/$(DATADIR)/pixmaps/wxHexEditor.png +- install -D -m 644 resources/wxHexEditor.desktop $(DESTDIR)/$(DATADIR)/applications/wxHexEditor.desktop ++ install -m 755 $(EXECUTABLE) $(DESTDIR)$(BINDIR)/$(EXECUTABLE) ++ install -m 644 resources/wxHexEditor.png $(DESTDIR)$(DATADIR)/pixmaps/wxHexEditor.png ++ install -m 644 resources/wxHexEditor.desktop $(DESTDIR)$(DATADIR)/applications/wxHexEditor.desktop + @for i in $(LANGUAGEDIRS); do \ +- echo "install -D -m 644 locale/$$i/wxHexEditor.mo $(DESTDIR)/$(LOCALEDIR)/$$i/LC_MESSAGES/wxHexEditor.mo"; \ +- install -D -m 644 locale/$$i/wxHexEditor.mo $(DESTDIR)/$(LOCALEDIR)/$$i/LC_MESSAGES/wxHexEditor.mo; done ++ echo "install -m 644 locale/$$i/wxHexEditor.mo $(DESTDIR)$(LOCALEDIR)/$$i/LC_MESSAGES/wxHexEditor.mo"; \ ++ install -m 644 locale/$$i/wxHexEditor.mo $(DESTDIR)$(LOCALEDIR)/$$i/LC_MESSAGES/wxHexEditor.mo; done + + uninstall: + rm -f $(DESTDIR)/$(BINDIR)/$(EXECUTABLE) diff --git a/editors/wxhexeditor/files/patch-src_FAL.cpp b/editors/wxhexeditor/files/patch-src_FAL.cpp new file mode 100644 index 00000000000..c949b829f05 --- /dev/null +++ b/editors/wxhexeditor/files/patch-src_FAL.cpp @@ -0,0 +1,53 @@ +--- src/FAL.cpp.orig 2017-12-31 02:15:18 UTC ++++ src/FAL.cpp +@@ -39,10 +39,10 @@ + #define PTRACE_POKETEXT PT_WRITE_I + #endif + +-//#if defined BSD +-// #define DKIOCGETBLOCKSIZE DIOCGSECTORSIZE /* Get the sector size of the device in bytes */ +-// #define DKIOCGETBLOCKCOUNT DIOCGMEDIASIZE /* Get media size in bytes */ +-//#endif ++#if defined BSD ++ #define DKIOCGETBLOCKSIZE DIOCGSECTORSIZE /* Get the sector size of the device in bytes */ ++ #define DKIOCGETBLOCKCOUNT DIOCGMEDIASIZE /* Get media size in bytes */ ++#endif + + + WX_DEFINE_OBJARRAY(ArrayOfNode); +@@ -208,7 +208,7 @@ bool FAL::OSDependedOpen(wxFileName& myfilename, FileA + myfilename.GetFullPath().Mid(5).ToLong(&a); + ProcessID=a; + RAMProcess=true; +- if((ptrace(PTRACE_ATTACH, ProcessID, NULL, NULL)) < 0 ){ ++ if((ptrace(PTRACE_ATTACH, ProcessID, NULL, 0)) < 0 ){ + wxMessageBox( _("Process cannot open."),_("Error"), wxOK|wxICON_ERROR ); + ProcessID=-1; + return false; +@@ -326,7 +326,7 @@ bool FAL::FALOpen(wxFileName& myfilename, FileAccessMo + bool FAL::Close(){ + #ifndef __WXMSW__ + if( ProcessID >=0 ) +- return ((ptrace(PTRACE_DETACH, ProcessID, NULL, NULL)) >= 0 ); ++ return ((ptrace(PTRACE_DETACH, ProcessID, NULL, 0)) >= 0 ); + #endif + #ifdef __WXMSW__ + if(IsWinDevice( the_file ) ){ +@@ -521,7 +521,7 @@ bool FAL::Apply( void ){ + long word=0; + //unsigned long *ptr = (unsigned long *) buffer; + while (rd < rd_size) { +- word = ptrace(PTRACE_PEEKTEXT, ProcessID, reinterpret_cast(StartSector*BlockRWSize+rd), NULL); ++ word = ptrace(PTRACE_PEEKTEXT, ProcessID, reinterpret_cast(StartSector*BlockRWSize+rd), 0); + memcpy( bfr+rd , &word, 4); + rd += 4; + } +@@ -803,7 +803,7 @@ long FAL::ReadR( unsigned char* buffer, unsigned size, + //unsigned long *ptr = (unsigned long *) buffer; + #ifndef __WXMSW__ + while (rd < rd_size) { +- word = ptrace(PTRACE_PEEKTEXT, ProcessID, reinterpret_cast(StartSector*BlockRWSize+rd), NULL); ++ word = ptrace(PTRACE_PEEKTEXT, ProcessID, reinterpret_cast(StartSector*BlockRWSize+rd), 0); + memcpy( bfr+rd , &word, 4); + rd += 4; + } diff --git a/editors/wxhexeditor/files/patch-src_HexDialogs.cpp b/editors/wxhexeditor/files/patch-src_HexDialogs.cpp new file mode 100644 index 00000000000..bcd3241611e --- /dev/null +++ b/editors/wxhexeditor/files/patch-src_HexDialogs.cpp @@ -0,0 +1,12 @@ +--- src/HexDialogs.cpp.orig 2017-12-31 02:15:18 UTC ++++ src/HexDialogs.cpp +@@ -24,7 +24,8 @@ + #define NANINT 0xFFFFFFFFFFFFFFFFLL + #include "HexDialogs.h" + #include +-#include "../mhash/include/mhash.h" ++typedef bool _Bool; ++#include + + #ifdef __SSE2__ + #include diff --git a/editors/wxhexeditor/files/patch-src_HexEditor.h b/editors/wxhexeditor/files/patch-src_HexEditor.h new file mode 100644 index 00000000000..da2993645d2 --- /dev/null +++ b/editors/wxhexeditor/files/patch-src_HexEditor.h @@ -0,0 +1,12 @@ +--- src/HexEditor.h.orig 2017-12-31 02:15:18 UTC ++++ src/HexEditor.h +@@ -25,7 +25,8 @@ + #ifndef _wxHexEditor_h_ + #define _wxHexEditor_h_ + +-#include "../mhash/include/mhash.h" ++typedef bool _Bool; ++#include + + #include + #include diff --git a/editors/wxhexeditor/files/patch-src_HexEditorCtrl_wxHexCtrl_main.cpp b/editors/wxhexeditor/files/patch-src_HexEditorCtrl_wxHexCtrl_main.cpp new file mode 100644 index 00000000000..5b628fb6bda --- /dev/null +++ b/editors/wxhexeditor/files/patch-src_HexEditorCtrl_wxHexCtrl_main.cpp @@ -0,0 +1,11 @@ +--- src/HexEditorCtrl/wxHexCtrl/main.cpp.orig 2017-12-31 02:15:18 UTC ++++ src/HexEditorCtrl/wxHexCtrl/main.cpp +@@ -60,7 +60,7 @@ MyFrame::MyFrame(wxFrame *frame, const wxString& title + #endif // wxUSE_STATUSBAR + + wxString ch; +- for(int j=0 ; j < 90 ; j++ ){ ++ for(char j=0 ; j < 90 ; j++ ){ + ch.Append(j); + hex_ctrl->SetBinValue( ch.char_str(),90,true ); + } diff --git a/editors/wxhexeditor/files/patch-src_HexEditorCtrl_wxHexCtrl_wxHexCtrl.cpp b/editors/wxhexeditor/files/patch-src_HexEditorCtrl_wxHexCtrl_wxHexCtrl.cpp new file mode 100644 index 00000000000..1fa7cc741a0 --- /dev/null +++ b/editors/wxhexeditor/files/patch-src_HexEditorCtrl_wxHexCtrl_wxHexCtrl.cpp @@ -0,0 +1,20 @@ +--- src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp.orig 2017-12-31 02:15:18 UTC ++++ src/HexEditorCtrl/wxHexCtrl/wxHexCtrl.cpp +@@ -557,7 +557,7 @@ inline wxDC* wxHexCtrl::UpdateDC(wxDC *xdc ){ + + //First half of byte + RenderedHexByte += CharAt(textLenghtLimit++); +- chr = RenderedHexByte.ToAscii()[0]; ++ chr = RenderedHexByte.ToAscii()[static_cast(0)]; + chrC = atoh( chr ) << 4; + + //Space could be here +@@ -569,7 +569,7 @@ inline wxDC* wxHexCtrl::UpdateDC(wxDC *xdc ){ + + //Second half of byte. + RenderedHexByte += CharAt(textLenghtLimit++); +- chr = RenderedHexByte.ToAscii()[1]; ++ chr = RenderedHexByte.ToAscii()[static_cast(1)]; + chrC |= atoh( chr ); + //chrC = (atoh( RenderedHexByte.ToAscii()[0] ) << 4) | atoh( RenderedHexByte.ToAscii()[1] ); + diff --git a/editors/wxhexeditor/files/patch-src_HexPanels.h b/editors/wxhexeditor/files/patch-src_HexPanels.h new file mode 100644 index 00000000000..10a65e2dc91 --- /dev/null +++ b/editors/wxhexeditor/files/patch-src_HexPanels.h @@ -0,0 +1,11 @@ +--- src/HexPanels.h.orig 2017-12-31 02:15:18 UTC ++++ src/HexPanels.h +@@ -27,7 +27,7 @@ + #include "HexEditorFrame.h" + #include "HexEditorCtrl/HexEditorCtrl.h" + #include "HexEditorCtrl/wxHexCtrl/wxHexCtrl.h" +-#include "../udis86/udis86.h" ++#include + + #ifdef WX_GCH + #include diff --git a/editors/wxhexeditor/pkg-descr b/editors/wxhexeditor/pkg-descr new file mode 100644 index 00000000000..4348b65eab6 --- /dev/null +++ b/editors/wxhexeditor/pkg-descr @@ -0,0 +1,4 @@ +Advanced graphical (wxWidgets) hex editor focused on editing of very large +files and with x86 disassembly support. + +WWW: http://www.wxhexeditor.org/ diff --git a/editors/wxhexeditor/pkg-plist b/editors/wxhexeditor/pkg-plist new file mode 100644 index 00000000000..cff06673b1a --- /dev/null +++ b/editors/wxhexeditor/pkg-plist @@ -0,0 +1,18 @@ +bin/wxHexEditor +share/applications/wxHexEditor.desktop +share/locale/ar/LC_MESSAGES/wxHexEditor.mo +share/locale/cs/LC_MESSAGES/wxHexEditor.mo +share/locale/de/LC_MESSAGES/wxHexEditor.mo +share/locale/es/LC_MESSAGES/wxHexEditor.mo +share/locale/fr/LC_MESSAGES/wxHexEditor.mo +share/locale/hu/LC_MESSAGES/wxHexEditor.mo +share/locale/it/LC_MESSAGES/wxHexEditor.mo +share/locale/ja/LC_MESSAGES/wxHexEditor.mo +share/locale/nl/LC_MESSAGES/wxHexEditor.mo +share/locale/pl/LC_MESSAGES/wxHexEditor.mo +share/locale/pt_BR/LC_MESSAGES/wxHexEditor.mo +share/locale/ro/LC_MESSAGES/wxHexEditor.mo +share/locale/ru/LC_MESSAGES/wxHexEditor.mo +share/locale/tr/LC_MESSAGES/wxHexEditor.mo +share/locale/zh_CN/LC_MESSAGES/wxHexEditor.mo +share/pixmaps/wxHexEditor.png diff --git a/emulators/rpcs3/Makefile b/emulators/rpcs3/Makefile index bc269b46382..f1d2a91db51 100644 --- a/emulators/rpcs3/Makefile +++ b/emulators/rpcs3/Makefile @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.6-7796 # git rev-list --count HEAD -DISTVERSIONSUFFIX= -g982b2ab88 +DISTVERSION= 0.0.6-7800 # git rev-list --count HEAD +DISTVERSIONSUFFIX= -gd4888a497 CATEGORIES= emulators PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ diff --git a/emulators/rpcs3/distinfo b/emulators/rpcs3/distinfo index 8690aad9280..2be4ba5f52f 100644 --- a/emulators/rpcs3/distinfo +++ b/emulators/rpcs3/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1549913673 -SHA256 (RPCS3-rpcs3-v0.0.6-7796-g982b2ab88_GH0.tar.gz) = 0e9d1e4f3054a7c48c56841ce4f82717dfc5b6e8bd318a02f7a975f004bdf230 -SIZE (RPCS3-rpcs3-v0.0.6-7796-g982b2ab88_GH0.tar.gz) = 5251740 +TIMESTAMP = 1550012107 +SHA256 (RPCS3-rpcs3-v0.0.6-7800-gd4888a497_GH0.tar.gz) = cac3957f87cd87c32267a7e6462b73916529ea171c2500749380aaab896f8ca4 +SIZE (RPCS3-rpcs3-v0.0.6-7800-gd4888a497_GH0.tar.gz) = 5252755 SHA256 (RPCS3-hidapi-hidapi-0.8.0-rc1-27-g9220f5e_GH0.tar.gz) = 3120e0b701943f452760e45f9fc1ac50bab356ad4c807b4cac4598041c5ca1a5 SIZE (RPCS3-hidapi-hidapi-0.8.0-rc1-27-g9220f5e_GH0.tar.gz) = 105400 SHA256 (RPCS3-llvm-5c906fd1694e_GH0.tar.gz) = 8bbe95fbbea545ebb03e73d526add64e2853f86176ad42690f8ce5846bd419ce diff --git a/graphics/drm-current-kmod/Makefile b/graphics/drm-current-kmod/Makefile index 233ce4d8509..3d609d17d82 100644 --- a/graphics/drm-current-kmod/Makefile +++ b/graphics/drm-current-kmod/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drm-current-kmod -PORTVERSION= 4.16.g20181210 +PORTVERSION= 4.16.g20190213 CATEGORIES= graphics kld MAINTAINER= jmd@FreeBSD.org @@ -25,7 +25,7 @@ USES= kmod uidfix compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= FreeBSDDesktop GH_PROJECT= kms-drm -GH_TAGNAME= b5ef47b +GH_TAGNAME= 7f7f973 .include diff --git a/graphics/drm-current-kmod/distinfo b/graphics/drm-current-kmod/distinfo index b7e8c847600..2b2bfac376f 100644 --- a/graphics/drm-current-kmod/distinfo +++ b/graphics/drm-current-kmod/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1544500865 -SHA256 (FreeBSDDesktop-kms-drm-4.16.g20181210-b5ef47b_GH0.tar.gz) = 00e9204d48e4f72fb20587135cfe6ecb5719aa8c77274d44f77036073ecbe3e7 -SIZE (FreeBSDDesktop-kms-drm-4.16.g20181210-b5ef47b_GH0.tar.gz) = 13089381 +TIMESTAMP = 1550091521 +SHA256 (FreeBSDDesktop-kms-drm-4.16.g20190213-7f7f973_GH0.tar.gz) = 030d659c081b27896e8c68b56ca3587254480e357285dd576d82e8757d21ac44 +SIZE (FreeBSDDesktop-kms-drm-4.16.g20190213-7f7f973_GH0.tar.gz) = 13089561 diff --git a/graphics/drm-fbsd11.2-kmod/pkg-message b/graphics/drm-fbsd11.2-kmod/pkg-message index f406d554fe2..8b20db234f0 100644 --- a/graphics/drm-fbsd11.2-kmod/pkg-message +++ b/graphics/drm-fbsd11.2-kmod/pkg-message @@ -1,8 +1,8 @@ -The drm-stable-kmod port can be enabled for amdgpu (for AMD GPUs starting with -the HD7000 series / Tahiti) or i915kms (for Intel APUs starting with HD3000 / -Sandy Bridge) through kld_list in /etc/rc.conf. radeonkms for older AMD GPUs -can be loaded and there are some positive reports if EFI boot is NOT enabled -(similar to amdgpu). +The drm-fbsd11.2-kmod port can be enabled for amdgpu (for AMD GPUs starting +with the HD7000 series / Tahiti) or i915kms (for Intel APUs starting with +HD3000 / Sandy Bridge) through kld_list in /etc/rc.conf. radeonkms for older +AMD GPUs can be loaded and there are some positive reports if EFI boot is NOT +enabled (similar to amdgpu). For amdgpu: kld_list="amdgpu" For Intel: kld_list="/boot/modules/i915kms.ko" diff --git a/graphics/drm-fbsd12.0-kmod/Makefile b/graphics/drm-fbsd12.0-kmod/Makefile index 179c90397b4..06fdf2319be 100644 --- a/graphics/drm-fbsd12.0-kmod/Makefile +++ b/graphics/drm-fbsd12.0-kmod/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drm-fbsd12.0-kmod -PORTVERSION= 4.16.g20181215 +PORTVERSION= 4.16.g20190213 CATEGORIES= graphics MAINTAINER= jmd@FreeBSD.org @@ -25,7 +25,7 @@ USES= kmod uidfix compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= FreeBSDDesktop GH_PROJECT= kms-drm -GH_TAGNAME= 71fcc9f +GH_TAGNAME= a5516b9 .include diff --git a/graphics/drm-fbsd12.0-kmod/distinfo b/graphics/drm-fbsd12.0-kmod/distinfo index 9b40aecd0c8..50729ca84d0 100644 --- a/graphics/drm-fbsd12.0-kmod/distinfo +++ b/graphics/drm-fbsd12.0-kmod/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1544863688 -SHA256 (FreeBSDDesktop-kms-drm-4.16.g20181215-71fcc9f_GH0.tar.gz) = b969611bbdac88394e5e5be4284ceea048425b994d872651d801baf41263c0e7 -SIZE (FreeBSDDesktop-kms-drm-4.16.g20181215-71fcc9f_GH0.tar.gz) = 13088892 +TIMESTAMP = 1550091661 +SHA256 (FreeBSDDesktop-kms-drm-4.16.g20190213-a5516b9_GH0.tar.gz) = 016cad0ff16367d55818662a090d8635e37fc313872acc7b7a3c444f9e3ce038 +SIZE (FreeBSDDesktop-kms-drm-4.16.g20190213-a5516b9_GH0.tar.gz) = 13089363 diff --git a/graphics/drm-fbsd12.0-kmod/pkg-message b/graphics/drm-fbsd12.0-kmod/pkg-message index 6cab67843a2..589d0fadb21 100644 --- a/graphics/drm-fbsd12.0-kmod/pkg-message +++ b/graphics/drm-fbsd12.0-kmod/pkg-message @@ -1,8 +1,8 @@ -The drm-next-kmod port can be enabled for amdgpu (for AMD GPUs starting with -the HD7000 series / Tahiti) or i915kms (for Intel APUs starting with HD3000 / -Sandy Bridge) through kld_list in /etc/rc.conf. radeonkms for older AMD GPUs -can be loaded and there are some positive reports if EFI boot is NOT enabled -(similar to amdgpu). +The drm-fbsd12.0-kmod port can be enabled for amdgpu (for AMD GPUs starting +with the HD7000 series / Tahiti) or i915kms (for Intel APUs starting with +HD3000 / Sandy Bridge) through kld_list in /etc/rc.conf. radeonkms for older +AMD GPUs can be loaded and there are some positive reports if EFI boot is NOT +enabled (similar to amdgpu). For amdgpu: kld_list="amdgpu" For Intel: kld_list="/boot/modules/i915kms.ko" diff --git a/graphics/drm-legacy-kmod/Makefile b/graphics/drm-legacy-kmod/Makefile index f79d980cad4..ce8715a36b4 100644 --- a/graphics/drm-legacy-kmod/Makefile +++ b/graphics/drm-legacy-kmod/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= drm-legacy-kmod -PORTVERSION= g20190109 +PORTVERSION= g20190213 CATEGORIES= graphics MAINTAINER= jmd@FreeBSD.org @@ -22,7 +22,7 @@ CONFLICTS_INSTALL= drm-fbsd11.2-kmod drm-fbsd12.0-kmod drm-current-kmod USE_GITHUB= yes GH_ACCOUNT= FreeBSDDesktop GH_PROJECT= drm-legacy -GH_TAGNAME= 50ea058 +GH_TAGNAME= 3c8c990 .include diff --git a/graphics/drm-legacy-kmod/distinfo b/graphics/drm-legacy-kmod/distinfo index 30d4283e603..28b97d335ef 100644 --- a/graphics/drm-legacy-kmod/distinfo +++ b/graphics/drm-legacy-kmod/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1548274203 -SHA256 (FreeBSDDesktop-drm-legacy-g20190109-50ea058_GH0.tar.gz) = aec43a977d644c65cd1a59297d6d6fd0a8df085932ebc7e2feb1af0823d4fbfe -SIZE (FreeBSDDesktop-drm-legacy-g20190109-50ea058_GH0.tar.gz) = 1676264 +TIMESTAMP = 1550090570 +SHA256 (FreeBSDDesktop-drm-legacy-g20190213-3c8c990_GH0.tar.gz) = bee6fbf7ea6734accc4b7156269e01f324277af623017957d80ed6db9b6093e1 +SIZE (FreeBSDDesktop-drm-legacy-g20190213-3c8c990_GH0.tar.gz) = 1676332 diff --git a/graphics/reactphysics3d/Makefile b/graphics/reactphysics3d/Makefile index 4c1521c9c84..1365a54eeb5 100644 --- a/graphics/reactphysics3d/Makefile +++ b/graphics/reactphysics3d/Makefile @@ -11,7 +11,7 @@ COMMENT= C++ physics engine library in 3D LICENSE= ZLIB LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake +USES= cmake compiler:c++11-lang USE_GITHUB= yes GH_ACCOUNT= DanielChappuis GH_TAGNAME= f3be5384997da7ddeccc526036985a80de660bae # branch 'fix37' diff --git a/lang/gcc9-devel/Makefile b/lang/gcc9-devel/Makefile index da4b727c20c..72e69ddb653 100644 --- a/lang/gcc9-devel/Makefile +++ b/lang/gcc9-devel/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 9.0.1.s20190203 +PORTVERSION= 9.0.1.s20190210 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel diff --git a/lang/gcc9-devel/distinfo b/lang/gcc9-devel/distinfo index 29f5e0f89a9..18c0eaf0254 100644 --- a/lang/gcc9-devel/distinfo +++ b/lang/gcc9-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1549273281 -SHA256 (gcc-9-20190203.tar.xz) = 5db43c97616774cce95a81b74e549f92da29ac50014354bc784370707e4e8755 -SIZE (gcc-9-20190203.tar.xz) = 68250444 +TIMESTAMP = 1549868271 +SHA256 (gcc-9-20190210.tar.xz) = ec0bd1988576a34b4c45eff493fc73e89cfefb65986d1f41baa5d0e2df43c2e3 +SIZE (gcc-9-20190210.tar.xz) = 68312448 diff --git a/lang/opencoarrays/Makefile b/lang/opencoarrays/Makefile index 7d9ff445934..122064b8b93 100644 --- a/lang/opencoarrays/Makefile +++ b/lang/opencoarrays/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= opencoarrays -DISTVERSION= 2.2.0 -PORTREVISION= 3 +DISTVERSION= 2.3.1 CATEGORIES= lang parallel MAINTAINER= ports@FreeBSD.org diff --git a/lang/opencoarrays/distinfo b/lang/opencoarrays/distinfo index ddb9bd3e0e9..ab5a93b9a0a 100644 --- a/lang/opencoarrays/distinfo +++ b/lang/opencoarrays/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1534498916 -SHA256 (sourceryinstitute-OpenCoarrays-2.2.0_GH0.tar.gz) = e193630af09a196233e68f4ac22349f9266507f19705a8de8a8350abd7009b87 -SIZE (sourceryinstitute-OpenCoarrays-2.2.0_GH0.tar.gz) = 314118 +TIMESTAMP = 1549999421 +SHA256 (sourceryinstitute-OpenCoarrays-2.3.1_GH0.tar.gz) = 5bb74d0aa4aa39de1910e1154064cfc649ced731da682c257f4b8802c187f25f +SIZE (sourceryinstitute-OpenCoarrays-2.3.1_GH0.tar.gz) = 313995 diff --git a/lang/rust-nightly/Makefile b/lang/rust-nightly/Makefile index aee91293ac8..6ba2fbfb431 100644 --- a/lang/rust-nightly/Makefile +++ b/lang/rust-nightly/Makefile @@ -14,7 +14,7 @@ CONFLICTS_INSTALL= rust # Which source to pull: # https://static.rust-lang.org/dist/${NIGHTLY_DATE}/rustc-nightly-src.tar.gz # https://static.rust-lang.org/dist/channel-rust-nightly.toml -NIGHTLY_DATE= 2019-02-12 +NIGHTLY_DATE= 2019-02-14 NIGHTLY_SUBDIR= ${NIGHTLY_DATE}/ # See WRKSRC/src/stage0.txt for this date diff --git a/lang/rust-nightly/distinfo b/lang/rust-nightly/distinfo index d5921c298c4..ab45ff14bf5 100644 --- a/lang/rust-nightly/distinfo +++ b/lang/rust-nightly/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1549887074 -SHA256 (rust/2019-02-12/rustc-nightly-src.tar.xz) = 3ba65519ffbe72818d2c4f02433b49638ded4cb4da07e4d40c7e39b2a3e4ac66 -SIZE (rust/2019-02-12/rustc-nightly-src.tar.xz) = 93916720 +TIMESTAMP = 1550068385 +SHA256 (rust/2019-02-14/rustc-nightly-src.tar.xz) = 24e3a88090b5681ae74a977e7436449d1751db6e5e7c789e61eff42278daa449 +SIZE (rust/2019-02-14/rustc-nightly-src.tar.xz) = 93937500 SHA256 (rust/2019-01-18/rustc-beta-x86_64-unknown-freebsd.tar.gz) = 0bce3c84e70f44497625ab844308775d0331d6717bb75f1e7ab2385cd38bdd00 SIZE (rust/2019-01-18/rustc-beta-x86_64-unknown-freebsd.tar.gz) = 74800139 SHA256 (rust/2019-01-18/rust-std-beta-x86_64-unknown-freebsd.tar.gz) = 98c135ad67ba8814869be04244440dd1edb6efff661d15c01300b785dd4af287 diff --git a/mail/p5-Mail-Message/Makefile b/mail/p5-Mail-Message/Makefile index 3876a3f3dd9..d6d5c51bd0c 100644 --- a/mail/p5-Mail-Message/Makefile +++ b/mail/p5-Mail-Message/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Mail-Message -PORTVERSION= 3.007 +PORTVERSION= 3.008 CATEGORIES= mail perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- diff --git a/mail/p5-Mail-Message/distinfo b/mail/p5-Mail-Message/distinfo index 2f1b8670056..c78543903e7 100644 --- a/mail/p5-Mail-Message/distinfo +++ b/mail/p5-Mail-Message/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1537133905 -SHA256 (Mail-Message-3.007.tar.gz) = 7601dc5d1bedc0b6338b8b8c0ce5360aa75e112cbc48bc22eb0d085e2232eec2 -SIZE (Mail-Message-3.007.tar.gz) = 257554 +TIMESTAMP = 1550093405 +SHA256 (Mail-Message-3.008.tar.gz) = 6e1819dfa1d94a1898fc3b354849b839f94b1742bef40ef6fa182b914d4a6dcc +SIZE (Mail-Message-3.008.tar.gz) = 257743 diff --git a/mail/thunderbird-i18n/Makefile b/mail/thunderbird-i18n/Makefile index 307181f5ec8..307f84427c7 100644 --- a/mail/thunderbird-i18n/Makefile +++ b/mail/thunderbird-i18n/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird-i18n -PORTVERSION= 60.5.0 +PORTVERSION= 60.5.1 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-x86_64/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build2/linux-x86_64/xpi diff --git a/mail/thunderbird-i18n/distinfo b/mail/thunderbird-i18n/distinfo index 2b513ee69f0..0aa149853f2 100644 --- a/mail/thunderbird-i18n/distinfo +++ b/mail/thunderbird-i18n/distinfo @@ -1,117 +1,117 @@ -TIMESTAMP = 1548238106 -SHA256 (xpi/thunderbird-i18n-60.5.0/ar.xpi) = 396a13fc6535a68fb1c0f754243b220f6bcfec2a186a5567b9369147ff3975d0 -SIZE (xpi/thunderbird-i18n-60.5.0/ar.xpi) = 627179 -SHA256 (xpi/thunderbird-i18n-60.5.0/ast.xpi) = 7563dbb731f7ea8f9a13dbec1f3a295fc89839fe484b6a2fda57be6eec5e2ce2 -SIZE (xpi/thunderbird-i18n-60.5.0/ast.xpi) = 559643 -SHA256 (xpi/thunderbird-i18n-60.5.0/be.xpi) = a098bc35e3703e422ed548883216d534b8aef0ef47a446aa2acd6955b0fdac29 -SIZE (xpi/thunderbird-i18n-60.5.0/be.xpi) = 659079 -SHA256 (xpi/thunderbird-i18n-60.5.0/bg.xpi) = 647d26bf395c3f885617f1a970ea67e1436ae266d0d9c8b089490e1e12afb1ac -SIZE (xpi/thunderbird-i18n-60.5.0/bg.xpi) = 669318 -SHA256 (xpi/thunderbird-i18n-60.5.0/br.xpi) = 75c2b8578e5cc30035b9f6faad4feab1c43d83a1ed95ec45c9f4d8ab0bfd0c4b -SIZE (xpi/thunderbird-i18n-60.5.0/br.xpi) = 580371 -SHA256 (xpi/thunderbird-i18n-60.5.0/ca.xpi) = d9e87182418d6c89ba332a4e78078f81e9aac14fe0abce255b673122c0735f71 -SIZE (xpi/thunderbird-i18n-60.5.0/ca.xpi) = 591971 -SHA256 (xpi/thunderbird-i18n-60.5.0/cs.xpi) = 1dc5fd93a43b997adb28fc7ac24ba1a25e040d02ebd7a7978f8d6bce318f22e0 -SIZE (xpi/thunderbird-i18n-60.5.0/cs.xpi) = 611203 -SHA256 (xpi/thunderbird-i18n-60.5.0/cy.xpi) = 6039174a0c761416ef49f0face6f88b4d79a49fa56c4bb473bb5cee750a3e208 -SIZE (xpi/thunderbird-i18n-60.5.0/cy.xpi) = 586038 -SHA256 (xpi/thunderbird-i18n-60.5.0/da.xpi) = 4d515134ef90ff95523ff687088bebcacec23ed8fbe4f6d616b68ae0710f249a -SIZE (xpi/thunderbird-i18n-60.5.0/da.xpi) = 570807 -SHA256 (xpi/thunderbird-i18n-60.5.0/de.xpi) = 1664dd8842851d29647dbb1fcfa4ecafb9501b5ab358302bcbacb77cab634559 -SIZE (xpi/thunderbird-i18n-60.5.0/de.xpi) = 582575 -SHA256 (xpi/thunderbird-i18n-60.5.0/dsb.xpi) = e0f34880b25f7d1e361dc8b502405918a51d402d0c14370f863259d5609bd6d5 -SIZE (xpi/thunderbird-i18n-60.5.0/dsb.xpi) = 617569 -SHA256 (xpi/thunderbird-i18n-60.5.0/el.xpi) = 510d046f3bb350a7d5847834d37fa3895209df1d2bf609dd826af594404e2e53 -SIZE (xpi/thunderbird-i18n-60.5.0/el.xpi) = 694860 -SHA256 (xpi/thunderbird-i18n-60.5.0/en-GB.xpi) = e8fa1a81c509b42e630a0d51eef58b0f027b6a9a6b648cfabb407cd4e1ef5d15 -SIZE (xpi/thunderbird-i18n-60.5.0/en-GB.xpi) = 553895 -SHA256 (xpi/thunderbird-i18n-60.5.0/en-US.xpi) = 6bd4ee055fa3c7dc6b2756220b4cc192ff4c2b1509662fc02bbbbd77d83276d1 -SIZE (xpi/thunderbird-i18n-60.5.0/en-US.xpi) = 550807 -SHA256 (xpi/thunderbird-i18n-60.5.0/es-AR.xpi) = f31f9ddd6f2bd7f14b7ba660dca44a44d1ce63f6b696fcf3402de508a44fdf84 -SIZE (xpi/thunderbird-i18n-60.5.0/es-AR.xpi) = 595048 -SHA256 (xpi/thunderbird-i18n-60.5.0/es-ES.xpi) = f328d5a6e0e3c155da02acb7f22264941f85991b587c8c73554eba4bc0ec6658 -SIZE (xpi/thunderbird-i18n-60.5.0/es-ES.xpi) = 492211 -SHA256 (xpi/thunderbird-i18n-60.5.0/et.xpi) = 68329563dc48cc899007d846d1d1c78bc4690d54955e2e377ac204284aa3a4fc -SIZE (xpi/thunderbird-i18n-60.5.0/et.xpi) = 570867 -SHA256 (xpi/thunderbird-i18n-60.5.0/eu.xpi) = 96c124681a083f7d44a1a27fe8cabd287b73152a0aba324ecc89c099f07ebe2b -SIZE (xpi/thunderbird-i18n-60.5.0/eu.xpi) = 581384 -SHA256 (xpi/thunderbird-i18n-60.5.0/fi.xpi) = 2fbc3ebbeda7770dad1031056dd8568decc68e92041043c2fa537580d68be3b6 -SIZE (xpi/thunderbird-i18n-60.5.0/fi.xpi) = 575755 -SHA256 (xpi/thunderbird-i18n-60.5.0/fr.xpi) = 8b7e334e832ca60dc5f5972df0e070a0bc64aa3d21f9f4fd4a0a4fb09eab68a7 -SIZE (xpi/thunderbird-i18n-60.5.0/fr.xpi) = 608467 -SHA256 (xpi/thunderbird-i18n-60.5.0/fy-NL.xpi) = d4e058e7449baaa68a87f6147081ab849134e3c487c5a46ebe874ee769f380f5 -SIZE (xpi/thunderbird-i18n-60.5.0/fy-NL.xpi) = 593851 -SHA256 (xpi/thunderbird-i18n-60.5.0/ga-IE.xpi) = 565c05ad8e1841c06571e9877d7e1dbdd0d3b2dcb7caecdd525cb24684e1ee7c -SIZE (xpi/thunderbird-i18n-60.5.0/ga-IE.xpi) = 603506 -SHA256 (xpi/thunderbird-i18n-60.5.0/gd.xpi) = 6526a9b5e70600234a5bce76548fc8aa30bfabb4bab081991a0ec28f375e11ef -SIZE (xpi/thunderbird-i18n-60.5.0/gd.xpi) = 599262 -SHA256 (xpi/thunderbird-i18n-60.5.0/gl.xpi) = bc3ae2e961b058a37e5977ec23d1a3636c1547f424b913680b01b312e31c2eb8 -SIZE (xpi/thunderbird-i18n-60.5.0/gl.xpi) = 580353 -SHA256 (xpi/thunderbird-i18n-60.5.0/he.xpi) = fb735a51a263d7c12624b106b4b11afe55b4192b6c3752cd5a3de10f0ea4589b -SIZE (xpi/thunderbird-i18n-60.5.0/he.xpi) = 617144 -SHA256 (xpi/thunderbird-i18n-60.5.0/hr.xpi) = 46ab5cd64c814a6f8f930539e7757ec6d859c652c121be09f7d0984e15feb945 -SIZE (xpi/thunderbird-i18n-60.5.0/hr.xpi) = 582238 -SHA256 (xpi/thunderbird-i18n-60.5.0/hsb.xpi) = 58dfbff6977c8c0144c4bf9a40d60915b248620c391c9a814ad53825ced57daf -SIZE (xpi/thunderbird-i18n-60.5.0/hsb.xpi) = 615132 -SHA256 (xpi/thunderbird-i18n-60.5.0/hu.xpi) = bb5ded142be6f62c0aeac040d7720fd12558ae5b2cf1c62cfb4de10a507cd97a -SIZE (xpi/thunderbird-i18n-60.5.0/hu.xpi) = 615346 -SHA256 (xpi/thunderbird-i18n-60.5.0/hy-AM.xpi) = 0cae5f9e6e9ba0317a508335bfe430ae1efc4ec259c8c535373a6b1004801ab6 -SIZE (xpi/thunderbird-i18n-60.5.0/hy-AM.xpi) = 653530 -SHA256 (xpi/thunderbird-i18n-60.5.0/id.xpi) = f0b0710ba277f373bdfff2c161ca97300fc773c400f0505430ba9a2163a511e5 -SIZE (xpi/thunderbird-i18n-60.5.0/id.xpi) = 568861 -SHA256 (xpi/thunderbird-i18n-60.5.0/is.xpi) = 40781ed3bbf9af0bbff1c2a144c101505192480e49f599d69af19aadc9cbee38 -SIZE (xpi/thunderbird-i18n-60.5.0/is.xpi) = 579047 -SHA256 (xpi/thunderbird-i18n-60.5.0/it.xpi) = 22803ad551daed6a6101b2c856a79386240a4fceeb4160e83dcde0c0e2944d06 -SIZE (xpi/thunderbird-i18n-60.5.0/it.xpi) = 477500 -SHA256 (xpi/thunderbird-i18n-60.5.0/ja.xpi) = 3bb74a119f76062428ba889723e6e878dabed760757a90bb247ec19d1ce58e0e -SIZE (xpi/thunderbird-i18n-60.5.0/ja.xpi) = 653342 -SHA256 (xpi/thunderbird-i18n-60.5.0/kab.xpi) = f04752503fa8884e6aa814977b7ddbf1651378fe9f971553a1d6f258da032a1b -SIZE (xpi/thunderbird-i18n-60.5.0/kab.xpi) = 594016 -SHA256 (xpi/thunderbird-i18n-60.5.0/kk.xpi) = c62955e2fc253b1f7a685089dc399317d8889680144cb804a20dd2e1b56a962a -SIZE (xpi/thunderbird-i18n-60.5.0/kk.xpi) = 669231 -SHA256 (xpi/thunderbird-i18n-60.5.0/ko.xpi) = bd8c8e5000ffd97577a74f3866489bc941e02d4a98b8543233821b334b215191 -SIZE (xpi/thunderbird-i18n-60.5.0/ko.xpi) = 619730 -SHA256 (xpi/thunderbird-i18n-60.5.0/lt.xpi) = 5d51778174d5043fb79d2339afa3952934bddd1c29020a1256e6e14e0b8ad9af -SIZE (xpi/thunderbird-i18n-60.5.0/lt.xpi) = 605441 -SHA256 (xpi/thunderbird-i18n-60.5.0/ms.xpi) = 715cb9b93e28839c5f939952a0c6929f5b11bbe294ffc7ef82c5f1f5146f75ab -SIZE (xpi/thunderbird-i18n-60.5.0/ms.xpi) = 574307 -SHA256 (xpi/thunderbird-i18n-60.5.0/nb-NO.xpi) = 1c8bb1cedbfd2a297f11947b1b99bef28690e26d33be826a55e04efa3c3f4611 -SIZE (xpi/thunderbird-i18n-60.5.0/nb-NO.xpi) = 577003 -SHA256 (xpi/thunderbird-i18n-60.5.0/nl.xpi) = 830b93c1afad284e406f12df76f5fe5fb011fdafbd4ce9f10e44284a5a4a1fc5 -SIZE (xpi/thunderbird-i18n-60.5.0/nl.xpi) = 583914 -SHA256 (xpi/thunderbird-i18n-60.5.0/nn-NO.xpi) = a33c9e8b7dcffeb1702b12c25c6a719096d65d69dc85877c066a35babb4b2824 -SIZE (xpi/thunderbird-i18n-60.5.0/nn-NO.xpi) = 576422 -SHA256 (xpi/thunderbird-i18n-60.5.0/pl.xpi) = 1a5b60e65adfb3f4024d25165e3e864ffb210166e61dff47bb9abdbea2b99dcb -SIZE (xpi/thunderbird-i18n-60.5.0/pl.xpi) = 480725 -SHA256 (xpi/thunderbird-i18n-60.5.0/pt-BR.xpi) = 8fbbb1022f49ca9fce1aa1481afff4ed377d1281e9da3d3a3f51faf42b4ab0b0 -SIZE (xpi/thunderbird-i18n-60.5.0/pt-BR.xpi) = 588834 -SHA256 (xpi/thunderbird-i18n-60.5.0/pt-PT.xpi) = b7f8f9e440778e3a19929ce6f04c98af905767b888a87380a108b28f8455426f -SIZE (xpi/thunderbird-i18n-60.5.0/pt-PT.xpi) = 593186 -SHA256 (xpi/thunderbird-i18n-60.5.0/rm.xpi) = b8de1432cb2440d07ed0624367dca3629f0494dd6a5f3052c7f7e5b6df715c54 -SIZE (xpi/thunderbird-i18n-60.5.0/rm.xpi) = 578384 -SHA256 (xpi/thunderbird-i18n-60.5.0/ro.xpi) = 03e25d7e493d13f156e75885dd5adc4686202d01976750c433169f3ba2bbdf62 -SIZE (xpi/thunderbird-i18n-60.5.0/ro.xpi) = 584308 -SHA256 (xpi/thunderbird-i18n-60.5.0/ru.xpi) = 2b4398c00a09d7a1a306933d25fced39bbc73b1455ff816f7a288aae70b8bcc5 -SIZE (xpi/thunderbird-i18n-60.5.0/ru.xpi) = 694705 -SHA256 (xpi/thunderbird-i18n-60.5.0/si.xpi) = bd82a180d5f2081505a3ff8c09de9936511d1d616e9947c913c5d45ae0105ca4 -SIZE (xpi/thunderbird-i18n-60.5.0/si.xpi) = 647596 -SHA256 (xpi/thunderbird-i18n-60.5.0/sk.xpi) = 26901d561b82c040e733fe061829c9d688b4869cf4ff5dcda3d84b3e1178a0a5 -SIZE (xpi/thunderbird-i18n-60.5.0/sk.xpi) = 612216 -SHA256 (xpi/thunderbird-i18n-60.5.0/sl.xpi) = 202dfacbe227291e69e81ff96540aac1e3444209d62b083c172fc23c72d54ee2 -SIZE (xpi/thunderbird-i18n-60.5.0/sl.xpi) = 589947 -SHA256 (xpi/thunderbird-i18n-60.5.0/sq.xpi) = 82fc6083998e6362b0bfc8e263edad82346463a226eddc6b04bcf7fb380b6788 -SIZE (xpi/thunderbird-i18n-60.5.0/sq.xpi) = 593096 -SHA256 (xpi/thunderbird-i18n-60.5.0/sr.xpi) = dc931da27dda3502cd22abf0837afaecda15160476758e5e2aa194d517bb463f -SIZE (xpi/thunderbird-i18n-60.5.0/sr.xpi) = 641527 -SHA256 (xpi/thunderbird-i18n-60.5.0/sv-SE.xpi) = f1be900c89ec7b88b7b3511360729b0b237d01f10d26aaad2857a8f9d295bc9b -SIZE (xpi/thunderbird-i18n-60.5.0/sv-SE.xpi) = 594079 -SHA256 (xpi/thunderbird-i18n-60.5.0/tr.xpi) = c1a1b0135c22ab60c2a6542fb1571413e9d78d5a70a4efa57e798b6998381971 -SIZE (xpi/thunderbird-i18n-60.5.0/tr.xpi) = 598010 -SHA256 (xpi/thunderbird-i18n-60.5.0/uk.xpi) = a3e95424e17a6b370c510aba63ee49521beddb7b843971e540b2ae7e7785747f -SIZE (xpi/thunderbird-i18n-60.5.0/uk.xpi) = 684154 -SHA256 (xpi/thunderbird-i18n-60.5.0/vi.xpi) = 24367d6109f0e0a996e3623e15aaa75a84a8373b7a025edf7e84e8f56421b315 -SIZE (xpi/thunderbird-i18n-60.5.0/vi.xpi) = 637199 -SHA256 (xpi/thunderbird-i18n-60.5.0/zh-CN.xpi) = ccb35f028c1741133ba6449858fd543fc9fad93d17c1887df55dd5e751f2799f -SIZE (xpi/thunderbird-i18n-60.5.0/zh-CN.xpi) = 626283 -SHA256 (xpi/thunderbird-i18n-60.5.0/zh-TW.xpi) = 08ce589a9ee4e41ab1d23338dcc9758b6eb866cfdf27cee44e6cfa7fbc460c59 -SIZE (xpi/thunderbird-i18n-60.5.0/zh-TW.xpi) = 626190 +TIMESTAMP = 1550067615 +SHA256 (xpi/thunderbird-i18n-60.5.1/ar.xpi) = 48a9486f2a8d9cf752a70a40415f945cbc98c399271610b31ffcc611a484b822 +SIZE (xpi/thunderbird-i18n-60.5.1/ar.xpi) = 627181 +SHA256 (xpi/thunderbird-i18n-60.5.1/ast.xpi) = 79fe80b9f3ae69b9be3544b995b3dad0bb4a5d3cc61a6746b0842f2832d76e67 +SIZE (xpi/thunderbird-i18n-60.5.1/ast.xpi) = 559643 +SHA256 (xpi/thunderbird-i18n-60.5.1/be.xpi) = e769773144ee1b307d1a470e41b7cd316a183d4693b5133c4dcb16bcb14e159c +SIZE (xpi/thunderbird-i18n-60.5.1/be.xpi) = 659080 +SHA256 (xpi/thunderbird-i18n-60.5.1/bg.xpi) = d2c2f3d581e3933ff031046c2e53dab634fdbacd1c97dbb6ad0cb46f6632d3a9 +SIZE (xpi/thunderbird-i18n-60.5.1/bg.xpi) = 669318 +SHA256 (xpi/thunderbird-i18n-60.5.1/br.xpi) = 5905973fc8a9b7ee7b62eeddb4713541f7d2de3c1c0a6df6dac17af2be25e77e +SIZE (xpi/thunderbird-i18n-60.5.1/br.xpi) = 580371 +SHA256 (xpi/thunderbird-i18n-60.5.1/ca.xpi) = f358dea9a8b3130d435d7368841ec1b86e2e5886c45585f0c092c5457a2eeed8 +SIZE (xpi/thunderbird-i18n-60.5.1/ca.xpi) = 591972 +SHA256 (xpi/thunderbird-i18n-60.5.1/cs.xpi) = c213b4776ff91b5bfeecb4eb6d4b9196f1bde6730de4d41cda18ae21fe8e7753 +SIZE (xpi/thunderbird-i18n-60.5.1/cs.xpi) = 611203 +SHA256 (xpi/thunderbird-i18n-60.5.1/cy.xpi) = 474ae008a29e915a6ad616b2df903d8de7d22c10a454c3c274c594f770552508 +SIZE (xpi/thunderbird-i18n-60.5.1/cy.xpi) = 586038 +SHA256 (xpi/thunderbird-i18n-60.5.1/da.xpi) = 407eec30bf0517aa3367297bcffa83343242c4cfd4008a13db0a33436d2e1f6c +SIZE (xpi/thunderbird-i18n-60.5.1/da.xpi) = 570807 +SHA256 (xpi/thunderbird-i18n-60.5.1/de.xpi) = 04f30e489da7b3b0f597cad5643da66b416854101e038b1ea0406b54aafe2e85 +SIZE (xpi/thunderbird-i18n-60.5.1/de.xpi) = 582576 +SHA256 (xpi/thunderbird-i18n-60.5.1/dsb.xpi) = b1fc40715e4afad34fe9af1cee47915826e81462b7404c63ae12dbee5b43e640 +SIZE (xpi/thunderbird-i18n-60.5.1/dsb.xpi) = 617569 +SHA256 (xpi/thunderbird-i18n-60.5.1/el.xpi) = c7ea945ac0d7ee85704e99e8341df1660eebda07264828827fdb227fb56dd1d8 +SIZE (xpi/thunderbird-i18n-60.5.1/el.xpi) = 694861 +SHA256 (xpi/thunderbird-i18n-60.5.1/en-GB.xpi) = 7ba2c508a7950fd288fa33e6844ea683da3c742679958c36f2df162ea041430b +SIZE (xpi/thunderbird-i18n-60.5.1/en-GB.xpi) = 553896 +SHA256 (xpi/thunderbird-i18n-60.5.1/en-US.xpi) = 4e2e8e91cb2378914b4b2261c3115f0796eb9b8e76c6afbc06f682d99fd80ca0 +SIZE (xpi/thunderbird-i18n-60.5.1/en-US.xpi) = 550810 +SHA256 (xpi/thunderbird-i18n-60.5.1/es-AR.xpi) = 8a4744a1fd5904cf4604112f0fd954fedfb8115da7de5a74717574be50edc40f +SIZE (xpi/thunderbird-i18n-60.5.1/es-AR.xpi) = 595049 +SHA256 (xpi/thunderbird-i18n-60.5.1/es-ES.xpi) = 447bab400fb9608acfd40af97ea10f39c17ce3f00bf76dd17234c1a0a5df3603 +SIZE (xpi/thunderbird-i18n-60.5.1/es-ES.xpi) = 492212 +SHA256 (xpi/thunderbird-i18n-60.5.1/et.xpi) = dd5107728763963f5f45ef947f1d2688fd14db26f1130a5b3c25ff5542777834 +SIZE (xpi/thunderbird-i18n-60.5.1/et.xpi) = 570867 +SHA256 (xpi/thunderbird-i18n-60.5.1/eu.xpi) = 87a4eec31c303aba7cf8bcfbcdb0e56df96114559d7838d1a42affb5c05c7169 +SIZE (xpi/thunderbird-i18n-60.5.1/eu.xpi) = 581384 +SHA256 (xpi/thunderbird-i18n-60.5.1/fi.xpi) = ff0e70b4db354b37c4e566d5f61bfc5cdd66c9213ad1a81997fd1033af93e4f5 +SIZE (xpi/thunderbird-i18n-60.5.1/fi.xpi) = 575756 +SHA256 (xpi/thunderbird-i18n-60.5.1/fr.xpi) = ddf27da78bbc2770d542c177870b18452e640d810d66a74b48ce8965bbe3acc4 +SIZE (xpi/thunderbird-i18n-60.5.1/fr.xpi) = 608467 +SHA256 (xpi/thunderbird-i18n-60.5.1/fy-NL.xpi) = afe0fe699bd7c269a12322429b73c2385bd19f640febe6689c4cacba0f1df6da +SIZE (xpi/thunderbird-i18n-60.5.1/fy-NL.xpi) = 593851 +SHA256 (xpi/thunderbird-i18n-60.5.1/ga-IE.xpi) = 118049e259753a1e4e20abb5570822e00e23301512dc357dbad4509a0ece7467 +SIZE (xpi/thunderbird-i18n-60.5.1/ga-IE.xpi) = 603506 +SHA256 (xpi/thunderbird-i18n-60.5.1/gd.xpi) = fc827de7a9e15c7b1558c4fdfdc462969a22e65cbd0fa74836e38ce4f0f761a6 +SIZE (xpi/thunderbird-i18n-60.5.1/gd.xpi) = 599262 +SHA256 (xpi/thunderbird-i18n-60.5.1/gl.xpi) = 4b49991186cd7b14bf3ea79180d53864d25f47637e0aef626be4418792ef1dc9 +SIZE (xpi/thunderbird-i18n-60.5.1/gl.xpi) = 580353 +SHA256 (xpi/thunderbird-i18n-60.5.1/he.xpi) = 24b44537ae355304f162d2759a7cb538d7ba685e5ec18fa07c3ed6733766f2ef +SIZE (xpi/thunderbird-i18n-60.5.1/he.xpi) = 617143 +SHA256 (xpi/thunderbird-i18n-60.5.1/hr.xpi) = 179caa7e0f5815d17ba720833e9d2064e84dbf7be41831421d5b3555bea700d0 +SIZE (xpi/thunderbird-i18n-60.5.1/hr.xpi) = 582239 +SHA256 (xpi/thunderbird-i18n-60.5.1/hsb.xpi) = 06de85242b20a5512cbace871d7fec081d0f1193ddbaff057c94bc6c49a324d6 +SIZE (xpi/thunderbird-i18n-60.5.1/hsb.xpi) = 615132 +SHA256 (xpi/thunderbird-i18n-60.5.1/hu.xpi) = 675005041e067f5674f3db5b8fe91df621b43df432ce783f0acbfa96ea5ee89d +SIZE (xpi/thunderbird-i18n-60.5.1/hu.xpi) = 615347 +SHA256 (xpi/thunderbird-i18n-60.5.1/hy-AM.xpi) = 64891576a55b26890a8c7f53576f90e94e28dd016fe08f6d58ad39397959b9ed +SIZE (xpi/thunderbird-i18n-60.5.1/hy-AM.xpi) = 653531 +SHA256 (xpi/thunderbird-i18n-60.5.1/id.xpi) = 576828494f607915fee9ae3594b2c01604bd13f507c3089bff900daa99a4aaf0 +SIZE (xpi/thunderbird-i18n-60.5.1/id.xpi) = 568862 +SHA256 (xpi/thunderbird-i18n-60.5.1/is.xpi) = 70bda724d95677b895da841ed8f906e45f3b0cefed7aa0ffbfd3fded4e795b00 +SIZE (xpi/thunderbird-i18n-60.5.1/is.xpi) = 579048 +SHA256 (xpi/thunderbird-i18n-60.5.1/it.xpi) = 2b20a1a613088994fc8e6e54416471bca7d1ff50acea91bff2929b4c19e9a930 +SIZE (xpi/thunderbird-i18n-60.5.1/it.xpi) = 477501 +SHA256 (xpi/thunderbird-i18n-60.5.1/ja.xpi) = c280005ade853a070e94a4a011a27dc8e1f8bee224296092b0d08b4e1e02f9e2 +SIZE (xpi/thunderbird-i18n-60.5.1/ja.xpi) = 653345 +SHA256 (xpi/thunderbird-i18n-60.5.1/kab.xpi) = 27da88697b6afaaef4bbe8bbc3dcc583098c7b7ab49d721395aa06758ab79c8c +SIZE (xpi/thunderbird-i18n-60.5.1/kab.xpi) = 594015 +SHA256 (xpi/thunderbird-i18n-60.5.1/kk.xpi) = c96967983a33e4cc68f833da49fe61e04455ec2d17e8f13142e8ceeadf0bdc5b +SIZE (xpi/thunderbird-i18n-60.5.1/kk.xpi) = 669230 +SHA256 (xpi/thunderbird-i18n-60.5.1/ko.xpi) = 3a72e20cacb168cb408edd6268bdb3b03cc46a02ca9bb4684a5d1750c8f7d284 +SIZE (xpi/thunderbird-i18n-60.5.1/ko.xpi) = 619731 +SHA256 (xpi/thunderbird-i18n-60.5.1/lt.xpi) = a0dbdd8af474b72fcbdbd2b4e5e5d0c86e5ca76acc1f10c8f2de70c2c3fa21a0 +SIZE (xpi/thunderbird-i18n-60.5.1/lt.xpi) = 605441 +SHA256 (xpi/thunderbird-i18n-60.5.1/ms.xpi) = 11a32a57c474cae558c30d8cd12a0d0c0940465cb62e0255fe4448afd8b5da00 +SIZE (xpi/thunderbird-i18n-60.5.1/ms.xpi) = 574308 +SHA256 (xpi/thunderbird-i18n-60.5.1/nb-NO.xpi) = 8b90d33d6a270cfc36e646401625be1e9b3423c11a215ac79d9ec8de2fbe80e7 +SIZE (xpi/thunderbird-i18n-60.5.1/nb-NO.xpi) = 577002 +SHA256 (xpi/thunderbird-i18n-60.5.1/nl.xpi) = c503676ed6ef3bc1e9a62eb1de8a3d22703317df2ac8b6efbdd8afa6528a210e +SIZE (xpi/thunderbird-i18n-60.5.1/nl.xpi) = 583914 +SHA256 (xpi/thunderbird-i18n-60.5.1/nn-NO.xpi) = 6c6faf6c90d36d0eaeb062b21c4f5ab6a6a917cc359986bafda6ef45b50699fe +SIZE (xpi/thunderbird-i18n-60.5.1/nn-NO.xpi) = 576423 +SHA256 (xpi/thunderbird-i18n-60.5.1/pl.xpi) = ba550898b6d0fa4eb15560186825a9bb47ada5106a0588477b9c5e6f7c5547b3 +SIZE (xpi/thunderbird-i18n-60.5.1/pl.xpi) = 480726 +SHA256 (xpi/thunderbird-i18n-60.5.1/pt-BR.xpi) = a94b1a6596588b27cb1bd86c64c02e12241d5dea4ade5f60c277bf0d3e50d27c +SIZE (xpi/thunderbird-i18n-60.5.1/pt-BR.xpi) = 588835 +SHA256 (xpi/thunderbird-i18n-60.5.1/pt-PT.xpi) = 55a4342b37692cf9ee5ae0852180e0cbdd5d8193e10c3a47743293d84928cfb2 +SIZE (xpi/thunderbird-i18n-60.5.1/pt-PT.xpi) = 593186 +SHA256 (xpi/thunderbird-i18n-60.5.1/rm.xpi) = 90d0e971b0570e06ef6c46fdd0030ffb4f24eeb3e8c3ab59ffccc3758e206549 +SIZE (xpi/thunderbird-i18n-60.5.1/rm.xpi) = 578385 +SHA256 (xpi/thunderbird-i18n-60.5.1/ro.xpi) = 2e34027286e0e752fad4029a8db7ff152d4fe1205c6124c785ea2d15d9f2cb37 +SIZE (xpi/thunderbird-i18n-60.5.1/ro.xpi) = 584309 +SHA256 (xpi/thunderbird-i18n-60.5.1/ru.xpi) = 4c7f96e2179f79bb9bea6aa006f02db96ec06ed0fa1679093f9916733728210c +SIZE (xpi/thunderbird-i18n-60.5.1/ru.xpi) = 694705 +SHA256 (xpi/thunderbird-i18n-60.5.1/si.xpi) = 92290a50a89931f20b7a42a7a82115b6031d3ab6427a9de9348bc51572f08053 +SIZE (xpi/thunderbird-i18n-60.5.1/si.xpi) = 647597 +SHA256 (xpi/thunderbird-i18n-60.5.1/sk.xpi) = 8d613384ffc8a38d492bad5122f3b7ca17f39f061f5dfb55f878877b85287eae +SIZE (xpi/thunderbird-i18n-60.5.1/sk.xpi) = 612217 +SHA256 (xpi/thunderbird-i18n-60.5.1/sl.xpi) = c8bc3624c77fd89d46ea9af56e2afd0e3815ba51dfe20f5279b1f9c4b52875af +SIZE (xpi/thunderbird-i18n-60.5.1/sl.xpi) = 589947 +SHA256 (xpi/thunderbird-i18n-60.5.1/sq.xpi) = 3e17bc58bc4e63e9a7130b4a7fb5c217dc12f2a42da5aef5ace7a2127b418fa1 +SIZE (xpi/thunderbird-i18n-60.5.1/sq.xpi) = 593095 +SHA256 (xpi/thunderbird-i18n-60.5.1/sr.xpi) = 3f4b819a9f00c9fe464e1b5490c53feb9ec6262db186d7fb07ed2db1e75a5b68 +SIZE (xpi/thunderbird-i18n-60.5.1/sr.xpi) = 641527 +SHA256 (xpi/thunderbird-i18n-60.5.1/sv-SE.xpi) = ab6920d5215c990960123fcb3edfcc53c5aaed4db0a4b8ca03a28a8e15779f67 +SIZE (xpi/thunderbird-i18n-60.5.1/sv-SE.xpi) = 594079 +SHA256 (xpi/thunderbird-i18n-60.5.1/tr.xpi) = d4da46b8ca926ccddc483909af3c1b88bc3793a10dbf2ca76e23b162ddec108f +SIZE (xpi/thunderbird-i18n-60.5.1/tr.xpi) = 598011 +SHA256 (xpi/thunderbird-i18n-60.5.1/uk.xpi) = 0eabdd8b7a717dcb9b30322477d0603d6c026c836619aa10c3e458e926d1a86a +SIZE (xpi/thunderbird-i18n-60.5.1/uk.xpi) = 684155 +SHA256 (xpi/thunderbird-i18n-60.5.1/vi.xpi) = a174ef10eb1ecb7cbe34a6d049dacd3133d795a7ea80b0f8ea3e80f389a5bc6c +SIZE (xpi/thunderbird-i18n-60.5.1/vi.xpi) = 637198 +SHA256 (xpi/thunderbird-i18n-60.5.1/zh-CN.xpi) = 6e8dff164b39255e28cdf2bf6ee23cd3c87f4c4c6595f6f2c152b1e1adfda8b2 +SIZE (xpi/thunderbird-i18n-60.5.1/zh-CN.xpi) = 626284 +SHA256 (xpi/thunderbird-i18n-60.5.1/zh-TW.xpi) = d1192d6939e7d42580a929d6daab9129488b86bcbfd3b768a2ddf89574879494 +SIZE (xpi/thunderbird-i18n-60.5.1/zh-TW.xpi) = 626190 diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile index 25f648850e5..740e438b22d 100644 --- a/mail/thunderbird/Makefile +++ b/mail/thunderbird/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 60.5.0 -PORTREVISION= 3 +DISTVERSION= 60.5.1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo index efec9a2204c..b29afdca0af 100644 --- a/mail/thunderbird/distinfo +++ b/mail/thunderbird/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1548237843 -SHA256 (thunderbird-60.5.0.source.tar.xz) = 6f96e87e832e4089c69418db64e19afd54a0acefe3e0364087a8bc6f442b9566 -SIZE (thunderbird-60.5.0.source.tar.xz) = 285636196 +TIMESTAMP = 1550067615 +SHA256 (thunderbird-60.5.1.source.tar.xz) = 69a3f741b7378b50a3b6a3b59f6c4fedd2d82d469ab234390627e15da1b58e03 +SIZE (thunderbird-60.5.1.source.tar.xz) = 285211052 diff --git a/mail/thunderbird/files/patch-bug1447519 b/mail/thunderbird/files/patch-bug1447519 deleted file mode 100644 index dbad5642fa9..00000000000 --- a/mail/thunderbird/files/patch-bug1447519 +++ /dev/null @@ -1,22 +0,0 @@ -Enable SkiaGL by default on OpenGL compositing platforms - -diff --git modules/libpref/init/all.js modules/libpref/init/all.js -index 93e56b00a961..61a2174c3384 100644 ---- modules/libpref/init/all.js -+++ modules/libpref/init/all.js -@@ -882,15 +882,9 @@ pref("gfx.font_rendering.opentype_svg.enabled", true); - pref("gfx.canvas.azure.backends", "direct2d1.1,skia,cairo"); - pref("gfx.content.azure.backends", "direct2d1.1,skia,cairo"); - #else --#ifdef XP_MACOSX - pref("gfx.content.azure.backends", "skia"); - pref("gfx.canvas.azure.backends", "skia"); --// Accelerated cg canvas where available (10.7+) - pref("gfx.canvas.azure.accelerated", true); --#else --pref("gfx.canvas.azure.backends", "skia"); --pref("gfx.content.azure.backends", "skia"); --#endif - #endif - - pref("gfx.canvas.skiagl.dynamic-cache", true); diff --git a/mail/thunderbird/files/patch-bug1521454 b/mail/thunderbird/files/patch-bug1521454 deleted file mode 100644 index 3bcad8d2ff3..00000000000 --- a/mail/thunderbird/files/patch-bug1521454 +++ /dev/null @@ -1,43 +0,0 @@ -Avoid exception due to bad locale code when appending [-u]-ca-gregory-nu-latn - ---- comm/common/bindings/datetimepicker.xml.orig 2019-01-22 19:44:24 UTC -+++ comm/common/bindings/datetimepicker.xml -@@ -488,7 +488,11 @@ - - var numberOrder = /^(\D*)\s*(\d+)(\D*)(\d+)(\D*)(\d+)\s*(\D*)$/; - -- var locale = Services.locale.getRegionalPrefsLocales()[0] + "-u-ca-gregory-nu-latn"; -+ var locale = Services.locale.getRegionalPrefsLocales()[0]; -+ if (locale.includes("-u-")) -+ locale += "-ca-gregory-nu-latn"; -+ else -+ locale += "-u-ca-gregory-nu-latn"; - var dtf = new Services.intl.DateTimeFormat(locale, { timeStyle: "long" }); - - var pmTime = dtf.format(new Date(2000, 0, 1, 16, 7, 9)); -@@ -777,7 +781,11 @@ - - var numberOrder = /^(\D*)\s*(\d+)(\D*)(\d+)(\D*)(\d+)\s*(\D*)$/; - -- var locale = Services.locale.getRegionalPrefsLocales()[0] + "-u-ca-gregory-nu-latn"; -+ var locale = Services.locale.getRegionalPrefsLocales()[0]; -+ if (locale.includes("-u-")) -+ locale += "-ca-gregory-nu-latn"; -+ else -+ locale += "-u-ca-gregory-nu-latn"; - var dtf = new Services.intl.DateTimeFormat(locale, { dateStyle: "short" }); - - var dt = dtf.format(new Date(2002, 9, 4)); -@@ -1007,7 +1015,11 @@ - - - diff --git a/misc/p5-Geo-Coder-OpenCage/Makefile b/misc/p5-Geo-Coder-OpenCage/Makefile index 382882fb74d..dbca88125fd 100644 --- a/misc/p5-Geo-Coder-OpenCage/Makefile +++ b/misc/p5-Geo-Coder-OpenCage/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Geo-Coder-OpenCage -PORTVERSION= 0.16 +PORTVERSION= 0.18 CATEGORIES= misc geography perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -15,15 +15,15 @@ LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${RUN_DEPENDS} -RUN_DEPENDS= p5-JSON>=2.94:converters/p5-JSON \ - p5-JSON-XS>=3.04:converters/p5-JSON-XS \ +RUN_DEPENDS= p5-Cpanel-JSON-XS>=4.08:converters/p5-Cpanel-JSON-XS \ p5-URI>=0:net/p5-URI TEST_DEPENDS= p5-Test-Exception>=0.32:devel/p5-Test-Exception \ p5-Test-Pod>=1.51:devel/p5-Test-Pod \ p5-Test-Warn>=0:devel/p5-Test-Warn -NO_ARCH= yes -USE_PERL5= configure USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes .include diff --git a/misc/p5-Geo-Coder-OpenCage/distinfo b/misc/p5-Geo-Coder-OpenCage/distinfo index 07d919b7301..3656e5c56fd 100644 --- a/misc/p5-Geo-Coder-OpenCage/distinfo +++ b/misc/p5-Geo-Coder-OpenCage/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1532799995 -SHA256 (Geo-Coder-OpenCage-0.16.tar.gz) = 364675db78f893870b9200b08ae8b51974e4bd3e19fe0af63d020ff38ad8634a -SIZE (Geo-Coder-OpenCage-0.16.tar.gz) = 13676 +TIMESTAMP = 1550093408 +SHA256 (Geo-Coder-OpenCage-0.18.tar.gz) = 192e78b573cfb09bb739e3e71d587374d04312a8f65406afa6cd321db91cf6bd +SIZE (Geo-Coder-OpenCage-0.18.tar.gz) = 14006 diff --git a/misc/usbids/Makefile b/misc/usbids/Makefile index 99eaec0018e..78a8abbbb76 100644 --- a/misc/usbids/Makefile +++ b/misc/usbids/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= usbids -PORTVERSION= 20181204 +PORTVERSION= 20190117 CATEGORIES= misc MASTER_SITES= LOCAL/sunpoet diff --git a/misc/usbids/distinfo b/misc/usbids/distinfo index 7a92427a824..98060b5c12d 100644 --- a/misc/usbids/distinfo +++ b/misc/usbids/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1546196437 -SHA256 (usbids-20181204.tar.xz) = 4dbcd53f10f22857a8def00179d0727a2e598aa372102a03fb6b8d3b68f3e866 -SIZE (usbids-20181204.tar.xz) = 167364 +TIMESTAMP = 1550005192 +SHA256 (usbids-20190117.tar.xz) = 75fdd667b54836491b41720a2e503ac0ac496b61e9b38094620787c84ea2230f +SIZE (usbids-20190117.tar.xz) = 170716 diff --git a/multimedia/aom/Makefile b/multimedia/aom/Makefile index bc2451d1206..db1a4270ee0 100644 --- a/multimedia/aom/Makefile +++ b/multimedia/aom/Makefile @@ -2,8 +2,8 @@ PORTNAME= aom DISTVERSIONPREFIX= v -DISTVERSION= 1.0.0-1326 -DISTVERSIONSUFFIX= -g53d45d971 +DISTVERSION= 1.0.0-1343 +DISTVERSIONSUFFIX= -ge98028123 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org diff --git a/multimedia/aom/distinfo b/multimedia/aom/distinfo index 28b8a36e323..006c982e984 100644 --- a/multimedia/aom/distinfo +++ b/multimedia/aom/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1549924150 -SHA256 (jbeich-aom-v1.0.0-1326-g53d45d971_GH0.tar.gz) = e366fd93af37a28937057bf2e82f03c79db96d5359834bbc94fd41c78dbec189 -SIZE (jbeich-aom-v1.0.0-1326-g53d45d971_GH0.tar.gz) = 3173475 +TIMESTAMP = 1550089309 +SHA256 (jbeich-aom-v1.0.0-1343-ge98028123_GH0.tar.gz) = a76568728ab329a2214cc1cca3bbde8975c339f186c249c1f388fc76990390b2 +SIZE (jbeich-aom-v1.0.0-1343-ge98028123_GH0.tar.gz) = 3185790 diff --git a/multimedia/rav1e/Makefile b/multimedia/rav1e/Makefile index 5c7724288f2..04e9b21b63c 100644 --- a/multimedia/rav1e/Makefile +++ b/multimedia/rav1e/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rav1e -PORTVERSION= s20190211 +PORTVERSION= s20190213 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org @@ -16,7 +16,7 @@ BUILD_DEPENDS_amd64= nasm:devel/nasm USES= cargo USE_GITHUB= yes GH_ACCOUNT= xiph -GH_TAGNAME= 4db518c +GH_TAGNAME= 50269cb PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= aho-corasick-0.6.9 \ @@ -61,7 +61,7 @@ CARGO_CRATES= aho-corasick-0.6.9 \ libc-0.2.48 \ libloading-0.5.0 \ log-0.4.6 \ - memchr-2.1.3 \ + memchr-2.2.0 \ memoffset-0.2.1 \ metadeps-1.1.2 \ nasm-rs-0.1.4 \ diff --git a/multimedia/rav1e/distinfo b/multimedia/rav1e/distinfo index 9cafbc646a1..4f02574a906 100644 --- a/multimedia/rav1e/distinfo +++ b/multimedia/rav1e/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1549903048 +TIMESTAMP = 1550099673 SHA256 (rust/crates/aho-corasick-0.6.9.tar.gz) = 1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e SIZE (rust/crates/aho-corasick-0.6.9.tar.gz) = 25979 SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b @@ -83,8 +83,8 @@ SHA256 (rust/crates/libloading-0.5.0.tar.gz) = 9c3ad660d7cb8c5822cd83d10897b0f1f SIZE (rust/crates/libloading-0.5.0.tar.gz) = 15990 SHA256 (rust/crates/log-0.4.6.tar.gz) = c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6 SIZE (rust/crates/log-0.4.6.tar.gz) = 22303 -SHA256 (rust/crates/memchr-2.1.3.tar.gz) = e1dd4eaac298c32ce07eb6ed9242eda7d82955b9170b7d6db59b2e02cc63fcb8 -SIZE (rust/crates/memchr-2.1.3.tar.gz) = 20069 +SHA256 (rust/crates/memchr-2.2.0.tar.gz) = 2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39 +SIZE (rust/crates/memchr-2.2.0.tar.gz) = 20939 SHA256 (rust/crates/memoffset-0.2.1.tar.gz) = 0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3 SIZE (rust/crates/memoffset-0.2.1.tar.gz) = 4618 SHA256 (rust/crates/metadeps-1.1.2.tar.gz) = 73b122901b3a675fac8cecf68dcb2f0d3036193bc861d1ac0e1c337f7d5254c2 @@ -205,5 +205,5 @@ SHA256 (rust/crates/wincolor-1.0.1.tar.gz) = 561ed901ae465d6185fa7864d63fbd5720d SIZE (rust/crates/wincolor-1.0.1.tar.gz) = 4737 SHA256 (rust/crates/y4m-0.3.1.tar.gz) = 508a0bfb402457aef5303412238bc2782798c9032b9b7afaaceef7423af0c382 SIZE (rust/crates/y4m-0.3.1.tar.gz) = 10990 -SHA256 (xiph-rav1e-s20190211-4db518c_GH0.tar.gz) = 59e724f0eeb5086fc4baf7170ae37de48cc9fe6583293dbf0c480d2f5c1cfbe1 -SIZE (xiph-rav1e-s20190211-4db518c_GH0.tar.gz) = 337764 +SHA256 (xiph-rav1e-s20190213-50269cb_GH0.tar.gz) = fa80a515f65a6404dbff3cb943730325e0ab9633aa47e28987695768e5850bd6 +SIZE (xiph-rav1e-s20190213-50269cb_GH0.tar.gz) = 338283 diff --git a/net-mgmt/smokeping/Makefile b/net-mgmt/smokeping/Makefile index 5c509a1dcd7..d202f758986 100644 --- a/net-mgmt/smokeping/Makefile +++ b/net-mgmt/smokeping/Makefile @@ -2,11 +2,8 @@ # $FreeBSD$ PORTNAME= smokeping -PORTVERSION= 2.6.11 -PORTREVISION= 8 +PORTVERSION= 2.7.3 CATEGORIES= net-mgmt www -MASTER_SITES= http://oss.oetiker.ch/smokeping/pub/ \ - http://smokeping.cs.pu.edu.tw/pub/ MAINTAINER= rodrigo@FreeBSD.org COMMENT= Latency logging and graphing system @@ -30,13 +27,20 @@ BUILD_DEPENDS= p5-CGI-Fast>=0:www/p5-CGI-Fast \ p5-IO-Socket-SSL>=0:security/p5-IO-Socket-SSL \ p5-Net-Telnet>=0:net/p5-Net-Telnet \ p5-Net-OpenSSH>=0:net/p5-Net-OpenSSH \ - p5-perl-ldap>=0:net/p5-perl-ldap + p5-perl-ldap>=0:net/p5-perl-ldap \ + p5-OrePAN2>=0:devel/p5-OrePAN2 \ + curl>=0:ftp/curl RUN_DEPENDS:= ${BUILD_DEPENDS} +USES= gmake perl5 autoreconf + CONFLICTS_INSTALL= nfsping +SUB_FILES= pkg-deinstall pkg-message +SUB_LIST= USERS=${USERS} \ + GROUPS=${GROUPS} + NO_ARCH= yes -USES= gmake perl5 GNU_CONFIGURE= yes CONFIGURE_ENV+= PERL=${PERL} PERL5LIB=${PREFIX}/smokeping/lib CONFIGURE_ARGS+= \ @@ -53,37 +57,43 @@ PKGDEINSTALL= ${WRKDIR}/pkg-deinstall USERS= smokeping GROUPS= smokeping -SUB_FILES= pkg-deinstall pkg-message -SUB_LIST= USERS=${USERS} \ - GROUPS=${GROUPS} - -FPING_DESC= Support for fping probes -ECHOPING_DESC= Support for EchoPing probes -CURL_DESC= Support for Curl probes -RADIUS_DESC= Support for Radius probes -TELNET_DESC= Support for TelnetIOSPing probes -DNS_DESC= Support for AnotherDNS probes - -OPTIONS_DEFINE= ECHOPING CURL RADIUS TELNET DNS FPING EXAMPLES +OPTIONS_DEFINE= ECHOPING RADIUS TELNET DNS FPING EXAMPLES OPTIONS_DEFAULT= FPING +FPING_DESC= Support for fping probes FPING_RUN_DEPENDS= ${LOCALBASE}/sbin/fping:net/fping + +ECHOPING_DESC= Support for EchoPing probes ECHOPING_RUN_DEPENDS= ${LOCALBASE}/bin/echoping:net/echoping -CURL_RUN_DEPENDS= ${LOCALBASE}/bin/curl:ftp/curl + +RADIUS_DESC= Support for Radius probes RADIUS_RUN_DEPENDS= p5-Authen-Radius>=0:security/p5-Authen-Radius + +TELNET_DESC= Support for TelnetIOSPing probes TELNET_RUN_DEPENDS= p5-Net-Telnet>=0:net/p5-Net-Telnet + +DNS_DESC= Support for AnotherDNS probes DNS_RUN_DEPENDS= p5-Net-DNS>=0:dns/p5-Net-DNS +USE_GITHUB= yes +GH_ACCOUNT= oetiker +GH_PROJECT= SmokePing +GH_TAGNAME= 9b2ecb9 + # We will take these from CPAN instead post-extract: cd ${WRKSRC}/lib ; ${RM} BER.pm SNMP_util.pm SNMP_Session.pm post-patch: ${REINPLACE_CMD} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ - ${WRKSRC}/doc/Makefile.in \ + ${WRKSRC}/doc/Makefile.am \ ${WRKSRC}/bin/smokeping \ ${WRKSRC}/bin/smokeping_cgi \ ${WRKSRC}/bin/tSmoke + @for a in ${WRKSRC}/etc/*.dist; do \ + ${MV} $$a $${a%.dist}.sample; \ + done + ${MV} ${WRKSRC}/etc/config.dist.in ${WRKSRC}/etc/config.sample.in post-install: ${MKDIR} ${STAGEDIR}/${PREFIX}/smokeping/htdocs/img diff --git a/net-mgmt/smokeping/distinfo b/net-mgmt/smokeping/distinfo index 089e441e34c..fc114aa5418 100644 --- a/net-mgmt/smokeping/distinfo +++ b/net-mgmt/smokeping/distinfo @@ -1,2 +1,3 @@ -SHA256 (smokeping-2.6.11.tar.gz) = f2b3c386e95a74af2b1e7aec6410d0a58852339f00e9963f3c770cfd85ba30dd -SIZE (smokeping-2.6.11.tar.gz) = 417338 +TIMESTAMP = 1548858797 +SHA256 (oetiker-SmokePing-2.7.3-9b2ecb9_GH0.tar.gz) = 10ff209c4efae212b5347ffdcda100a536f690ee154211e54e0d01c5d5508401 +SIZE (oetiker-SmokePing-2.7.3-9b2ecb9_GH0.tar.gz) = 317527 diff --git a/net-mgmt/smokeping/files/patch-Makefile.am b/net-mgmt/smokeping/files/patch-Makefile.am new file mode 100644 index 00000000000..0a9a25c5505 --- /dev/null +++ b/net-mgmt/smokeping/files/patch-Makefile.am @@ -0,0 +1,18 @@ +--- Makefile.am.orig 2019-01-30 16:17:01 UTC ++++ Makefile.am +@@ -16,14 +16,9 @@ + + AUTOMAKE_OPTIONS = foreign + +-SUBDIRS = thirdparty doc etc htdocs lib bin ++SUBDIRS = doc etc htdocs lib bin + + EXTRA_DIST = COPYRIGHT CHANGES CONTRIBUTORS LICENSE PERL_MODULES + +-THIRDPARTY_DIR := $(shell pwd)/thirdparty +- + dist-hook: + $(PERL) -i -p -e '"$(PACKAGE_VERSION)" =~ /(\d+)\.(\d+)\.(\d+)/ and $$v = sprintf("%d.%03d%03d",$$1,$$2,$$3) and s/^\$$VERSION\s*=\s*".*?"/\$$VERSION = "$$v"/' $(distdir)/lib/Smokeping.pm +- +-install-exec-hook: +- [ ! -d $(THIRDPARTY_DIR)/lib/perl5 ] || $(CP) -fr $(THIRDPARTY_DIR)/lib/perl5/* $(DESTDIR)$(libdir) diff --git a/net-mgmt/smokeping/files/patch-bin-smokeping b/net-mgmt/smokeping/files/patch-bin-smokeping deleted file mode 100644 index 720219b4e6e..00000000000 --- a/net-mgmt/smokeping/files/patch-bin-smokeping +++ /dev/null @@ -1,17 +0,0 @@ ---- bin/smokeping.orig 2012-05-14 12:45:03.010872981 +0200 -+++ bin/smokeping 2012-05-14 12:54:39.881874010 +0200 -@@ -6,12 +6,11 @@ - - use FindBin; - # PERL5LIB --use lib "$FindBin::Bin/../thirdparty/lib/perl5"; --use lib "$FindBin::Bin/../lib"; -+use lib "%%PREFIX%%/smokeping/lib"; - - use Smokeping; - --Smokeping::main("$FindBin::Bin/../etc/config"); -+Smokeping::main("%%ETCDIR%%/config"); - - =head1 NAME - diff --git a/net-mgmt/smokeping/files/patch-bin-smokeping_cgi b/net-mgmt/smokeping/files/patch-bin-smokeping_cgi deleted file mode 100644 index 4bac5d64217..00000000000 --- a/net-mgmt/smokeping/files/patch-bin-smokeping_cgi +++ /dev/null @@ -1,21 +0,0 @@ ---- bin/smokeping_cgi.orig 2012-05-14 12:45:11.565909114 +0200 -+++ bin/smokeping_cgi 2012-05-14 12:55:19.866379488 +0200 -@@ -6,8 +6,7 @@ - - use FindBin; - # PERL5LIB --use lib "$FindBin::Bin/../thirdparty/lib/perl5"; --use lib "$FindBin::Bin/../lib"; -+use lib "%%PREFIX%%/smokeping/lib"; - - # don't bother with zombies - $SIG{CHLD} = 'IGNORE'; -@@ -18,7 +17,7 @@ - - use CGI::Fast; - --my $cfg = (shift @ARGV) || "$FindBin::Bin/../etc/config"; -+my $cfg = (shift @ARGV) || "%%ETCDIR%%/config"; - - - while (my $q = new CGI::Fast) { diff --git a/net-mgmt/smokeping/files/patch-bin-tSmoke b/net-mgmt/smokeping/files/patch-bin-tSmoke deleted file mode 100644 index e444a249c14..00000000000 --- a/net-mgmt/smokeping/files/patch-bin-tSmoke +++ /dev/null @@ -1,21 +0,0 @@ ---- bin/tSmoke.orig 2012-05-14 14:54:55.388873689 +0200 -+++ bin/tSmoke 2012-05-14 14:56:15.881875827 +0200 -@@ -53,8 +53,7 @@ - # Point the lib variables to your implementation - use FindBin; - # PERL5LIB --use lib "$FindBin::Bin/../thirdparty/lib/perl5"; --use lib "$FindBin::Bin/../lib"; -+use lib "%%PREFIX%%/smokeping/lib"; - - use Smokeping; - use Net::SMTP; -@@ -63,7 +62,7 @@ - use RRDs; - - # Point to your Smokeping config file --my $cfgfile = "etc/config.dist"; -+my $cfgfile = "%%ETCDIR%%/config"; - - # global variables - my $cfg; diff --git a/net-mgmt/smokeping/files/patch-bin_smokeping b/net-mgmt/smokeping/files/patch-bin_smokeping new file mode 100644 index 00000000000..c68eb5d98cd --- /dev/null +++ b/net-mgmt/smokeping/files/patch-bin_smokeping @@ -0,0 +1,18 @@ +--- bin/smokeping.orig 2018-02-02 21:14:55 UTC ++++ bin/smokeping +@@ -5,12 +5,11 @@ use strict; + use warnings; + + use lib (split /:/, q{}); # PERL5LIB +-use FindBin; +-use lib "$FindBin::RealBin/../lib";use lib "$FindBin::RealBin/../thirdparty/lib/perl5"; # LIBDIR ++use lib "/usr/local/smokeping/lib"; + + use Smokeping; +- +-Smokeping::main("$FindBin::RealBin/../etc/config"); ++ ++Smokeping::main("/usr/local/etc/smokeping/config"); + + =head1 NAME + diff --git a/net-mgmt/smokeping/files/patch-bin_smokeping__cgi b/net-mgmt/smokeping/files/patch-bin_smokeping__cgi new file mode 100644 index 00000000000..7900ba0d2bf --- /dev/null +++ b/net-mgmt/smokeping/files/patch-bin_smokeping__cgi @@ -0,0 +1,21 @@ +--- bin/smokeping_cgi.orig 2018-02-02 21:14:55 UTC ++++ bin/smokeping_cgi +@@ -5,8 +5,7 @@ use strict; + use warnings; + + use lib (split /:/, q{}); # PERL5LIB +-use FindBin; +-use lib "$FindBin::RealBin/../lib";use lib "$FindBin::RealBin/../thirdparty/lib/perl5"; # LIBDIR ++use lib "/usr/local/smokeping/lib"; + + # don't bother with zombies + $SIG{CHLD} = 'IGNORE'; +@@ -17,7 +16,7 @@ use Smokeping; + + use CGI::Fast; + +-my $cfg = (shift @ARGV) || "$FindBin::Bin/../etc/config"; ++my $cfg = (shift @ARGV) || "/usr/local/etc/smokeping/config"; + + + while (my $q = new CGI::Fast) { diff --git a/net-mgmt/smokeping/files/patch-bin_tSmoke b/net-mgmt/smokeping/files/patch-bin_tSmoke new file mode 100644 index 00000000000..7d782638970 --- /dev/null +++ b/net-mgmt/smokeping/files/patch-bin_tSmoke @@ -0,0 +1,20 @@ +--- bin/tSmoke.orig 2018-02-02 21:14:55 UTC ++++ bin/tSmoke +@@ -53,7 +53,7 @@ use warnings; + # Point the lib variables to your implementation + + use lib (split /:/, q{}); # PERL5LIB +-use FindBin;use lib "$FindBin::RealBin/../lib";use lib "$FindBin::RealBin/../thirdparty/lib/perl5"; # LIBDIR ++use lib "/usr/local/smokeping/lib"; + + + use Smokeping; +@@ -63,7 +63,7 @@ use Pod::Usage; + use RRDs; + + # Point to your Smokeping config file +-my $cfgfile = "etc/config.dist"; ++my $cfgfile = "/usr/local/etc/smokeping/config"; + + # global variables + my $cfg; diff --git a/net-mgmt/smokeping/files/patch-configure.ac b/net-mgmt/smokeping/files/patch-configure.ac new file mode 100644 index 00000000000..65ea4bda161 --- /dev/null +++ b/net-mgmt/smokeping/files/patch-configure.ac @@ -0,0 +1,11 @@ +--- configure.ac.orig 2018-02-02 21:14:55 UTC ++++ configure.ac +@@ -143,7 +143,7 @@ NOTES + exit 1 + fi + +-AC_CONFIG_FILES([Makefile bin/Makefile doc/Makefile htdocs/Makefile etc/Makefile lib/Makefile thirdparty/Makefile etc/config.dist]) ++AC_CONFIG_FILES([Makefile bin/Makefile doc/Makefile htdocs/Makefile etc/Makefile lib/Makefile thirdparty/Makefile etc/config.sample]) + + AC_SUBST(VERSION) + diff --git a/net-mgmt/smokeping/files/patch-doc_Makefile.am b/net-mgmt/smokeping/files/patch-doc_Makefile.am new file mode 100644 index 00000000000..375c1346c53 --- /dev/null +++ b/net-mgmt/smokeping/files/patch-doc_Makefile.am @@ -0,0 +1,19 @@ +--- doc/Makefile.am.orig 2018-02-02 21:14:55 UTC ++++ doc/Makefile.am +@@ -92,7 +92,7 @@ tSmoke.1: ../bin/tSmoke + smokeping_config.pod: ../lib/Smokeping.pm + $(AM_V_GEN)$(MAKEPOD) > $@ + +-smokeping_examples.pod: ../lib/Smokeping/Examples.pm ../etc/config.dist ++smokeping_examples.pod: ../lib/Smokeping/Examples.pm ../etc/config.sample + $(AM_V_GEN)$(MKDIR) -p examples + $(AM_V_GEN)$(GENEX) + +@@ -116,6 +116,6 @@ iman7_DATA = $(MAN7) + + EXAMPLES := $(wildcard examples/config.*) + +-etcdir = $(sysconfdir)/examples ++etcdir = /usr/local/share/examples/smokeping + etc_DATA = $(EXAMPLES) + diff --git a/net-mgmt/smokeping/files/patch-doc__Makefile.in b/net-mgmt/smokeping/files/patch-doc__Makefile.in deleted file mode 100644 index 638d7645cdd..00000000000 --- a/net-mgmt/smokeping/files/patch-doc__Makefile.in +++ /dev/null @@ -1,11 +0,0 @@ ---- ./doc/Makefile.in.orig 2011-11-12 11:57:45.000000000 +0100 -+++ ./doc/Makefile.in 2012-02-02 14:54:50.000000000 +0100 -@@ -249,7 +249,7 @@ iman5_DATA = $(MAN5) - iman7dir = $(mandir)/man7 - iman7_DATA = $(MAN7) - EXAMPLES := $(wildcard examples/config.*) --etcdir = $(sysconfdir)/examples -+etcdir = %%EXAMPLESDIR%% - etc_DATA = $(EXAMPLES) - all: all-am - diff --git a/net-mgmt/smokeping/files/patch-doc_smokeping__install.pod b/net-mgmt/smokeping/files/patch-doc_smokeping__install.pod new file mode 100644 index 00000000000..bdb3ea6b4ec --- /dev/null +++ b/net-mgmt/smokeping/files/patch-doc_smokeping__install.pod @@ -0,0 +1,11 @@ +--- doc/smokeping_install.pod.orig 2018-02-02 21:14:55 UTC ++++ doc/smokeping_install.pod +@@ -108,7 +108,7 @@ to finish your setup. + + =head2 Configuration + +-Use the F file as a template to create your own smokeping configuration file. ++Use the F file as a template to create your own smokeping configuration file. + See L for details. + + =over diff --git a/net-mgmt/smokeping/files/patch-etc_Makefile.am b/net-mgmt/smokeping/files/patch-etc_Makefile.am new file mode 100644 index 00000000000..1007467540d --- /dev/null +++ b/net-mgmt/smokeping/files/patch-etc_Makefile.am @@ -0,0 +1,11 @@ +--- etc/Makefile.am.orig 2018-02-02 21:14:55 UTC ++++ etc/Makefile.am +@@ -15,7 +15,7 @@ + # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + + +-EXTRA_DIST = basepage.html.dist config.dist smokemail.dist smokeping_secrets.dist tmail.dist ++EXTRA_DIST = basepage.html.sample config.sample smokemail.sample smokeping_secrets.sample tmail.sample + + etcdir = $(sysconfdir) + etc_DATA = $(EXTRA_DIST) diff --git a/net-mgmt/smokeping/files/patch-etc_Makefile.in b/net-mgmt/smokeping/files/patch-etc_Makefile.in deleted file mode 100644 index f3e6f231e0d..00000000000 --- a/net-mgmt/smokeping/files/patch-etc_Makefile.in +++ /dev/null @@ -1,12 +0,0 @@ ---- etc/Makefile.in 2013-03-04 13:07:55.000000000 +0000 -+++ etc/Makefile.in.changes 2014-07-19 10:38:59.338305503 +0000 -@@ -258,7 +258,8 @@ - @list='$(etc_DATA)'; test -n "$(etcdir)" || list=; \ - for p in $$list; do \ - if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ -- echo "$$d$$p"; \ -+ mv $$p $${p%%.dist}.sample; \ -+ echo "$$d$${p%%.dist}.sample"; \ - done | $(am__base_list) | \ - while read files; do \ - echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(etcdir)'"; \ diff --git a/net-mgmt/smokeping/files/patch-etc__config.dist.in b/net-mgmt/smokeping/files/patch-etc__config.dist.in deleted file mode 100644 index d963290ed17..00000000000 --- a/net-mgmt/smokeping/files/patch-etc__config.dist.in +++ /dev/null @@ -1,44 +0,0 @@ ---- ./etc/config.dist.in.orig 2011-10-30 11:33:11.000000000 +0100 -+++ ./etc/config.dist.in 2012-02-02 14:54:50.000000000 +0100 -@@ -7,13 +7,13 @@ sendmail = @SENDMAIL@ - # NOTE: do not put the Image Cache below cgi-bin - # since all files under cgi-bin will be executed ... this is not - # good for images. --imgcache = @prefix@/cache --imgurl = cache --datadir = @prefix@/data --piddir = @prefix@/var -+imgcache = @prefix@/smokeping/htdocs/img -+imgurl = img -+datadir = @prefix@/var/smokeping -+piddir = @prefix@/var/smokeping - cgiurl = http://some.url/smokeping.cgi --smokemail = @prefix@/etc/smokemail.dist --tmail = @prefix@/etc/tmail.dist -+smokemail = @prefix@/etc/smokeping/smokemail -+tmail = @prefix@/etc/smokeping/tmail - # specify this to get syslog logging - syslogfacility = local0 - # each probe is now run in its own process -@@ -47,7 +47,7 @@ AVERAGE 0.5 144 720 - - *** Presentation *** - --template = @prefix@/etc/basepage.html.dist -+template = @prefix@/etc/smokeping/basepage.html - - + charts - -@@ -105,10 +105,10 @@ unison_tolerance = 2 - - + FPing - --binary = /usr/sbin/fping -+binary = @prefix@/sbin/fping - - *** Slaves *** --secrets=@prefix@/etc/smokeping_secrets.dist -+secrets=@prefix@/etc/smokeping/smokeping_secrets - +boomer - display_name=boomer - color=0000ff diff --git a/net-mgmt/smokeping/files/patch-htdocs-Makefile.in b/net-mgmt/smokeping/files/patch-htdocs_Makefile.am similarity index 51% rename from net-mgmt/smokeping/files/patch-htdocs-Makefile.in rename to net-mgmt/smokeping/files/patch-htdocs_Makefile.am index 7e2abf300be..a23faf51835 100644 --- a/net-mgmt/smokeping/files/patch-htdocs-Makefile.in +++ b/net-mgmt/smokeping/files/patch-htdocs_Makefile.am @@ -1,6 +1,6 @@ ---- htdocs/Makefile.in.orig 2014-11-04 23:50:59.000000000 +0100 -+++ htdocs/Makefile.in 2015-02-12 19:30:27.000000000 +0100 -@@ -466,9 +466,9 @@ +--- htdocs/Makefile.am.orig 2018-02-02 21:14:55 UTC ++++ htdocs/Makefile.am +@@ -41,6 +41,6 @@ nobase_js_DATA = $(JS) install-data-local: $(MKDIR) -p $(DESTDIR)$(HTDOCSDIR) @@ -8,8 +8,5 @@ - $(ECHO) "exec $(bindir)/smokeping_cgi $(sysconfdir)/config" >> $(DESTDIR)$(HTDOCSDIR)/smokeping.fcgi.dist - chmod +x $(DESTDIR)$(HTDOCSDIR)/smokeping.fcgi.dist + $(ECHO) "#!/bin/sh" > $(DESTDIR)$(HTDOCSDIR)/smokeping.fcgi.sample -+ $(ECHO) "exec $(prefix)/bin/smokeping_cgi $(sysconfdir)/config" >> $(DESTDIR)$(HTDOCSDIR)/smokeping.fcgi.sample ++ $(ECHO) "exec $(bindir)/smokeping_cgi $(sysconfdir)/config" >> $(DESTDIR)$(HTDOCSDIR)/smokeping.fcgi.sample + chmod +x $(DESTDIR)$(HTDOCSDIR)/smokeping.fcgi.sample - - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/net-mgmt/smokeping/files/patch-lib_Makefile.am b/net-mgmt/smokeping/files/patch-lib_Makefile.am new file mode 100644 index 00000000000..8d5ddff5c00 --- /dev/null +++ b/net-mgmt/smokeping/files/patch-lib_Makefile.am @@ -0,0 +1,9 @@ +--- lib/Makefile.am.orig 2018-02-02 21:14:55 UTC ++++ lib/Makefile.am +@@ -31,5 +31,5 @@ MATCH := $(wildcard Smokeping/matchers/*.pm) + + EXTRA_DIST = $(PM) $(SP) $(SORT) $(PROBE) $(MATCH) + +-perllibdir = $(prefix)/lib ++perllibdir = $(prefix)/smokeping/lib + nobase_perllib_DATA = $(EXTRA_DIST) diff --git a/net-mgmt/smokeping/files/patch-lib__Smokeping.pm b/net-mgmt/smokeping/files/patch-lib_Smokeping.pm similarity index 63% rename from net-mgmt/smokeping/files/patch-lib__Smokeping.pm rename to net-mgmt/smokeping/files/patch-lib_Smokeping.pm index cdc0f2fef8f..bee97c68143 100644 --- a/net-mgmt/smokeping/files/patch-lib__Smokeping.pm +++ b/net-mgmt/smokeping/files/patch-lib_Smokeping.pm @@ -1,25 +1,6 @@ ---- lib/Smokeping.pm.orig 2015-02-12 19:31:21.000000000 +0100 -+++ lib/Smokeping.pm 2015-02-12 19:34:23.000000000 +0100 -@@ -2632,12 +2632,14 @@ - { - %$DIRCHECK_SUB, - _doc => <slave mode|smokeping_master_slave>. - --If this variable is not specified, the value of C will be used instead. -+If this variable is not specified, the value of C will be -+used instead. - DOC - }, - piddir => -@@ -4214,7 +4216,7 @@ +--- lib/Smokeping.pm.orig 2018-02-02 21:14:55 UTC ++++ lib/Smokeping.pm +@@ -4306,7 +4306,7 @@ sub main (;$) { if(defined $opt{'check'}) { verify_cfg($cfgfile); exit 0; } if($opt{reload}) { load_cfg $cfgfile, 'noinit'; # we need just the piddir @@ -28,7 +9,7 @@ print "HUP signal sent to the running SmokePing process, exiting.\n"; exit 0; }; -@@ -4223,7 +4225,7 @@ +@@ -4315,7 +4315,7 @@ sub main (;$) { if(defined $opt{'static-pages'}) { makestaticpages $cfg, $opt{'static-pages'}; exit 0 }; if($opt{email}) { enable_dynamic $cfg, $cfg->{Targets},"",""; exit 0 }; } @@ -37,7 +18,7 @@ if($opt{logfile}) { initialize_filelog($opt{logfile}) }; -@@ -4236,7 +4238,7 @@ +@@ -4328,7 +4328,7 @@ sub main (;$) { initialize_syslog($cfg->{General}{syslogfacility}, $cfg->{General}{syslogpriority}); } @@ -46,7 +27,7 @@ } do_log "Smokeping version $VERSION successfully launched."; -@@ -4413,7 +4415,7 @@ +@@ -4514,7 +4514,7 @@ KID: my $new_conf = Smokeping::Slave::submit_results $slave_cfg,$cfg,$myprobe,$probes; if ($new_conf && !$gothup){ do_log('server has new config for me ... HUPing the parent'); diff --git a/net-mgmt/smokeping/files/patch-lib_Smokeping_Examples.pm b/net-mgmt/smokeping/files/patch-lib_Smokeping_Examples.pm new file mode 100644 index 00000000000..d483bd9c088 --- /dev/null +++ b/net-mgmt/smokeping/files/patch-lib_Smokeping_Examples.pm @@ -0,0 +1,29 @@ +--- lib/Smokeping/Examples.pm.orig 2018-02-02 21:14:55 UTC ++++ lib/Smokeping/Examples.pm +@@ -12,7 +12,7 @@ Smokeping::Examples - A module for generating the smok + This module generates L and the example + configuration files distributed with Smokeping. It is supposed to be + invoked from the smokeping distribution top directory, as it will need +-the C template configuration file and will create files ++the C template configuration file and will create files + in the directories C and C. + + =head1 DESCRIPTION +@@ -65,7 +65,7 @@ Niko Tyni + use strict; + + sub read_config_template { +- my $file = "../etc/config.dist"; ++ my $file = "../etc/config.sample"; + my $h = { + common => "", # everything up to the Probes section + probes => "", # the Probes section, without the *** Probes *** line +@@ -107,7 +107,7 @@ specifically the L and C +-sections. The other sections are taken from the C ++sections. The other sections are taken from the C + configuration template in the Smokeping distribution so that the example + files are complete. + diff --git a/net-mgmt/smokeping/files/patch-lib__Smokeping__probes__AnotherDNS.pm b/net-mgmt/smokeping/files/patch-lib_Smokeping_probes_AnotherDNS.pm similarity index 69% rename from net-mgmt/smokeping/files/patch-lib__Smokeping__probes__AnotherDNS.pm rename to net-mgmt/smokeping/files/patch-lib_Smokeping_probes_AnotherDNS.pm index 9498e1a93af..3339144765c 100644 --- a/net-mgmt/smokeping/files/patch-lib__Smokeping__probes__AnotherDNS.pm +++ b/net-mgmt/smokeping/files/patch-lib_Smokeping_probes_AnotherDNS.pm @@ -1,6 +1,6 @@ ---- lib/Smokeping/probes/AnotherDNS.pm.orig 2014-10-29 09:03:10.000000000 +0100 -+++ lib/Smokeping/probes/AnotherDNS.pm 2015-02-12 19:43:50.000000000 +0100 -@@ -25,6 +25,8 @@ +--- lib/Smokeping/probes/AnotherDNS.pm.orig 2018-02-02 21:14:55 UTC ++++ lib/Smokeping/probes/AnotherDNS.pm +@@ -25,6 +25,8 @@ use IO::Socket; use IO::Select; use Net::DNS; @@ -9,7 +9,7 @@ sub pod_hash { return { name => <=0:net/p5-Net-SSH-Perl +RUN_DEPENDS= p5-Net-SSH-Perl>=0:net/p5-Net-SSH-Perl \ + p5-Math-Int64>0:math/p5-Math-Int64 NO_ARCH= yes USES= perl5 diff --git a/net/py-h11/Makefile b/net/py-h11/Makefile new file mode 100644 index 00000000000..80daf5124e6 --- /dev/null +++ b/net/py-h11/Makefile @@ -0,0 +1,20 @@ +# Created by: Muhammad Moinur Rahman +# $FreeBSD$ + +PORTNAME= h11 +PORTVERSION= 0.8.1 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bofh@FreeBSD.org +COMMENT= Pure-Python, bring-your-own-I/O implementation of HTTP/1.1 + +LICENSE= MIT + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include diff --git a/net/py-h11/distinfo b/net/py-h11/distinfo new file mode 100644 index 00000000000..95322657303 --- /dev/null +++ b/net/py-h11/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1550099765 +SHA256 (h11-0.8.1.tar.gz) = acca6a44cb52a32ab442b1779adf0875c443c689e9e028f8d831a3769f9c5208 +SIZE (h11-0.8.1.tar.gz) = 94009 diff --git a/net/py-h11/pkg-descr b/net/py-h11/pkg-descr new file mode 100644 index 00000000000..57d8dd83171 --- /dev/null +++ b/net/py-h11/pkg-descr @@ -0,0 +1,4 @@ +This is a little HTTP/1.1 library written from scratch in Python, heavily +inspired by hyper-h2. + +WWW: https://pypi.org/project/h11/ diff --git a/net/py-wsproto/Makefile b/net/py-wsproto/Makefile new file mode 100644 index 00000000000..105e2aa2c7a --- /dev/null +++ b/net/py-wsproto/Makefile @@ -0,0 +1,23 @@ +# Created by: Muhammad Moinur Rahman +# $FreeBSD$ + +PORTNAME= wsproto +PORTVERSION= 0.13.0 +CATEGORIES= net python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= bofh@FreeBSD.org +COMMENT= Sans-IO WebSocket protocol implementation + +LICENSE= MIT + +RUN_DEPENDS= ${PY_ENUM34} \ + ${PYTHON_PKGNAMEPREFIX}h11>=0.8.1:net/py-h11@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include diff --git a/net/py-wsproto/distinfo b/net/py-wsproto/distinfo new file mode 100644 index 00000000000..640291bf945 --- /dev/null +++ b/net/py-wsproto/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1550098897 +SHA256 (wsproto-0.13.0.tar.gz) = fd6020d825022247053400306448e161d8740bdd52e328e5553cd9eee089f705 +SIZE (wsproto-0.13.0.tar.gz) = 50758 diff --git a/net/py-wsproto/pkg-descr b/net/py-wsproto/pkg-descr new file mode 100644 index 00000000000..d1719522e5c --- /dev/null +++ b/net/py-wsproto/pkg-descr @@ -0,0 +1,12 @@ +A pure-Python implementation of a WebSocket protocol stack. It's written from +the ground up to be embeddable in whatever program you choose to use, ensuring +that you can communicate via WebSockets, as defined in RFC6455, regardless of +your programming paradigm. + +This does not provide a parsing layer, a network layer, or any rules about +concurrency. Instead, it's a purely in-memory solution, defined in terms of data +actions and WebSocket frames. RFC6455 and Compression Extensions for WebSocket +via RFC7692 are fully supported. + +WWW: https://pypi.org/project/wsproto/ +WWW: https://github.com/python-hyper/wsproto/ diff --git a/science/Makefile b/science/Makefile index b15ba633cae..36ab7506fdc 100644 --- a/science/Makefile +++ b/science/Makefile @@ -107,6 +107,7 @@ SUBDIR += iboview SUBDIR += isaac-cfd SUBDIR += jdftx + SUBDIR += jmol SUBDIR += jstrack SUBDIR += kalzium SUBDIR += kst2 @@ -153,6 +154,7 @@ SUBDIR += mmtf SUBDIR += mol2ps SUBDIR += molgif + SUBDIR += molscript SUBDIR += molsketch SUBDIR += mpb SUBDIR += mpqc @@ -171,6 +173,7 @@ SUBDIR += openmx SUBDIR += opensim-core SUBDIR += openstructure + SUBDIR += opsin SUBDIR += p5-Algorithm-SVMLight SUBDIR += p5-Chemistry-3DBuilder SUBDIR += p5-Chemistry-Bond-Find diff --git a/science/jmol/Makefile b/science/jmol/Makefile new file mode 100644 index 00000000000..00c01908d4e --- /dev/null +++ b/science/jmol/Makefile @@ -0,0 +1,62 @@ +# Created by: Wen heping +# $FreeBSD$ + +PORTNAME= Jmol +DISTVERSION= 14.29.31 +PORTREVISION= 1 +CATEGORIES= science java +MASTER_SITES= SF/${PORTNAME:tl}/${PORTNAME}/Version%20${DISTVERSION:R}/${PORTNAME}%20${DISTVERSION}/:src \ + http://${PORTNAME:tl}.svn.sourceforge.net/viewvc/${PORTNAME:tl}/trunk/${PORTNAME}/selfSignedCertificate/:cert +DISTFILES= ${PORTNAME}-${DISTVERSION}-full${EXTRACT_SUFX}:src \ + selfSignedCertificate.cer:cert \ + selfSignedCertificate.store:cert +EXTRACT_ONLY= ${PORTNAME}-${PORTVERSION}-full${EXTRACT_SUFX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Java 3D viewer for chemical structures + +LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USE_JAVA= yes +USE_ANT= yes + +NO_ARCH= yes + +WRKSRC= ${WRKDIR}/${PORTNAME:tl}-${DISTVERSION} +SIGN_DIR= ${WRKSRC}/selfSignedCertificate +SUB_FILES= ${EXES} +SUB_LIST= JAVA=${JAVA} + +EXES= ${PORTNAME:tl} ${PORTNAME:tl}data +JARS= ${PORTNAME}.jar ${PORTNAME}Data.jar ${PORTNAME}Lib.jar + +PLIST_FILES= ${EXES:S/^/bin\//} \ + ${JARS:S/^/${JAVAJARDIR}\//} + +OPTIONS_DEFINE= DOCS + +PORTDOCS= * + +DESKTOP_ENTRIES="${PORTNAME}" "" "" "${PORTNAME:tl}" "" false + +post-extract: + @${MKDIR} ${SIGN_DIR} + @${CP} ${DISTDIR}/selfSignedCertificate.cer ${SIGN_DIR} + @${CP} ${DISTDIR}/selfSignedCertificate.store ${SIGN_DIR} + +post-patch: + @${REINPLACE_CMD} 's|3D conversion, POV-Ray for images, and CAD +programs for 3D printing (VRML export). + +WWW: https://sourceforge.net/projects/jmol/ diff --git a/science/molscript/Makefile b/science/molscript/Makefile new file mode 100644 index 00000000000..6ed86f2e41d --- /dev/null +++ b/science/molscript/Makefile @@ -0,0 +1,47 @@ +# $FreeBSD$ + +PORTNAME= MolScript +DISTVERSION= 2.1.2 +CATEGORIES= science + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Display 3D molecules in schematic and detailed representations + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/../LICENSE.txt + +LIB_DEPENDS= libpng16.so:graphics/png +RUN_DEPENDS= render:graphics/raster3d # molscript use requires the executable 'render' to be present + +USES= gl gmake jpeg localbase:ldflags +USE_GITHUB= yes +GH_ACCOUNT= pekrau +GH_TAGNAME= 280abee +USE_GL= gl glu glut +USE_XORG= x11 xext xmu + +MAKEFILE= Makefile.complete + +MAKE_ARGS= CC=${CC} COPT="${CFLAGS}" +CFLAGS+= -I${FILESDIR} +WRKSRC_SUBDIR= code + +BINARY_ALIAS= make=${MAKE_CMD} + +PROGS= ${PORTNAME:tl} molauto + +PLIST_FILES= ${PROGS:S/^/bin\//} + +OPTIONS_DEFINE= DOCS + +PORTDOCS= * + +do-install: +.for e in ${PROGS} + ${INSTALL_PROGRAM} ${WRKSRC}/../${e} ${STAGEDIR}${PREFIX}/bin +.endfor + +do-install-DOCS-on: + cd ${WRKSRC}/../docs && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} + +.include diff --git a/science/molscript/distinfo b/science/molscript/distinfo new file mode 100644 index 00000000000..b6c845994ab --- /dev/null +++ b/science/molscript/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1550040979 +SHA256 (pekrau-MolScript-2.1.2-280abee_GH0.tar.gz) = 701f31aa42e5aabe327ab417a7230d394e5511f82d0f43e93ba1d3989719dbe2 +SIZE (pekrau-MolScript-2.1.2-280abee_GH0.tar.gz) = 4749679 diff --git a/science/molscript/files/glutbitmap.h b/science/molscript/files/glutbitmap.h new file mode 100644 index 00000000000..9584bb129da --- /dev/null +++ b/science/molscript/files/glutbitmap.h @@ -0,0 +1,32 @@ +#ifndef __glutbitmap_h__ +#define __glutbitmap_h__ + +/* Copyright (c) Mark J. Kilgard, 1994, 1998. */ + +/* This program is freely distributable without licensing fees + and is provided without guarantee or warrantee expressed or + implied. This program is -not- in the public domain. */ + +#define GLUT_NO_LIB_PRAGMA /* Avoid auto library linking when building + the GLUT library itself. */ +#include + +typedef struct { + const GLsizei width; + const GLsizei height; + const GLfloat xorig; + const GLfloat yorig; + const GLfloat advance; + const GLubyte *bitmap; +} BitmapCharRec, *BitmapCharPtr; + +typedef struct { + const char *name; + const int num_chars; + const int first; + const BitmapCharRec * const *ch; +} BitmapFontRec, *BitmapFontPtr; + +typedef void *GLUTbitmapFont; + +#endif /* __glutbitmap_h__ */ diff --git a/science/molscript/files/patch-Makefile.complete b/science/molscript/files/patch-Makefile.complete new file mode 100644 index 00000000000..639070c2314 --- /dev/null +++ b/science/molscript/files/patch-Makefile.complete @@ -0,0 +1,70 @@ +--- Makefile.complete.orig 2017-01-16 17:36:29 UTC ++++ Makefile.complete +@@ -28,8 +28,8 @@ SHELL = /bin/sh + + # OpenGL and GLUT for X (UNIX). + # Must be modified for Windows 95/NT. <--- +-GLUTDIR = $(FREEWAREDIR)/glut +-GLUTLINK = $(GLUTDIR)/lib/glut/libglut.a -lGLU -lGL -lXmu -lXext -lX11 ++GLUTDIR = $(PREFIX) ++GLUTLINK = $(GLUTDIR)/lib/libglut.so -lGLU -lGL -lXmu -lXext -lX11 + OPENGLFLAG = -DOPENGL_SUPPORT -I$(GLUTDIR)/include + OPENGLOBJ = opengl.o + OPENGLCLIBOBJ = ogl_utils.o ogl_body.o ogl_bitmap_character.o +@@ -40,26 +40,26 @@ IMAGEOBJ = image.o eps_img.o sgi_img.o + + # JPEG image file format; requires the JPEG library. + # Comment out these lines if the JPEG library is not available. <--- +-JPEGDIR = $(FREEWAREDIR)/jpeg +-JPEGLINK = $(JPEGDIR)/libjpeg.a +-JPEGFLAG = -DJPEG_SUPPORT -I$(JPEGDIR) ++JPEGDIR = $(PREFIX) ++JPEGLINK = $(JPEGDIR)/lib/libjpeg.so ++JPEGFLAG = -DJPEG_SUPPORT -I$(JPEGDIR)/include + JPEGOBJ = jpeg_img.o + + # PNG image file format; requires the PNG library and the zlib library. + # Comment out these lines if the PNG and zlib libraries are not available. <--- +-ZLIBDIR = $(FREEWAREDIR)/zlib +-ZLIBLINK = $(ZLIBDIR)/libz.a +-PNGDIR = $(FREEWAREDIR)/libpng +-PNGLINK = $(PNGDIR)/libpng.a +-PNGFLAG = -DPNG_SUPPORT -I$(PNGDIR) -I$(ZLIBDIR) ++ZLIBDIR = /usr ++ZLIBLINK = $(ZLIBDIR)/lib/libz.so ++PNGDIR = $(PREFIX) ++PNGLINK = $(PNGDIR)/lib/libpng.so ++PNGFLAG = -DPNG_SUPPORT -I$(PNGDIR)/include -I$(ZLIBDIR)/include + PNGOBJ = png_img.o + + # GIF image file format; requires the gd 1.3 library. + # Comment out these lines if the gd 1.3 library is not available. <--- +-GIFDIR = $(FREEWAREDIR)/gd +-GIFLINK = $(GIFDIR)/libgd.a +-GIFFLAG = -DGIF_SUPPORT -I$(GIFDIR) +-GIFOBJ = gif_img.o ++#GIFDIR = $(FREEWAREDIR)/gd ++#GIFLINK = $(GIFDIR)/libgd.a ++#GIFFLAG = -DGIF_SUPPORT -I$(GIFDIR) ++#GIFOBJ = gif_img.o + + # SGI IRIX's C compiler. + CC = cc -32 +@@ -67,7 +67,7 @@ CC = cc -32 + COPT = -O1 + # Correctness flags: + #CCHECK = -ansi -fullwarn -g -DSELECT_DEBUG +-CCHECK = -ansi -fullwarn ++CCHECK = -ansi + #CCHECK = -ansi -fullwarn -DNDEBUG + + # General cc compile flags. +@@ -95,7 +95,7 @@ clean: + + #------------------------------------------------------------ + $(MOLSCRIPT): $(OBJ) clib/clib.a +- $(CC) -o $(MOLSCRIPT) $(COPT) $(OBJ) $(YLIB) clib/clib.a \ ++ $(CC) -o $(MOLSCRIPT) $(COPT) $(OBJ) $(YLIB) $(LDFLAGS) clib/clib.a \ + $(GLUTLINK) $(JPEGLINK) $(PNGLINK) $(GIFLINK) $(ZLIBLINK) -lm + + molscript.tab.o: molscript.tab.c molscript.tab.h diff --git a/science/molscript/files/patch-clib_ogl__bitmap__character.c b/science/molscript/files/patch-clib_ogl__bitmap__character.c new file mode 100644 index 00000000000..7459fad7b33 --- /dev/null +++ b/science/molscript/files/patch-clib_ogl__bitmap__character.c @@ -0,0 +1,11 @@ +--- clib/ogl_bitmap_character.c.orig 2019-02-13 05:26:19 UTC ++++ clib/ogl_bitmap_character.c +@@ -23,7 +23,7 @@ + + #include + +-#include <../lib/glut/glutbitmap.h> ++#include "glutbitmap.h" + + + /*------------------------------------------------------------*/ diff --git a/science/molscript/files/patch-png__img.c b/science/molscript/files/patch-png__img.c new file mode 100644 index 00000000000..32a6ac945c5 --- /dev/null +++ b/science/molscript/files/patch-png__img.c @@ -0,0 +1,19 @@ +--- png_img.c.orig 2017-01-16 17:36:29 UTC ++++ png_img.c +@@ -19,6 +19,7 @@ + #include + + #include ++#include + + #include "clib/str_utils.h" + #include "clib/dynstring.h" +@@ -69,7 +70,7 @@ pngi_first_plot (void) + info_ptr = png_create_info_struct (png_ptr); + if (info_ptr == NULL) + yyerror ("png_img: could not create PNG info structure"); +- if (setjmp (png_ptr->jmpbuf)) yyerror ("png_img: could not setjmp"); ++ if (setjmp (png_jmpbuf(png_ptr))) yyerror ("png_img: could not setjmp"); + + png_init_io (png_ptr, outfile); + png_set_compression_level (png_ptr, compression_level); diff --git a/science/molscript/pkg-descr b/science/molscript/pkg-descr new file mode 100644 index 00000000000..3f29f87c7b7 --- /dev/null +++ b/science/molscript/pkg-descr @@ -0,0 +1,7 @@ +MolScript is a program for displaying molecular 3D structures, such as proteins, +in both schematic and detailed representations. + +Output formats: PostScript, Raster3D, VRML 2.0, interactive OpenGL, SGI +(aka RGB), JPEG, EPS, PNG, GIF. + +WWW: http://avatar.se/molscript/molscript.html diff --git a/science/opsin/Makefile b/science/opsin/Makefile new file mode 100644 index 00000000000..79a4c857bb2 --- /dev/null +++ b/science/opsin/Makefile @@ -0,0 +1,62 @@ +# $FreeBSD$ + +PORTNAME= opsin +DISTVERSION= 3.0.20190208 +CATEGORIES= science java +MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${PORTNAME}/get/${BB_COMMIT}${EXTRACT_SUFX}?dummy=/:src +DISTFILES= ${PORTNAME}-${DISTVERSION}${EXTRACT_SUFX}:src + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Open Parser for Systematic IUPAC Nomenclature of chemical names + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +BUILD_DEPENDS= mvn:devel/maven + +USE_JAVA= yes + +NO_ARCH= yes + +BB_ACCOUNT= dan2097 +BB_COMMIT= 6688e0cedfcc + +WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${PORTNAME}-${BB_COMMIT} +SUB_FILES= ${PORTNAME} +SUB_LIST= JAVA=${JAVA} PORTNAME=${PORTNAME} PORTVERSION=${PORTVERSION} + +PLIST_FILES= bin/${PORTNAME} \ + ${JAVAJARDIR}/${PORTNAME}-${PORTVERSION}-jar-with-dependencies.jar + +# to rebuild the deps archive: +# 1. set DEV_UPDATE_MODE=yes +# 2. make makesum build +# 3. upload the *-deps archive +# 4. set DEV_UPDATE_MODE=no +# 5. make clean makesum + +DEV_UPDATE_MODE= no + +.if (${DEV_UPDATE_MODE} == "yes") +post-build: + @cd ${WRKDIR} && ${TAR} czf ${DISTDIR}/${PORTNAME}-${DISTVERSION}-deps${EXTRACT_SUFX} .m2 + @${ECHO} "(!!!) Please upload the maven deps archive: ${DISTDIR}/${PORTNAME}-${DISTVERSION}-deps${EXTRACT_SUFX}" +.else +MASTER_SITES+= LOCAL/yuri/:maven +DISTFILES+= ${PORTNAME}-${DISTVERSION}-deps${EXTRACT_SUFX}:maven +MVN_ARGS= --offline +.endif + +do-build: + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \ + ${LOCALBASE}/bin/mvn ${MVN_ARGS} \ + -fae install \ + -Dmaven.test.skip=true \ + -Duser.home=${WRKDIR} \ + package assembly:assembly + +do-install: + ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + ${INSTALL_DATA} ${WRKSRC}/target/${PORTNAME}-*-jar-with-dependencies.jar ${STAGEDIR}${JAVAJARDIR}/${PORTNAME}-${PORTVERSION}-jar-with-dependencies.jar + +.include diff --git a/science/opsin/distinfo b/science/opsin/distinfo new file mode 100644 index 00000000000..129888a12b2 --- /dev/null +++ b/science/opsin/distinfo @@ -0,0 +1,5 @@ +TIMESTAMP = 1550104217 +SHA256 (opsin-3.0.20190208.tar.gz) = d37222168a0ffb412109095212152f31b0b909abdaa14158561424651426df8f +SIZE (opsin-3.0.20190208.tar.gz) = 1795278 +SHA256 (opsin-3.0.20190208-deps.tar.gz) = b42bfc011571d7e12fbc4e051653d19edaef6b7d04aaa146c817e1309dc4cba2 +SIZE (opsin-3.0.20190208-deps.tar.gz) = 20394666 diff --git a/science/opsin/files/opsin.in b/science/opsin/files/opsin.in new file mode 100644 index 00000000000..18c1f423826 --- /dev/null +++ b/science/opsin/files/opsin.in @@ -0,0 +1,5 @@ +#!/bin/sh + +export LC_ALL=en_US.UTF-8 + +%%JAVA%% -jar %%JAVAJARDIR%%/%%PORTNAME%%-%%PORTVERSION%%-jar-with-dependencies.jar "$@" diff --git a/science/opsin/pkg-descr b/science/opsin/pkg-descr new file mode 100644 index 00000000000..24ddb275142 --- /dev/null +++ b/science/opsin/pkg-descr @@ -0,0 +1,6 @@ +OPSIN is a Java library for IUPAC name-to-structure conversion offering high +recall and precision on organic chemical nomenclature. +Supported outputs are SMILES, CML (Chemical Markup Language) and InChI (IUPAC +International Chemical Identifier). + +WWW: https://bitbucket.org/dan2097/opsin/src/default/ diff --git a/science/py-pydicom/Makefile b/science/py-pydicom/Makefile index 9e9031259bb..5826ff43d9a 100644 --- a/science/py-pydicom/Makefile +++ b/science/py-pydicom/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pydicom -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 DISTVERSIONPREFIX=v CATEGORIES= science python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/science/py-pydicom/distinfo b/science/py-pydicom/distinfo index 478bf4fb2bd..e89113da764 100644 --- a/science/py-pydicom/distinfo +++ b/science/py-pydicom/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1542939092 -SHA256 (pydicom-pydicom-v1.2.1_GH0.tar.gz) = adb92a855619fdd86bed413213d1d1db97d763dd65ea008ede6dad876a28c91c -SIZE (pydicom-pydicom-v1.2.1_GH0.tar.gz) = 7041066 +TIMESTAMP = 1550101400 +SHA256 (pydicom-pydicom-v1.2.2_GH0.tar.gz) = f3080249aea2243ded81c3019f0af6e06b7b187d624d06ec89d9e3fac58a204c +SIZE (pydicom-pydicom-v1.2.2_GH0.tar.gz) = 7041506 diff --git a/sysutils/mcelog/Makefile b/sysutils/mcelog/Makefile index 3a10bc737ff..ca342d26533 100644 --- a/sysutils/mcelog/Makefile +++ b/sysutils/mcelog/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mcelog -PORTVERSION= 161 +PORTVERSION= 162 DISTVERSIONPREFIX= v CATEGORIES= sysutils diff --git a/sysutils/mcelog/distinfo b/sysutils/mcelog/distinfo index 306970c73c1..2c067124d1f 100644 --- a/sysutils/mcelog/distinfo +++ b/sysutils/mcelog/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1540433813 -SHA256 (andikleen-mcelog-v161_GH0.tar.gz) = 485f5be8f2d5ff8ec1382b54033f75f88b2960ef18f1d87bcf865bb1c094dbd5 -SIZE (andikleen-mcelog-v161_GH0.tar.gz) = 308227 +TIMESTAMP = 1550099603 +SHA256 (andikleen-mcelog-v162_GH0.tar.gz) = 875e98572e86240ea319ab1f69ee6d744eb8b73ac5d700e474f6410d0f52d3fc +SIZE (andikleen-mcelog-v162_GH0.tar.gz) = 308347 diff --git a/sysutils/mcelog/files/patch-p4.c b/sysutils/mcelog/files/patch-p4.c index acea7aa5bed..cf96572ae33 100644 --- a/sysutils/mcelog/files/patch-p4.c +++ b/sysutils/mcelog/files/patch-p4.c @@ -1,6 +1,6 @@ ---- p4.c.orig 2016-10-10 22:08:11 UTC +--- p4.c.orig 2019-02-05 19:57:07 UTC +++ p4.c -@@ -176,8 +176,10 @@ static int decode_mca(u64 status, u64 mi +@@ -177,8 +177,10 @@ static int decode_mca(u64 status, u64 misc, u64 track, levelnum = mca & 3; level = get_LL_str(levelnum); Wprintf("%s Generic cache hierarchy error\n", level); @@ -11,7 +11,7 @@ } else if (test_prefix(4, mca)) { unsigned levelnum, typenum; char *level, *type; -@@ -186,8 +188,10 @@ static int decode_mca(u64 status, u64 mi +@@ -187,8 +189,10 @@ static int decode_mca(u64 status, u64 misc, u64 track, levelnum = (mca & TLB_LL_MASK) >> TLB_LL_SHIFT; level = get_LL_str(levelnum); Wprintf("%s TLB %s Error\n", type, level); @@ -22,7 +22,7 @@ } else if (test_prefix(8, mca)) { unsigned typenum = (mca & CACHE_TT_MASK) >> CACHE_TT_SHIFT; unsigned levelnum = (mca & CACHE_LL_MASK) >> CACHE_LL_SHIFT; -@@ -196,8 +200,10 @@ static int decode_mca(u64 status, u64 mi +@@ -197,8 +201,10 @@ static int decode_mca(u64 status, u64 misc, u64 track, Wprintf("%s CACHE %s %s Error\n", type, level, get_RRRR_str((mca & CACHE_RRRR_MASK) >> CACHE_RRRR_SHIFT)); @@ -30,10 +30,10 @@ if (track == 2) run_yellow_trigger(cpu, typenum, levelnum, type, level,socket); +#endif - } else if (test_prefix(10, mca)) { - if (mca == 0x400) - Wprintf("Internal Timer error\n"); -@@ -216,7 +222,9 @@ static int decode_mca(u64 status, u64 mi + } else if (test_prefix(9, mca) && EXTRACT(mca, 7, 8) == 1) { + Wprintf("Memory as cache: "); + decode_memory_controller(mca, bank); +@@ -220,7 +226,9 @@ static int decode_mca(u64 status, u64 misc, u64 track, Wprintf("BUS error: %d %d %s %s %s %s %s\n", socket, cpu, level, pp, rrrr, ii, timeout); @@ -43,7 +43,7 @@ /* IO MCA - reported as bus/interconnect with specific PP,T,RRRR,II,LL values * and MISCV set. MISC register points to root port that reported the error * need to cross check with AER logs for more details. -@@ -232,7 +240,9 @@ static int decode_mca(u64 status, u64 mi +@@ -236,7 +244,9 @@ static int decode_mca(u64 status, u64 misc, u64 track, fn = EXTRACT(misc, 16, 18); Wprintf("IO MCA reported by root port %x:%02x:%02x.%x\n", seg, bus, dev, fn); @@ -53,7 +53,7 @@ } } else if (test_prefix(7, mca)) { decode_memory_controller(mca, bank); -@@ -382,19 +392,25 @@ static void decode_thermal(struct mce *l +@@ -386,19 +396,25 @@ static void decode_thermal(struct mce *log, int cpu) void decode_intel_mc(struct mce *log, int cputype, int *ismemerr, unsigned size) { diff --git a/sysutils/xen-tools411/Makefile b/sysutils/xen-tools411/Makefile index 46a47a90c67..0ad3ad82b0e 100644 --- a/sysutils/xen-tools411/Makefile +++ b/sysutils/xen-tools411/Makefile @@ -3,7 +3,7 @@ PORTNAME= xen PKGNAMESUFFIX= -tools411 PORTVERSION= 4.11.0 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= sysutils emulators MASTER_SITES= http://downloads.xenproject.org/release/xen/${PORTVERSION}/ @@ -21,7 +21,13 @@ BUILD_DEPENDS= seabios>0:misc/seabios RUN_DEPENDS= seabios>0:misc/seabios DOCS_BUILD_DEPENDS=markdown:textproc/markdown -OPTIONS_DEFINE= DOCS +OPTIONS_DEFINE= DOCS SPICE +OPTIONS_DEFAULT= DOCS + +SPICE_DESC= Enable SPICE protocol for QEMU +SPICE_CONFIGURE_WITH= extra-qemuu-configure-args="--enable-spice" +SPICE_BUILD_DEPENDS= spice-protocol>=0.12.10:devel/spice-protocol +SPICE_LIB_DEPENDS= libspice-server.so:devel/libspice-server ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= "not yet ported to anything other than amd64" @@ -71,6 +77,10 @@ IGNORE= only supported on FreeBSD IGNORE= only supported on recent FreeBSD HEAD .endif +.if ${PORT_OPTIONS:MSPICE} && ${OSVERSION} < 1300008 +BROKEN= SPICE support requires FreeBSD version 13.0 or higher +.endif + post-patch: @for p in `ls ${FILESDIR}/*qemuu*.patch 2>/dev/null`; do \ ${ECHO_CMD} "====> Applying $${p##*/}" ; \ diff --git a/textproc/py-parso/Makefile b/textproc/py-parso/Makefile index 29261e51a95..767482749e5 100644 --- a/textproc/py-parso/Makefile +++ b/textproc/py-parso/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= parso -DISTVERSION= 0.3.2 +DISTVERSION= 0.3.4 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/textproc/py-parso/distinfo b/textproc/py-parso/distinfo index 7f93fa6c273..9f9b77360da 100644 --- a/textproc/py-parso/distinfo +++ b/textproc/py-parso/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1548699415 -SHA256 (parso-0.3.2.tar.gz) = 4b8f9ed80c3a4a3191aa3261505d868aa552dd25649cb13a7d73b6b7315edf2d -SIZE (parso-0.3.2.tar.gz) = 387587 +TIMESTAMP = 1550098926 +SHA256 (parso-0.3.4.tar.gz) = 68406ebd7eafe17f8e40e15a84b56848eccbf27d7c1feb89e93d8fca395706db +SIZE (parso-0.3.4.tar.gz) = 387845 diff --git a/www/firefox-esr-i18n/Makefile b/www/firefox-esr-i18n/Makefile index 4d4888292f1..2ca50408638 100644 --- a/www/firefox-esr-i18n/Makefile +++ b/www/firefox-esr-i18n/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -PORTVERSION= 60.5.0 -PORTREVISION= 1 +PORTVERSION= 60.5.1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}esr/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}esr-candidates/build2/linux-i686/xpi diff --git a/www/firefox-esr-i18n/distinfo b/www/firefox-esr-i18n/distinfo index 8671f9c909b..052646e3806 100644 --- a/www/firefox-esr-i18n/distinfo +++ b/www/firefox-esr-i18n/distinfo @@ -1,197 +1,197 @@ -TIMESTAMP = 1548351040 -SHA256 (xpi/firefox-60.5.0/ach.xpi) = 902e9d95a293a016f9688c8b89c0b48def09b6592bd834bc80cc0e9e47e970e5 -SIZE (xpi/firefox-60.5.0/ach.xpi) = 496841 -SHA256 (xpi/firefox-60.5.0/af.xpi) = f18d098adadea9014e8e493b0488b13c0ce94ce5d9e27c9134cc21ef39f4f884 -SIZE (xpi/firefox-60.5.0/af.xpi) = 487319 -SHA256 (xpi/firefox-60.5.0/an.xpi) = d0f0dd63764e89de9a513c8a2c369474946d64d241913d588da7043aef52d86d -SIZE (xpi/firefox-60.5.0/an.xpi) = 520504 -SHA256 (xpi/firefox-60.5.0/ar.xpi) = a10cfd20b6e4387031a508d7f178766fd1d3f3abcc6f6dea38b507aab25a7076 -SIZE (xpi/firefox-60.5.0/ar.xpi) = 547823 -SHA256 (xpi/firefox-60.5.0/as.xpi) = 591e5e7fb89222a56aeefb20a1d37d9ae6d4d93c585df31b8a78ad3895ac2300 -SIZE (xpi/firefox-60.5.0/as.xpi) = 530728 -SHA256 (xpi/firefox-60.5.0/ast.xpi) = 8ab0231c85aef1abc9a80720d7385e008eec53068f5f9aff3ae2bb07c31a7567 -SIZE (xpi/firefox-60.5.0/ast.xpi) = 508655 -SHA256 (xpi/firefox-60.5.0/az.xpi) = 288fb39810a20ed4524311642dbab181e6ea023c6b2fbc32fb1b24c89cf121d1 -SIZE (xpi/firefox-60.5.0/az.xpi) = 524747 -SHA256 (xpi/firefox-60.5.0/be.xpi) = c7c3ee90df65e77b9a083c7578d9d02271195f24e42f6e1e78ccf4f00ad288e8 -SIZE (xpi/firefox-60.5.0/be.xpi) = 580716 -SHA256 (xpi/firefox-60.5.0/bg.xpi) = 80771ea9cd1b37f98ffec9e273c4531ae7462e46593de99f214fd8d2cd96484a -SIZE (xpi/firefox-60.5.0/bg.xpi) = 573852 -SHA256 (xpi/firefox-60.5.0/bn-BD.xpi) = 30d8876bcc654db989f32b80b17b88a24a85d4d216a37f3c098a32fb4b32fd73 -SIZE (xpi/firefox-60.5.0/bn-BD.xpi) = 590423 -SHA256 (xpi/firefox-60.5.0/bn-IN.xpi) = a4e4a9c46bcd2e0c2346b0e955480d59606794920400becee9fe6a87c64471bc -SIZE (xpi/firefox-60.5.0/bn-IN.xpi) = 570870 -SHA256 (xpi/firefox-60.5.0/br.xpi) = 93a42ac6c6bc03cc42902ae36b9b6a84e7d3110c6f54d4ff6b81ed0a5163756c -SIZE (xpi/firefox-60.5.0/br.xpi) = 512031 -SHA256 (xpi/firefox-60.5.0/bs.xpi) = 06e2d833a8261fac2758247c76058421ea545f5e96124dc14c7c630ec6a45d71 -SIZE (xpi/firefox-60.5.0/bs.xpi) = 514714 -SHA256 (xpi/firefox-60.5.0/ca.xpi) = 675a11181e0d09189458b02391a5ea0b83a6da27e6943135c164fc147a92193c -SIZE (xpi/firefox-60.5.0/ca.xpi) = 525262 -SHA256 (xpi/firefox-60.5.0/cak.xpi) = 5f30f7aa222e5fae70c8494dfbed488d837ed51ef2da20db5a3bccb5453b6142 -SIZE (xpi/firefox-60.5.0/cak.xpi) = 536296 -SHA256 (xpi/firefox-60.5.0/cs.xpi) = 8439b8d0e20912ddf3f94d49615e63b605cdeafba457f3678ef73929eac482da -SIZE (xpi/firefox-60.5.0/cs.xpi) = 531796 -SHA256 (xpi/firefox-60.5.0/cy.xpi) = 06634bab29a524a454e85b77f99a67a2a1651b621fac72454172cd25d26b114a -SIZE (xpi/firefox-60.5.0/cy.xpi) = 516642 -SHA256 (xpi/firefox-60.5.0/da.xpi) = 3b3e29a9d4aad9adb8e756a1310de06ebd7f73a637a0e085fee2cde6cd8eeabe -SIZE (xpi/firefox-60.5.0/da.xpi) = 510754 -SHA256 (xpi/firefox-60.5.0/de.xpi) = 1e8f16ab1ad091448e58d576ed9526d4b9db759b040a999a7e423b604f5d1a9e -SIZE (xpi/firefox-60.5.0/de.xpi) = 526524 -SHA256 (xpi/firefox-60.5.0/dsb.xpi) = 2fb408ceb8f0bfe006b551c3e540f0cbf33a02b6a21681cadd408cfa8c8016f1 -SIZE (xpi/firefox-60.5.0/dsb.xpi) = 539525 -SHA256 (xpi/firefox-60.5.0/el.xpi) = 3ec3b05ff9d604baef5e871d8844d1c0637df73e5e7c4b5182a59aa8b9826008 -SIZE (xpi/firefox-60.5.0/el.xpi) = 593699 -SHA256 (xpi/firefox-60.5.0/en-GB.xpi) = 8df918399929d5d73e924beeb7ac4986d028e2601104b29291c8e984a9bcffd5 -SIZE (xpi/firefox-60.5.0/en-GB.xpi) = 491694 -SHA256 (xpi/firefox-60.5.0/en-US.xpi) = db720f916bc55ec096a403c64c46b577a50c287e5eba9b36a08ebba67e2a54ba -SIZE (xpi/firefox-60.5.0/en-US.xpi) = 473177 -SHA256 (xpi/firefox-60.5.0/en-ZA.xpi) = f29e83cca768a91a0c5b305cad8538c60886dbe23b2ca0f13bf88399fa72bf94 -SIZE (xpi/firefox-60.5.0/en-ZA.xpi) = 474686 -SHA256 (xpi/firefox-60.5.0/eo.xpi) = 588051d0cd2be13dafd9228057b433d24804612933676c3f7175bdb981a0b968 -SIZE (xpi/firefox-60.5.0/eo.xpi) = 511271 -SHA256 (xpi/firefox-60.5.0/es-AR.xpi) = 332a90218d0af056f6c374d2ac440ca7f7a1b63b61c9bce4f2f8246ec09eaf7b -SIZE (xpi/firefox-60.5.0/es-AR.xpi) = 524654 -SHA256 (xpi/firefox-60.5.0/es-CL.xpi) = 3a5f273074342e4bd9320e11c592f65a3d0442fa6e7ba860d8d94f2cba8acde2 -SIZE (xpi/firefox-60.5.0/es-CL.xpi) = 527329 -SHA256 (xpi/firefox-60.5.0/es-ES.xpi) = 15a0e24ae0dc2812c4697213ca6024f55f81a665ca5db57bfc7e5709c50cec67 -SIZE (xpi/firefox-60.5.0/es-ES.xpi) = 459968 -SHA256 (xpi/firefox-60.5.0/es-MX.xpi) = 0d69e17e57881f44a8e95ce896b3bfed792eb0b61192fe781466939d84ec11bf -SIZE (xpi/firefox-60.5.0/es-MX.xpi) = 528670 -SHA256 (xpi/firefox-60.5.0/et.xpi) = 0490770f68e5a34810ddb8b9be00d994844b247ef8fc707edda236b3f14d1895 -SIZE (xpi/firefox-60.5.0/et.xpi) = 504972 -SHA256 (xpi/firefox-60.5.0/eu.xpi) = 2b6e8b7f355e8d11e84c8ef93a17706003a3076c0b67d356afc5cae4889f6eef -SIZE (xpi/firefox-60.5.0/eu.xpi) = 511713 -SHA256 (xpi/firefox-60.5.0/fa.xpi) = a2734194d4103a41676260e6b4c68c6221859ec25a9d808f72cee2229c411c87 -SIZE (xpi/firefox-60.5.0/fa.xpi) = 566263 -SHA256 (xpi/firefox-60.5.0/ff.xpi) = 0432b0ec0303caab4838a2361dc1df0151e9e06db049287cc43f6d11354469d0 -SIZE (xpi/firefox-60.5.0/ff.xpi) = 512210 -SHA256 (xpi/firefox-60.5.0/fi.xpi) = 94d4ae4614a0913828ec4652f8329bd95dabf441ec869f599dd8ceb297205037 -SIZE (xpi/firefox-60.5.0/fi.xpi) = 506177 -SHA256 (xpi/firefox-60.5.0/fr.xpi) = 2502ccfab3282b487b5bc3fd6bf6712e6b4c719a0f7b82ade2fb4daf1f01a071 -SIZE (xpi/firefox-60.5.0/fr.xpi) = 536081 -SHA256 (xpi/firefox-60.5.0/fy-NL.xpi) = e425b5b4187c62d61fee56a449611a7deb1e507fc78dfbe55badd962a22d4259 -SIZE (xpi/firefox-60.5.0/fy-NL.xpi) = 524529 -SHA256 (xpi/firefox-60.5.0/ga-IE.xpi) = d613f8fc40cd9c4f8b86871eb2287b2bbb5a730a3d7919844759e5a118703bf7 -SIZE (xpi/firefox-60.5.0/ga-IE.xpi) = 526991 -SHA256 (xpi/firefox-60.5.0/gd.xpi) = e1c0bf304005c1420127e33a0b59841492688a22a9eb4afe905a0bfbc3b89b79 -SIZE (xpi/firefox-60.5.0/gd.xpi) = 520877 -SHA256 (xpi/firefox-60.5.0/gl.xpi) = 1d8bcec3b6b464601df8e7b547c97dc80e2b98e3e7a475eef5ee437490245f18 -SIZE (xpi/firefox-60.5.0/gl.xpi) = 497371 -SHA256 (xpi/firefox-60.5.0/gn.xpi) = 1dc03bd3ca677c5d938074f657b43ae263c37d8a652ccf8ffb3f8fffd91693bd -SIZE (xpi/firefox-60.5.0/gn.xpi) = 533215 -SHA256 (xpi/firefox-60.5.0/gu-IN.xpi) = b05f2525c91571057cdb8a92b3ca1953a829c3e72b7f4e4103c3c2e3cba9b2f3 -SIZE (xpi/firefox-60.5.0/gu-IN.xpi) = 590271 -SHA256 (xpi/firefox-60.5.0/he.xpi) = 810fadb78526516a9d2485c7e4fedc5be9e56c2f31cf3b96bc9d8e17f3ed5bdb -SIZE (xpi/firefox-60.5.0/he.xpi) = 535983 -SHA256 (xpi/firefox-60.5.0/hi-IN.xpi) = 67a1d5286e11e2bc49a7696c4443c2e96196425e467c393d72f7be8fa51f8286 -SIZE (xpi/firefox-60.5.0/hi-IN.xpi) = 590858 -SHA256 (xpi/firefox-60.5.0/hr.xpi) = b33cd0ab6d1bcd2970fe79b4f5926243d37ee351ddaad43c78612c5745b08c2d -SIZE (xpi/firefox-60.5.0/hr.xpi) = 515957 -SHA256 (xpi/firefox-60.5.0/hsb.xpi) = b4740896365efd609275bc01efce4d2837af2875636b3a1c1a2324d12c5a9dad -SIZE (xpi/firefox-60.5.0/hsb.xpi) = 537071 -SHA256 (xpi/firefox-60.5.0/hu.xpi) = 2f009d77b10246fb5269cbfd9e9d429b5f1a250328951c34575533c6cffecba8 -SIZE (xpi/firefox-60.5.0/hu.xpi) = 538420 -SHA256 (xpi/firefox-60.5.0/hy-AM.xpi) = 9e9ded7194f4be5c613300ae6616c505549d6ffa04c6a692c24e3f400ebbc798 -SIZE (xpi/firefox-60.5.0/hy-AM.xpi) = 569422 -SHA256 (xpi/firefox-60.5.0/ia.xpi) = 527f6232ac3d9c9e489adf106f018e011b3b3de701b1e3dc9b9ac30281e734e6 -SIZE (xpi/firefox-60.5.0/ia.xpi) = 510740 -SHA256 (xpi/firefox-60.5.0/id.xpi) = 50c675f59a7027b69fd520d686e30231ab60b69ecd3c9028c4a0050c849d24f5 -SIZE (xpi/firefox-60.5.0/id.xpi) = 502224 -SHA256 (xpi/firefox-60.5.0/is.xpi) = 27fe43ef8725bda19be283485eed09c7f3006c8baa60a922c38777c804b3b636 -SIZE (xpi/firefox-60.5.0/is.xpi) = 513272 -SHA256 (xpi/firefox-60.5.0/it.xpi) = 60c52d92522cfa8d556e3f2b515bb82cbfb87a2a5660d79c216cbbe618fc5319 -SIZE (xpi/firefox-60.5.0/it.xpi) = 399110 -SHA256 (xpi/firefox-60.5.0/ja.xpi) = 131c0f1a40ff3f608ecdff6c1fe25794c15011df354fb072ff086d2abde40790 -SIZE (xpi/firefox-60.5.0/ja.xpi) = 572017 -SHA256 (xpi/firefox-60.5.0/ka.xpi) = 7dbfd2e737251cb175be544486076fef17dfcdd926cd6e405276fa4ba51abc6d -SIZE (xpi/firefox-60.5.0/ka.xpi) = 556850 -SHA256 (xpi/firefox-60.5.0/kab.xpi) = c5681e61588a23aad87ba52537531284039b3ea9d835530df97fcf7fa783c805 -SIZE (xpi/firefox-60.5.0/kab.xpi) = 520403 -SHA256 (xpi/firefox-60.5.0/kk.xpi) = 71189e64d455b0ae8d5aada32eeb38e0f521f862cf46ec11d3375a32fe9a9fa9 -SIZE (xpi/firefox-60.5.0/kk.xpi) = 582984 -SHA256 (xpi/firefox-60.5.0/km.xpi) = b53a3ac66057995cdc626201bb770dec80c36d8219f75d7dd20c70915fdc6076 -SIZE (xpi/firefox-60.5.0/km.xpi) = 583120 -SHA256 (xpi/firefox-60.5.0/kn.xpi) = 9978775a22c23b9f3a94ea5f2e6eb9ec9581354025e2d65d4db89a82db8b8c98 -SIZE (xpi/firefox-60.5.0/kn.xpi) = 585876 -SHA256 (xpi/firefox-60.5.0/ko.xpi) = e4951821e403b17c750ee9ab5bd902c17307688f5593c3ed6ce7e1010900ea72 -SIZE (xpi/firefox-60.5.0/ko.xpi) = 547827 -SHA256 (xpi/firefox-60.5.0/lij.xpi) = 8e3e4fc152995752e9a297933c3c736e2406e10e0c3a19945fe35503cad4ff03 -SIZE (xpi/firefox-60.5.0/lij.xpi) = 513183 -SHA256 (xpi/firefox-60.5.0/lt.xpi) = 8a659fc5a4b73ef140e4b19da26b42bf8d4580f2d0678a577a148adcbbc5e549 -SIZE (xpi/firefox-60.5.0/lt.xpi) = 536465 -SHA256 (xpi/firefox-60.5.0/lv.xpi) = c42e08612ea3d98c1b359def320615b3064c717711be1ce0c698419fc9ab4b44 -SIZE (xpi/firefox-60.5.0/lv.xpi) = 526420 -SHA256 (xpi/firefox-60.5.0/mai.xpi) = 44da9c2312d4f11ff32d660014a5e41aef5107e5d69f87662b1f4d0a0aab5eca -SIZE (xpi/firefox-60.5.0/mai.xpi) = 549255 -SHA256 (xpi/firefox-60.5.0/mk.xpi) = 2b0b831f98e43a06c72e099e6dbd4dfddbf58b789da7fc89e05f3d7a13a8ab31 -SIZE (xpi/firefox-60.5.0/mk.xpi) = 513806 -SHA256 (xpi/firefox-60.5.0/ml.xpi) = 1f9a7f961a1bc24d884e1f863016ceedc18facd17560252cfce15a1b04684409 -SIZE (xpi/firefox-60.5.0/ml.xpi) = 598978 -SHA256 (xpi/firefox-60.5.0/mr.xpi) = d942589ee0f43f250cc27643037ebf18b9f4e239b75c5e5295e0cb2db200a2b4 -SIZE (xpi/firefox-60.5.0/mr.xpi) = 579120 -SHA256 (xpi/firefox-60.5.0/ms.xpi) = 7e06de0fdff161468a8ab39b85bbfacc7621adf85ace5f9c72ecf549df53d370 -SIZE (xpi/firefox-60.5.0/ms.xpi) = 509554 -SHA256 (xpi/firefox-60.5.0/my.xpi) = 877e22316e59d8c77a7c40de4aaed5f5343ffb50a5dfa609b4f943b3226a0fdb -SIZE (xpi/firefox-60.5.0/my.xpi) = 570357 -SHA256 (xpi/firefox-60.5.0/nb-NO.xpi) = f627060a3d1e134629baee0b7bbc60b98ba531ade790971ba438c5d1bf8f05ff -SIZE (xpi/firefox-60.5.0/nb-NO.xpi) = 509891 -SHA256 (xpi/firefox-60.5.0/ne-NP.xpi) = 7b69e48d59af3790a1219cb229484a3df7cba4f2cac2ed4525a8623a66bbdb78 -SIZE (xpi/firefox-60.5.0/ne-NP.xpi) = 555369 -SHA256 (xpi/firefox-60.5.0/nl.xpi) = 13bdb8cbe92bd3e0d41e3a66906772509b2079c065b02537049eda9f2cf62271 -SIZE (xpi/firefox-60.5.0/nl.xpi) = 517455 -SHA256 (xpi/firefox-60.5.0/nn-NO.xpi) = 0fb6f7ae980bcc0ded0356515e3c63e2e220e06f025d4fde242192b3db6d63e6 -SIZE (xpi/firefox-60.5.0/nn-NO.xpi) = 511434 -SHA256 (xpi/firefox-60.5.0/oc.xpi) = a7b180564aec93f29a719ea8c32d331ac71b0f95f838cd551ad3ef9dfd4e93e9 -SIZE (xpi/firefox-60.5.0/oc.xpi) = 526991 -SHA256 (xpi/firefox-60.5.0/or.xpi) = 39d9532f7c54187d6095dcce2866d231833964c40771f1b577daf6db5ea673a1 -SIZE (xpi/firefox-60.5.0/or.xpi) = 540875 -SHA256 (xpi/firefox-60.5.0/pa-IN.xpi) = 3f2bc1e613fb0324a8e862a9b533e1950e1714da1869f5907eca1b85da29a322 -SIZE (xpi/firefox-60.5.0/pa-IN.xpi) = 557878 -SHA256 (xpi/firefox-60.5.0/pl.xpi) = 95d1b481e12995b343a0d16a5a1ef51051000763366ca7f645749a26fa2c4fcc -SIZE (xpi/firefox-60.5.0/pl.xpi) = 419026 -SHA256 (xpi/firefox-60.5.0/pt-BR.xpi) = de4386e4f6d24202183a3d4011034254898bfa262a301fd3794bec5ab801a4fa -SIZE (xpi/firefox-60.5.0/pt-BR.xpi) = 514760 -SHA256 (xpi/firefox-60.5.0/pt-PT.xpi) = 054ff93b1ac3ce4d850c82f43d8fbe78ac10cad6cce9b35533f84f2360abe85f -SIZE (xpi/firefox-60.5.0/pt-PT.xpi) = 519358 -SHA256 (xpi/firefox-60.5.0/rm.xpi) = 5bfc67dc8efed4ac4ce02360bc47c175537f8f13810f9c31469ec828bc7b9baf -SIZE (xpi/firefox-60.5.0/rm.xpi) = 506037 -SHA256 (xpi/firefox-60.5.0/ro.xpi) = 709cda5e8cd314a6f6bfe5dca0314eec1e789f509643aba3056173abb7b658f5 -SIZE (xpi/firefox-60.5.0/ro.xpi) = 514052 -SHA256 (xpi/firefox-60.5.0/ru.xpi) = 5a6ae6e866dbe6e5095b9063ef9a2a06c3242f48b4c4b3ef8031b6bc017de360 -SIZE (xpi/firefox-60.5.0/ru.xpi) = 591402 -SHA256 (xpi/firefox-60.5.0/si.xpi) = c4daa23116ece805db5e9ba14dfecf566a9e32119dbaa97de7de17a631cd7cba -SIZE (xpi/firefox-60.5.0/si.xpi) = 545576 -SHA256 (xpi/firefox-60.5.0/sk.xpi) = 1e30ff3bb6067baf090752beead57369fc29f48184c040c37a638565da37b135 -SIZE (xpi/firefox-60.5.0/sk.xpi) = 541705 -SHA256 (xpi/firefox-60.5.0/sl.xpi) = 9df81a2451b291f2562bf12101a34e92480f48ee0a3001d8e0c03fbc199043fb -SIZE (xpi/firefox-60.5.0/sl.xpi) = 519375 -SHA256 (xpi/firefox-60.5.0/son.xpi) = 17c8df028b8ea031a2c324df793990075527332c9e97850461c8039d4de69f02 -SIZE (xpi/firefox-60.5.0/son.xpi) = 497693 -SHA256 (xpi/firefox-60.5.0/sq.xpi) = 08bd7af9da28b6889c75a87a3ed84b895768ec6612d0a35b102c05e7a001cb34 -SIZE (xpi/firefox-60.5.0/sq.xpi) = 521271 -SHA256 (xpi/firefox-60.5.0/sr.xpi) = 725ed184e9485fb67357da18fc25d14b9926380ad051cb41ee2029f77b7804a8 -SIZE (xpi/firefox-60.5.0/sr.xpi) = 548776 -SHA256 (xpi/firefox-60.5.0/sv-SE.xpi) = 60b59c2fddc9fd0e53e60181e9b5777d0eb4eee29471d383d7185e8e9ae8e5f7 -SIZE (xpi/firefox-60.5.0/sv-SE.xpi) = 518664 -SHA256 (xpi/firefox-60.5.0/ta.xpi) = 49fb8712b8d34ed30f3a499fa217ce9890072d67e3380b9157cfaeb078dd8fe9 -SIZE (xpi/firefox-60.5.0/ta.xpi) = 577921 -SHA256 (xpi/firefox-60.5.0/te.xpi) = 78d3868d484bd56f8c02055bdd632149b491595e1964643132595f519d055c00 -SIZE (xpi/firefox-60.5.0/te.xpi) = 590962 -SHA256 (xpi/firefox-60.5.0/th.xpi) = 65b7195626d9aa64eed5af5aa837d42ec4712e7e18de2c940c018bdb78c18930 -SIZE (xpi/firefox-60.5.0/th.xpi) = 562823 -SHA256 (xpi/firefox-60.5.0/tr.xpi) = 5bbdab6771771b2d1e1eb49f3827db9b3f7cf7139f8433db3befa89d3b42c14b -SIZE (xpi/firefox-60.5.0/tr.xpi) = 525862 -SHA256 (xpi/firefox-60.5.0/uk.xpi) = a05914a868fb8b3a8516c07e79af2c5d1ac2c3c903640fae1d0f557b57219db3 -SIZE (xpi/firefox-60.5.0/uk.xpi) = 580926 -SHA256 (xpi/firefox-60.5.0/ur.xpi) = fe75fd1b6f0bf3d3648cc9a5070510126a2b85294f1afd9260e7f5b5387f0ef7 -SIZE (xpi/firefox-60.5.0/ur.xpi) = 563375 -SHA256 (xpi/firefox-60.5.0/uz.xpi) = d4052d0ac608d8599ac1f6612ce9c64b6ea61cbd298c2de65d6d98bd5020ce30 -SIZE (xpi/firefox-60.5.0/uz.xpi) = 513691 -SHA256 (xpi/firefox-60.5.0/vi.xpi) = e3a910a16a9b452559bba0f4a23e5bf30981299e21256a61e34b706e37b602ee -SIZE (xpi/firefox-60.5.0/vi.xpi) = 528193 -SHA256 (xpi/firefox-60.5.0/xh.xpi) = d88293a405aa67049138d6a3c9e331e6fc63258a232445c15ab4d8cbe99b5f9e -SIZE (xpi/firefox-60.5.0/xh.xpi) = 511860 -SHA256 (xpi/firefox-60.5.0/zh-CN.xpi) = 67518a93c6cd5d4cf6994f9daf9df11db9b5f90d7146b75dca221c7c17ac98af -SIZE (xpi/firefox-60.5.0/zh-CN.xpi) = 543587 -SHA256 (xpi/firefox-60.5.0/zh-TW.xpi) = cd0c42fd40a4c798e94fb9d072d8fa8b67d34a5411d5d485ed8ae616d1194273 -SIZE (xpi/firefox-60.5.0/zh-TW.xpi) = 541914 +TIMESTAMP = 1550055491 +SHA256 (xpi/firefox-60.5.1/ach.xpi) = 1d772e4a8562d4b8d69a02f572b8c3e849259aaa678199a3bccb78ba16132ed7 +SIZE (xpi/firefox-60.5.1/ach.xpi) = 496847 +SHA256 (xpi/firefox-60.5.1/af.xpi) = 4c5114e2c3efc9717f8228599281e16db270c13f1639dd886264afe770ac71f1 +SIZE (xpi/firefox-60.5.1/af.xpi) = 487313 +SHA256 (xpi/firefox-60.5.1/an.xpi) = efa49441bc2ab45b2e5f11eb1a121a86f03edcc2c7545e478e09ed43f02e235e +SIZE (xpi/firefox-60.5.1/an.xpi) = 520501 +SHA256 (xpi/firefox-60.5.1/ar.xpi) = ed935bee30aa0e3155ba4218b897236fa103ead4ac755438b5d6b009cabaf109 +SIZE (xpi/firefox-60.5.1/ar.xpi) = 547830 +SHA256 (xpi/firefox-60.5.1/as.xpi) = 339b6f59c659eec7d5c748c255482b5024288c3cdf7c0a216fd32c169546035d +SIZE (xpi/firefox-60.5.1/as.xpi) = 530725 +SHA256 (xpi/firefox-60.5.1/ast.xpi) = c0e24e7f0b132d4dac6b7ea42d6370cc2ac5323cfc355f6d590131b73196f2f9 +SIZE (xpi/firefox-60.5.1/ast.xpi) = 508652 +SHA256 (xpi/firefox-60.5.1/az.xpi) = 8da9d7bc3921896835255b1e20b0f2b4b13a9c693f5c1933236de00860bad6cc +SIZE (xpi/firefox-60.5.1/az.xpi) = 524752 +SHA256 (xpi/firefox-60.5.1/be.xpi) = 9ee90de969aa8012defa1081e6c0e34c3caf67f5922b0ff1e2fd3e2e5e080cf7 +SIZE (xpi/firefox-60.5.1/be.xpi) = 580727 +SHA256 (xpi/firefox-60.5.1/bg.xpi) = ba78db0d3909c761d987496aa18522b9e27fc84c74e3060daf6be8dc82153e79 +SIZE (xpi/firefox-60.5.1/bg.xpi) = 573858 +SHA256 (xpi/firefox-60.5.1/bn-BD.xpi) = 364d91a23541bea769bf2a6107256a46fdefc51c4b26de9382eddf9472cd78d2 +SIZE (xpi/firefox-60.5.1/bn-BD.xpi) = 590426 +SHA256 (xpi/firefox-60.5.1/bn-IN.xpi) = 6cb2822e4d03b708103dbf76834227fd81862c0ddbaacdc02668668f3350a33b +SIZE (xpi/firefox-60.5.1/bn-IN.xpi) = 570868 +SHA256 (xpi/firefox-60.5.1/br.xpi) = 8cfe3f5061c33f0110d9221d257799376fd51fdf9c680a12a961f51aec318232 +SIZE (xpi/firefox-60.5.1/br.xpi) = 512030 +SHA256 (xpi/firefox-60.5.1/bs.xpi) = 109ef3e0adef97cdf14ef4067169c1a85c66e8794c6d5e31575430899ab1be5f +SIZE (xpi/firefox-60.5.1/bs.xpi) = 514713 +SHA256 (xpi/firefox-60.5.1/ca.xpi) = e8d9413f66a44181c0cdc1ab9550ed70bea709fdab059e1e3959cf0fa201f8fe +SIZE (xpi/firefox-60.5.1/ca.xpi) = 525266 +SHA256 (xpi/firefox-60.5.1/cak.xpi) = bcea580ec35f01de4d769446084614c3cd814cfabe4f4210dd058ad738f5a40c +SIZE (xpi/firefox-60.5.1/cak.xpi) = 536301 +SHA256 (xpi/firefox-60.5.1/cs.xpi) = bd61d2c1f8d863121621bc63d3e5d8f4269423c06e13ec7b88a2e2754e19d0f3 +SIZE (xpi/firefox-60.5.1/cs.xpi) = 531797 +SHA256 (xpi/firefox-60.5.1/cy.xpi) = bb0cc2ad702097ff03ed3a74bb4bacb7a04b9c119db513f155c4fa50a1583edc +SIZE (xpi/firefox-60.5.1/cy.xpi) = 516648 +SHA256 (xpi/firefox-60.5.1/da.xpi) = 4d4b9ed4be106579d2de520bb30df940ded12dd3ce715a7e10efd3944426f298 +SIZE (xpi/firefox-60.5.1/da.xpi) = 510755 +SHA256 (xpi/firefox-60.5.1/de.xpi) = 659775ba2d99ed073a9044fec4d1b60f28432182a9af4b3ac5def4125bdf5e90 +SIZE (xpi/firefox-60.5.1/de.xpi) = 526521 +SHA256 (xpi/firefox-60.5.1/dsb.xpi) = 087278bfdd3fd5efe2c76e4461926205b5d991b51b678d7f45aa8ff3c491ea0d +SIZE (xpi/firefox-60.5.1/dsb.xpi) = 539521 +SHA256 (xpi/firefox-60.5.1/el.xpi) = 75f6bba513297d32e97eeb9d3652d59aa05decefad79b3bfbf2d1e0ace21203d +SIZE (xpi/firefox-60.5.1/el.xpi) = 593692 +SHA256 (xpi/firefox-60.5.1/en-GB.xpi) = 5547ae28a2ebb0824ced98da4f1add6f5931873c62982580330c001aa877e664 +SIZE (xpi/firefox-60.5.1/en-GB.xpi) = 491688 +SHA256 (xpi/firefox-60.5.1/en-US.xpi) = e327a42e12c1b28f15f74775603ea2473f6c70b81b6b702471682c664a91c82e +SIZE (xpi/firefox-60.5.1/en-US.xpi) = 473177 +SHA256 (xpi/firefox-60.5.1/en-ZA.xpi) = fafcefd20d173e3668d23873b12e64360c1a2d9c534a6f43c3e159524c63fbf1 +SIZE (xpi/firefox-60.5.1/en-ZA.xpi) = 474683 +SHA256 (xpi/firefox-60.5.1/eo.xpi) = 4fab0b64d8cf0f763108693942c91a03e5f3bd4851afbfbbebe21e51ae567da1 +SIZE (xpi/firefox-60.5.1/eo.xpi) = 511265 +SHA256 (xpi/firefox-60.5.1/es-AR.xpi) = e2824824af552bd09a7c159ab7c9874ad7186f0b8d5e7659840ef714aa46a63c +SIZE (xpi/firefox-60.5.1/es-AR.xpi) = 524656 +SHA256 (xpi/firefox-60.5.1/es-CL.xpi) = 6edfe44006b4fafa1cfcfadec65254e29c219cb4840de446ddfe9a95602a1314 +SIZE (xpi/firefox-60.5.1/es-CL.xpi) = 527321 +SHA256 (xpi/firefox-60.5.1/es-ES.xpi) = 3d061ecec3f16f564046b1a57d0e639102c5774f5c26cbeea7f21be016a2e99e +SIZE (xpi/firefox-60.5.1/es-ES.xpi) = 459970 +SHA256 (xpi/firefox-60.5.1/es-MX.xpi) = 0f2216e08d0b48c8d541b8a365a0761ee0f2ee742860d79165ee84d034b6b767 +SIZE (xpi/firefox-60.5.1/es-MX.xpi) = 528663 +SHA256 (xpi/firefox-60.5.1/et.xpi) = 04b980a590215f5dba5ead5234122e293a4743857b7ad3269f812c82152f8eb8 +SIZE (xpi/firefox-60.5.1/et.xpi) = 504971 +SHA256 (xpi/firefox-60.5.1/eu.xpi) = 25ef93b0691cc9d22014d8b9625bad13ea5abb00cc92c643b4d24fe9d0128be3 +SIZE (xpi/firefox-60.5.1/eu.xpi) = 511710 +SHA256 (xpi/firefox-60.5.1/fa.xpi) = 6da2dc0a1de2418c8ddae49e307c68910d7a2535c5a597bd3dce8a7cb01d24f1 +SIZE (xpi/firefox-60.5.1/fa.xpi) = 566269 +SHA256 (xpi/firefox-60.5.1/ff.xpi) = e08a325e07c821f55c07acf9dc3d88a721fac4aea1ea18d19f4e7c922d5c0c11 +SIZE (xpi/firefox-60.5.1/ff.xpi) = 512214 +SHA256 (xpi/firefox-60.5.1/fi.xpi) = 3e1411446a692c6c7f2e6f62f9306708ea2b92a8c3101a39b3e7c95cd2d4829b +SIZE (xpi/firefox-60.5.1/fi.xpi) = 506181 +SHA256 (xpi/firefox-60.5.1/fr.xpi) = dfd18d77d2b24db04780dee939d1622f9f8ca5d0411bda1db01c8b3e723478d4 +SIZE (xpi/firefox-60.5.1/fr.xpi) = 536078 +SHA256 (xpi/firefox-60.5.1/fy-NL.xpi) = 715f122fcd77e1f714c4659783113108340924bb88fe89440c111e068984d9ae +SIZE (xpi/firefox-60.5.1/fy-NL.xpi) = 524529 +SHA256 (xpi/firefox-60.5.1/ga-IE.xpi) = aad5bf5c8653e6de930370420ce4e72e25b9211eeda0a5a6c8b62e11711bfe4a +SIZE (xpi/firefox-60.5.1/ga-IE.xpi) = 526990 +SHA256 (xpi/firefox-60.5.1/gd.xpi) = b758b55155f692c9fd7e1dc01fa8a9400089679eb7619f3c9199e3471c5cb40d +SIZE (xpi/firefox-60.5.1/gd.xpi) = 520870 +SHA256 (xpi/firefox-60.5.1/gl.xpi) = eec9180372b341421d372985039cdce5a96e067e995c58c81aa8b3645b891427 +SIZE (xpi/firefox-60.5.1/gl.xpi) = 497376 +SHA256 (xpi/firefox-60.5.1/gn.xpi) = fb4dc6fef700b75bee69af78789302dd7cd2cf1f429a1817c43ca7dab31c6b9f +SIZE (xpi/firefox-60.5.1/gn.xpi) = 533220 +SHA256 (xpi/firefox-60.5.1/gu-IN.xpi) = 20a90b15a00c8b71dda997b9e7f5032cf31b609c5db98b0871a561becfa3aef2 +SIZE (xpi/firefox-60.5.1/gu-IN.xpi) = 590274 +SHA256 (xpi/firefox-60.5.1/he.xpi) = ebc8fb3c3187d7adaa2cc13d324d3ae6a346afa901301c54de470493b18ee3b9 +SIZE (xpi/firefox-60.5.1/he.xpi) = 535985 +SHA256 (xpi/firefox-60.5.1/hi-IN.xpi) = fddbe04ad7049cf14072f994061d6f5bed75cd4c3e19faaef2b5bcbd182e4022 +SIZE (xpi/firefox-60.5.1/hi-IN.xpi) = 590862 +SHA256 (xpi/firefox-60.5.1/hr.xpi) = c7afb84f00ac54b41de3888b33bc1add8c01cfa02ab52fcff9dc070ce6f43b31 +SIZE (xpi/firefox-60.5.1/hr.xpi) = 515962 +SHA256 (xpi/firefox-60.5.1/hsb.xpi) = b009a360fa335978fb3ddd93ecb484da67c46cb57c8defe6f4e1919ab7d1d0e3 +SIZE (xpi/firefox-60.5.1/hsb.xpi) = 537064 +SHA256 (xpi/firefox-60.5.1/hu.xpi) = 5d25a17d6732bee806109cb3d78dffa1fb1a41485639226e4fd66306e2416e91 +SIZE (xpi/firefox-60.5.1/hu.xpi) = 538413 +SHA256 (xpi/firefox-60.5.1/hy-AM.xpi) = c93d5f9b44c58d54c9076dab06f55fda74e1d8a890910e59cb1a86014133a022 +SIZE (xpi/firefox-60.5.1/hy-AM.xpi) = 569419 +SHA256 (xpi/firefox-60.5.1/ia.xpi) = 8b713e3dfa22eb848af5edaf4b33e89f8df679087dc4ed747e4aafcce838fab6 +SIZE (xpi/firefox-60.5.1/ia.xpi) = 510732 +SHA256 (xpi/firefox-60.5.1/id.xpi) = 4faae876fa6070fb4a603716d1c9137e428d100062f29df9731807b39f7ae0c4 +SIZE (xpi/firefox-60.5.1/id.xpi) = 502231 +SHA256 (xpi/firefox-60.5.1/is.xpi) = cf1424531079529515e488b1358db2666a081b9fb7ed7d3a191c0d3f4e53c133 +SIZE (xpi/firefox-60.5.1/is.xpi) = 513276 +SHA256 (xpi/firefox-60.5.1/it.xpi) = c3855c0280691d0fa31c7658e682b3d829962097475242182b2ea45a827ec4b0 +SIZE (xpi/firefox-60.5.1/it.xpi) = 399102 +SHA256 (xpi/firefox-60.5.1/ja.xpi) = 5b3bfdd11eaa8fcc96a01ebc2ae036b2a5ade5f78e2f680ae6b2c602546cd17f +SIZE (xpi/firefox-60.5.1/ja.xpi) = 572022 +SHA256 (xpi/firefox-60.5.1/ka.xpi) = de239ab044f4421982d35ff992f36025515144ddfb5eccf189fc7e30a6d0876a +SIZE (xpi/firefox-60.5.1/ka.xpi) = 556845 +SHA256 (xpi/firefox-60.5.1/kab.xpi) = b46b5547aacc58e03b594908f9eaa373990690de910b7e5e3d1de41cd0726daa +SIZE (xpi/firefox-60.5.1/kab.xpi) = 520399 +SHA256 (xpi/firefox-60.5.1/kk.xpi) = 5443bcd05a9dba81ec52bec7ca3b9267b1e71a029b7bcb6cc9170199c448975e +SIZE (xpi/firefox-60.5.1/kk.xpi) = 582976 +SHA256 (xpi/firefox-60.5.1/km.xpi) = dff53b70f2da37eb1d1f1f9bb2fc1a09221316fbfe90cac4e745d39a1908d0ed +SIZE (xpi/firefox-60.5.1/km.xpi) = 583118 +SHA256 (xpi/firefox-60.5.1/kn.xpi) = aa2e9a9b5e2790a277a24bb0ef7b7c61386dd5419b9e834aff985e870ad410b1 +SIZE (xpi/firefox-60.5.1/kn.xpi) = 585880 +SHA256 (xpi/firefox-60.5.1/ko.xpi) = 5c61d072a66b1c9ed4ffaa19d15c3484ad45a7673f4f4dd02662f663f82247b4 +SIZE (xpi/firefox-60.5.1/ko.xpi) = 547828 +SHA256 (xpi/firefox-60.5.1/lij.xpi) = a2e1ffb0636c5b1a72ecb2974e1f59bf1c7eaae15d93050246874969fb85dc96 +SIZE (xpi/firefox-60.5.1/lij.xpi) = 513185 +SHA256 (xpi/firefox-60.5.1/lt.xpi) = c748a8cbca7e1f5dadd7231fd715a52887128a74b9ff8c6e77709b0f89faa0b7 +SIZE (xpi/firefox-60.5.1/lt.xpi) = 536465 +SHA256 (xpi/firefox-60.5.1/lv.xpi) = d9c852870087e80000b19cf89acd29a75e574b1e1aba811113f0414f8a114863 +SIZE (xpi/firefox-60.5.1/lv.xpi) = 526416 +SHA256 (xpi/firefox-60.5.1/mai.xpi) = cb816d2d21cafd71070aed73fdb2d52c7f29071a699ad7857956621576dd875b +SIZE (xpi/firefox-60.5.1/mai.xpi) = 549259 +SHA256 (xpi/firefox-60.5.1/mk.xpi) = 53939bf58d156e8e46472f16996336bc6d4bbc0a8540a558f5c190dac47fb8dd +SIZE (xpi/firefox-60.5.1/mk.xpi) = 513816 +SHA256 (xpi/firefox-60.5.1/ml.xpi) = 2b76b2e01e8d65fff44b2555ed4e6d9641813d5b6e66aecb564e2ac6d8b29e89 +SIZE (xpi/firefox-60.5.1/ml.xpi) = 598977 +SHA256 (xpi/firefox-60.5.1/mr.xpi) = b183aa55360344c5209333b10e4fa3331d7179e1305fac7d293f4102a4ad4fd5 +SIZE (xpi/firefox-60.5.1/mr.xpi) = 579129 +SHA256 (xpi/firefox-60.5.1/ms.xpi) = e62510b95d3f413d48b0461f1febf032bf1a8a4ed19a1bff9095000b4ce894fb +SIZE (xpi/firefox-60.5.1/ms.xpi) = 509559 +SHA256 (xpi/firefox-60.5.1/my.xpi) = 988001fdf9f85c0af63d15d63d9ba2d0d6ac37671c874dad311b58c020078a2b +SIZE (xpi/firefox-60.5.1/my.xpi) = 570358 +SHA256 (xpi/firefox-60.5.1/nb-NO.xpi) = 138f39808735c397eba6671200762289e98909a16525cd6bb7298ace0f97d013 +SIZE (xpi/firefox-60.5.1/nb-NO.xpi) = 509889 +SHA256 (xpi/firefox-60.5.1/ne-NP.xpi) = cb8748b3b0042a5acc07188c1c3aef7e7921bd52e2f8d23e9aadb6b9c0480c59 +SIZE (xpi/firefox-60.5.1/ne-NP.xpi) = 555366 +SHA256 (xpi/firefox-60.5.1/nl.xpi) = c8100ac1aa2ba84f865762546d7f23177787d6b9ed41f88c7cc0e065b2aa3f70 +SIZE (xpi/firefox-60.5.1/nl.xpi) = 517467 +SHA256 (xpi/firefox-60.5.1/nn-NO.xpi) = c176cc0d4a2662c164fd8f18ce236cd8f5b0360cf29255ad3b7e01b3d48e3eab +SIZE (xpi/firefox-60.5.1/nn-NO.xpi) = 511437 +SHA256 (xpi/firefox-60.5.1/oc.xpi) = bfcdab29af0ee9f3228b68b21ba030d0a46ad6f9a842a5d6fb1ad1121d0eb9b6 +SIZE (xpi/firefox-60.5.1/oc.xpi) = 526996 +SHA256 (xpi/firefox-60.5.1/or.xpi) = 830e00b58595f2e0ddf3818c7584dd632fb4331d1c451b92637056b5fc583dd8 +SIZE (xpi/firefox-60.5.1/or.xpi) = 540870 +SHA256 (xpi/firefox-60.5.1/pa-IN.xpi) = 9f2917a875332da8a6aad520694a22d339a64dbae5d1cbda746794ba08c844c5 +SIZE (xpi/firefox-60.5.1/pa-IN.xpi) = 557875 +SHA256 (xpi/firefox-60.5.1/pl.xpi) = 5951d06851162dad4a1af77b36e7a99f2c34bcf29e8cbeee3a0473e02e3b9bbf +SIZE (xpi/firefox-60.5.1/pl.xpi) = 419026 +SHA256 (xpi/firefox-60.5.1/pt-BR.xpi) = f15f055955d5e97f589f1a73b97f28869f7f36e754833c63163f08da93cd124e +SIZE (xpi/firefox-60.5.1/pt-BR.xpi) = 514768 +SHA256 (xpi/firefox-60.5.1/pt-PT.xpi) = a4c1993803e886e01a12576722033c4a9ba2662a68ac3f03c156197dcb4ed4fc +SIZE (xpi/firefox-60.5.1/pt-PT.xpi) = 519360 +SHA256 (xpi/firefox-60.5.1/rm.xpi) = c274bec73e0f648a3b0b9d438fd2f9288012c4c2fbdb688cf4e4a14d10a0040b +SIZE (xpi/firefox-60.5.1/rm.xpi) = 506047 +SHA256 (xpi/firefox-60.5.1/ro.xpi) = 56716c7961ee7ef3c46fea425a2e65f7c763bcefb01ffa48ffd281bcb889a834 +SIZE (xpi/firefox-60.5.1/ro.xpi) = 514053 +SHA256 (xpi/firefox-60.5.1/ru.xpi) = e8df96d5a449ba1360e2a9d406ed7a72fd99c8908a8e503eeb42a56457d7bfd7 +SIZE (xpi/firefox-60.5.1/ru.xpi) = 591395 +SHA256 (xpi/firefox-60.5.1/si.xpi) = 1034bbba6e54dc80b6b374ecdf019e28e20f46345c97fe3a564282a3776223d4 +SIZE (xpi/firefox-60.5.1/si.xpi) = 545579 +SHA256 (xpi/firefox-60.5.1/sk.xpi) = e322f50781759491687a68e8b10d4183344ae734d35353180fad6fb5229080e6 +SIZE (xpi/firefox-60.5.1/sk.xpi) = 541709 +SHA256 (xpi/firefox-60.5.1/sl.xpi) = f685139ed3ef3a04c46720633ec9c7f247a13dab9ffc2644dca1938f1c216331 +SIZE (xpi/firefox-60.5.1/sl.xpi) = 519381 +SHA256 (xpi/firefox-60.5.1/son.xpi) = e886eac66821a859b89f06238d0edd53bf5820d341ebc71b4c76895854086dd3 +SIZE (xpi/firefox-60.5.1/son.xpi) = 497699 +SHA256 (xpi/firefox-60.5.1/sq.xpi) = 2d596b115ad1011bf19b3a122d17d62f9d23af1acbeeb9fee404a40d79a5295f +SIZE (xpi/firefox-60.5.1/sq.xpi) = 521273 +SHA256 (xpi/firefox-60.5.1/sr.xpi) = 13e40dd997a43541e9de81e349f356e8298710581bfdc5d54ae5708197f179e5 +SIZE (xpi/firefox-60.5.1/sr.xpi) = 548773 +SHA256 (xpi/firefox-60.5.1/sv-SE.xpi) = 66e9a5bcd5ed7c105b752a964c01131be38ce21971154099d56a0b672d4c4527 +SIZE (xpi/firefox-60.5.1/sv-SE.xpi) = 518662 +SHA256 (xpi/firefox-60.5.1/ta.xpi) = cc029c715801d3269dc44c12b8669c1c64d039a3b302d16053d731ab2e349094 +SIZE (xpi/firefox-60.5.1/ta.xpi) = 577922 +SHA256 (xpi/firefox-60.5.1/te.xpi) = df05da619cb9f8415f41f085e9e209467a30bcc688a66f945dce8f44fe465da9 +SIZE (xpi/firefox-60.5.1/te.xpi) = 590962 +SHA256 (xpi/firefox-60.5.1/th.xpi) = bfdd7d9be8a08b4e52f0fb30e3b076bbfe8989d4e67c736ac8528b0de76666d9 +SIZE (xpi/firefox-60.5.1/th.xpi) = 562820 +SHA256 (xpi/firefox-60.5.1/tr.xpi) = b4020bf15314bef248515180ba60d0b7cb7df658f55e5cc923735a9ef5de1720 +SIZE (xpi/firefox-60.5.1/tr.xpi) = 525858 +SHA256 (xpi/firefox-60.5.1/uk.xpi) = caa9e0255916545c2e8154d5d0daf27482a7cea22fe0542d278cb0217d147206 +SIZE (xpi/firefox-60.5.1/uk.xpi) = 580925 +SHA256 (xpi/firefox-60.5.1/ur.xpi) = c59e4e5a1b2938281e99381ac4630f7efbf3d69f752d798dd6b42c6251c73e78 +SIZE (xpi/firefox-60.5.1/ur.xpi) = 563373 +SHA256 (xpi/firefox-60.5.1/uz.xpi) = 249ec35281833b0be9cf2deb1683aa24929f9fc635c17bf8b5afc4b999ef135d +SIZE (xpi/firefox-60.5.1/uz.xpi) = 513690 +SHA256 (xpi/firefox-60.5.1/vi.xpi) = c2a4c5b1544e9eb50179c101eaefbc1d7659c91d3a1780c12a7e62940fb80c8d +SIZE (xpi/firefox-60.5.1/vi.xpi) = 528189 +SHA256 (xpi/firefox-60.5.1/xh.xpi) = 917369d68c97db347f0d7c794ea08196ed7af7eaca196cf07aade3fdabe36830 +SIZE (xpi/firefox-60.5.1/xh.xpi) = 511863 +SHA256 (xpi/firefox-60.5.1/zh-CN.xpi) = 7e706dc203c4c0c20edab4f4d2b35e415657d3e394663971c8b746361fa0c674 +SIZE (xpi/firefox-60.5.1/zh-CN.xpi) = 543592 +SHA256 (xpi/firefox-60.5.1/zh-TW.xpi) = 3f0f2d979f65c16b40cb9366ad6dfbbfbc780082682250c7417b4fc84b06d7a8 +SIZE (xpi/firefox-60.5.1/zh-TW.xpi) = 541917 diff --git a/www/firefox-esr/Makefile b/www/firefox-esr/Makefile index 4ec83e31332..80dc4cecc0b 100644 --- a/www/firefox-esr/Makefile +++ b/www/firefox-esr/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 60.5.0 -PORTREVISION= 3 +DISTVERSION= 60.5.1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ diff --git a/www/firefox-esr/distinfo b/www/firefox-esr/distinfo index 54bc6967908..cd3f64b18bb 100644 --- a/www/firefox-esr/distinfo +++ b/www/firefox-esr/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1548351040 -SHA256 (firefox-60.5.0esr.source.tar.xz) = 1a1f69ee87092637f75aef7f3fa588b0eef0b2c8bcc160094a036450c49c4025 -SIZE (firefox-60.5.0esr.source.tar.xz) = 268065616 +TIMESTAMP = 1550056836 +SHA256 (firefox-60.5.1esr.source.tar.xz) = 3f01ff52a174bc554934dd85f8703b2817789ceb749abe09f00bef9cf70b71f5 +SIZE (firefox-60.5.1esr.source.tar.xz) = 268112444 diff --git a/www/firefox-esr/files/patch-bug1447519 b/www/firefox-esr/files/patch-bug1447519 deleted file mode 100644 index dbad5642fa9..00000000000 --- a/www/firefox-esr/files/patch-bug1447519 +++ /dev/null @@ -1,22 +0,0 @@ -Enable SkiaGL by default on OpenGL compositing platforms - -diff --git modules/libpref/init/all.js modules/libpref/init/all.js -index 93e56b00a961..61a2174c3384 100644 ---- modules/libpref/init/all.js -+++ modules/libpref/init/all.js -@@ -882,15 +882,9 @@ pref("gfx.font_rendering.opentype_svg.enabled", true); - pref("gfx.canvas.azure.backends", "direct2d1.1,skia,cairo"); - pref("gfx.content.azure.backends", "direct2d1.1,skia,cairo"); - #else --#ifdef XP_MACOSX - pref("gfx.content.azure.backends", "skia"); - pref("gfx.canvas.azure.backends", "skia"); --// Accelerated cg canvas where available (10.7+) - pref("gfx.canvas.azure.accelerated", true); --#else --pref("gfx.canvas.azure.backends", "skia"); --pref("gfx.content.azure.backends", "skia"); --#endif - #endif - - pref("gfx.canvas.skiagl.dynamic-cache", true); diff --git a/www/firefox-i18n/Makefile b/www/firefox-i18n/Makefile index 11af0502e3c..ce67aea55d7 100644 --- a/www/firefox-i18n/Makefile +++ b/www/firefox-i18n/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= firefox-i18n -PORTVERSION= 65.0 -PORTREVISION= 1 +PORTVERSION= 65.0.1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME:S|-i18n||}/releases/${DISTVERSION}/linux-i686/xpi \ MOZILLA/${PORTNAME:S|-i18n||}/candidates/${DISTVERSION}-candidates/build2/linux-i686/xpi diff --git a/www/firefox-i18n/distinfo b/www/firefox-i18n/distinfo index ce69a49a709..33292deb861 100644 --- a/www/firefox-i18n/distinfo +++ b/www/firefox-i18n/distinfo @@ -1,199 +1,199 @@ -TIMESTAMP = 1548355762 -SHA256 (xpi/firefox-i18n-65.0/ach.xpi) = f3e9eac9caac851c7b6aa778f4dfb044197a318e1b84e51857d5d06378689c71 -SIZE (xpi/firefox-i18n-65.0/ach.xpi) = 447455 -SHA256 (xpi/firefox-i18n-65.0/af.xpi) = eace6fef42d4e02c47112e12f90176ef7f64fbe420b5d18da7ebd568c21bd88d -SIZE (xpi/firefox-i18n-65.0/af.xpi) = 437793 -SHA256 (xpi/firefox-i18n-65.0/an.xpi) = e636d6bf57ee998ef75ada0a3e795a403aa1cb35a04817359959086f88c99d86 -SIZE (xpi/firefox-i18n-65.0/an.xpi) = 465005 -SHA256 (xpi/firefox-i18n-65.0/ar.xpi) = 17ccf379eb29c2100cb6ebae9c9c73a4e37f46f367917a1cd210664112e61c02 -SIZE (xpi/firefox-i18n-65.0/ar.xpi) = 509019 -SHA256 (xpi/firefox-i18n-65.0/as.xpi) = 779514a797096edc3284bf03a85b5180820e087bb646067eaf173c2f662163ba -SIZE (xpi/firefox-i18n-65.0/as.xpi) = 472923 -SHA256 (xpi/firefox-i18n-65.0/ast.xpi) = 8f68f32d7766991d82c715ee9d4d75ff40a3b5c95b83e5353b759c579786a7bd -SIZE (xpi/firefox-i18n-65.0/ast.xpi) = 462336 -SHA256 (xpi/firefox-i18n-65.0/az.xpi) = aa11435e5062314f3461a0ddcb5888ebbdbd75b3d55bc450a839b94064f07bf1 -SIZE (xpi/firefox-i18n-65.0/az.xpi) = 488813 -SHA256 (xpi/firefox-i18n-65.0/be.xpi) = 53085fae0b89f26a75c2f2f7efe7668628d2c9a7b5f20ef15d66cb69d488178f -SIZE (xpi/firefox-i18n-65.0/be.xpi) = 539155 -SHA256 (xpi/firefox-i18n-65.0/bg.xpi) = 16b83953f8a1138a1b97da527f9473671c3a86ce0e3861d54e1d34eb143c8068 -SIZE (xpi/firefox-i18n-65.0/bg.xpi) = 521952 -SHA256 (xpi/firefox-i18n-65.0/bn-BD.xpi) = 62178c95acd6a2e917213a2357383aabf44b51153db813c71edbc7d940265e82 -SIZE (xpi/firefox-i18n-65.0/bn-BD.xpi) = 536531 -SHA256 (xpi/firefox-i18n-65.0/bn-IN.xpi) = a815247a1b8606d187f516837ec28062ad2ee55a999d09751bdb81b35cdfcd82 -SIZE (xpi/firefox-i18n-65.0/bn-IN.xpi) = 528104 -SHA256 (xpi/firefox-i18n-65.0/br.xpi) = 9df39954a4d0db91d29e6cad3765be6cc2c3a9e76b7844142e8e4e9f1b7b6f04 -SIZE (xpi/firefox-i18n-65.0/br.xpi) = 468614 -SHA256 (xpi/firefox-i18n-65.0/bs.xpi) = f155a1c8b52f7b1e1c84bec847824598f9e5c978ac49da9f5c7a8a3910f8c47a -SIZE (xpi/firefox-i18n-65.0/bs.xpi) = 463209 -SHA256 (xpi/firefox-i18n-65.0/ca.xpi) = 178c9671de9b13114790e2290445aad73a6753a3419603a957153914abbf4c15 -SIZE (xpi/firefox-i18n-65.0/ca.xpi) = 469759 -SHA256 (xpi/firefox-i18n-65.0/cak.xpi) = 5acd532be02856fc9a41cc9d034f37a10af6b803b827c4e42a47b0495358fe7d -SIZE (xpi/firefox-i18n-65.0/cak.xpi) = 492515 -SHA256 (xpi/firefox-i18n-65.0/cs.xpi) = 21289e4f4eec8783d912fd5bd17e75e050ca86fd937266a4c3b29b67d6c3b091 -SIZE (xpi/firefox-i18n-65.0/cs.xpi) = 482367 -SHA256 (xpi/firefox-i18n-65.0/cy.xpi) = 6234c49dafff7117819eb9cc396ed73ebf633fa76748f10f92ef2334ce642a71 -SIZE (xpi/firefox-i18n-65.0/cy.xpi) = 471834 -SHA256 (xpi/firefox-i18n-65.0/da.xpi) = 054d95d4e09c80018bb7618a1bb46f898908b24486f04c40647b4347c6f6c7bd -SIZE (xpi/firefox-i18n-65.0/da.xpi) = 474705 -SHA256 (xpi/firefox-i18n-65.0/de.xpi) = df159102386c8ca8e1f4a58348f36af7c6f9499cc279595f34e440009adc96eb -SIZE (xpi/firefox-i18n-65.0/de.xpi) = 482311 -SHA256 (xpi/firefox-i18n-65.0/dsb.xpi) = 15519bc72ee5b50d90a64ee423b27cd0a71322fb9b9b7b20e3f22145b955fc23 -SIZE (xpi/firefox-i18n-65.0/dsb.xpi) = 491040 -SHA256 (xpi/firefox-i18n-65.0/el.xpi) = 8a5811657703afeab8569f393eab4240264fdedd008aba4d941b1637869f1590 -SIZE (xpi/firefox-i18n-65.0/el.xpi) = 549048 -SHA256 (xpi/firefox-i18n-65.0/en-CA.xpi) = e4e9bbfa0b4861c318da3383e34cbf99a7254ec58a1d7c8eefa796c5a1274f13 -SIZE (xpi/firefox-i18n-65.0/en-CA.xpi) = 442342 -SHA256 (xpi/firefox-i18n-65.0/en-GB.xpi) = 1c4e16443640db97093fb64b47071de0e3fc4e119e767ba9a91098b968173c2b -SIZE (xpi/firefox-i18n-65.0/en-GB.xpi) = 441644 -SHA256 (xpi/firefox-i18n-65.0/en-US.xpi) = 24a0f236afd73b98eee515dbb3866cbee199f607fb1776c0a2921453f5e5902e -SIZE (xpi/firefox-i18n-65.0/en-US.xpi) = 409438 -SHA256 (xpi/firefox-i18n-65.0/en-ZA.xpi) = 513c0bb419c3be41a444fd093ad7328b9e3c567f5c17c0485005c6e962f6fadb -SIZE (xpi/firefox-i18n-65.0/en-ZA.xpi) = 421339 -SHA256 (xpi/firefox-i18n-65.0/eo.xpi) = a1244194a7bcb8b0ac9600c2207833c1e1df38357104c82f2aa1e95827ee804c -SIZE (xpi/firefox-i18n-65.0/eo.xpi) = 469163 -SHA256 (xpi/firefox-i18n-65.0/es-AR.xpi) = c92f033867b4c87ae34ebf4f98b14ccb753e03fdbf7cf5eb01e8c9d6029a6a2d -SIZE (xpi/firefox-i18n-65.0/es-AR.xpi) = 477375 -SHA256 (xpi/firefox-i18n-65.0/es-CL.xpi) = f4a6c1e56ca8f93dc8652ce4a9d847c20706dd9c703edd5a917c2824bff02cda -SIZE (xpi/firefox-i18n-65.0/es-CL.xpi) = 476261 -SHA256 (xpi/firefox-i18n-65.0/es-ES.xpi) = d71b183cef7013bd7ed509743f9f928fe33c997981714347443ce1f1d275fbf3 -SIZE (xpi/firefox-i18n-65.0/es-ES.xpi) = 437102 -SHA256 (xpi/firefox-i18n-65.0/es-MX.xpi) = 0d4cd61f3eea812db1260ce1910345ab8e70ecb631dc1a8651ea20551dba361b -SIZE (xpi/firefox-i18n-65.0/es-MX.xpi) = 479493 -SHA256 (xpi/firefox-i18n-65.0/et.xpi) = 2b62e18726d599f03755f82ef92e4447e611b41cde02fc3876b16ec38d347f35 -SIZE (xpi/firefox-i18n-65.0/et.xpi) = 460954 -SHA256 (xpi/firefox-i18n-65.0/eu.xpi) = 77257717689104d8c120858634681c2f400f457246ecad0b4e495d869fcbdc49 -SIZE (xpi/firefox-i18n-65.0/eu.xpi) = 468842 -SHA256 (xpi/firefox-i18n-65.0/fa.xpi) = 617a409bd0e6a78036c302f1a4e90b65905771b32ff10a4590fac2c0a1c6d818 -SIZE (xpi/firefox-i18n-65.0/fa.xpi) = 520143 -SHA256 (xpi/firefox-i18n-65.0/ff.xpi) = 83dca77b09a3e11e73a439791e4c7d9ce148b110bb813f237aaea1d9a9656da9 -SIZE (xpi/firefox-i18n-65.0/ff.xpi) = 461634 -SHA256 (xpi/firefox-i18n-65.0/fi.xpi) = 422a35e1026edc7beda095674db9400f398a124fb1216e52671d0c73c01437ff -SIZE (xpi/firefox-i18n-65.0/fi.xpi) = 459819 -SHA256 (xpi/firefox-i18n-65.0/fr.xpi) = 54de836f425ef099ffbd5c05c00a6a98fa7c18506343a96f9639080d3dfe647b -SIZE (xpi/firefox-i18n-65.0/fr.xpi) = 486273 -SHA256 (xpi/firefox-i18n-65.0/fy-NL.xpi) = 2be029a057d0f9a6d6cb538ffcbd3177ce4db9056c1876fdab1c026b24795212 -SIZE (xpi/firefox-i18n-65.0/fy-NL.xpi) = 474527 -SHA256 (xpi/firefox-i18n-65.0/ga-IE.xpi) = 6f9c68c95045fec3db6db2b0a253318d911c09551b5f76f22a8edd01f9eb3acb -SIZE (xpi/firefox-i18n-65.0/ga-IE.xpi) = 468124 -SHA256 (xpi/firefox-i18n-65.0/gd.xpi) = eb5eff657d0620d67e0101c2f6fac08c404ba939ecfe1ac7a7f2f2a3f24e00ce -SIZE (xpi/firefox-i18n-65.0/gd.xpi) = 479073 -SHA256 (xpi/firefox-i18n-65.0/gl.xpi) = d3864c5f842d121736e02edc9430d244c87925fbdcd2dc35966aecd46ac705e0 -SIZE (xpi/firefox-i18n-65.0/gl.xpi) = 463707 -SHA256 (xpi/firefox-i18n-65.0/gn.xpi) = 8505059bd327a325db11662895f76f534c633344a0ec7f834854361e7b60770b -SIZE (xpi/firefox-i18n-65.0/gn.xpi) = 485000 -SHA256 (xpi/firefox-i18n-65.0/gu-IN.xpi) = d619791e0ca9137c8965ab94228d23de45aee1afcc79e82dad1f1104bbbfa48b -SIZE (xpi/firefox-i18n-65.0/gu-IN.xpi) = 544747 -SHA256 (xpi/firefox-i18n-65.0/he.xpi) = d183570d4a565f9b6d33c0851c97b0f3bf86011258961fdd8f8c5035efd86dc8 -SIZE (xpi/firefox-i18n-65.0/he.xpi) = 485643 -SHA256 (xpi/firefox-i18n-65.0/hi-IN.xpi) = f2b67b48585e4cb86584c6f2f069d21c5a9c37772542e9fd0dc0999e4b7a7169 -SIZE (xpi/firefox-i18n-65.0/hi-IN.xpi) = 533022 -SHA256 (xpi/firefox-i18n-65.0/hr.xpi) = d3c3baf83d8f1cb54ed7f8053ba756c741d91d0a2978d1a6829b1cfe8fe27426 -SIZE (xpi/firefox-i18n-65.0/hr.xpi) = 465049 -SHA256 (xpi/firefox-i18n-65.0/hsb.xpi) = 1f6cb73c2a97a020afdbc49ad5fcbbec55c70ae6b8d02715a4fa3e550575a6a4 -SIZE (xpi/firefox-i18n-65.0/hsb.xpi) = 490634 -SHA256 (xpi/firefox-i18n-65.0/hu.xpi) = e01144fbd1f583a5520926d6f8e5deb4579ef03c4eadc9d32e91d8f7d8a6bf00 -SIZE (xpi/firefox-i18n-65.0/hu.xpi) = 488207 -SHA256 (xpi/firefox-i18n-65.0/hy-AM.xpi) = 30f0281837622d56a52616383a93b5958b2ee8c3881ab5b4d95a2e210905d3b1 -SIZE (xpi/firefox-i18n-65.0/hy-AM.xpi) = 510217 -SHA256 (xpi/firefox-i18n-65.0/ia.xpi) = d18f5c33f74029d4547f51002f6f9eaa84173fda14b65a7481cafa8ceae37393 -SIZE (xpi/firefox-i18n-65.0/ia.xpi) = 465433 -SHA256 (xpi/firefox-i18n-65.0/id.xpi) = 139bdd0f05f54810daa3349dfc5203d5c9b15fb4a28ae72fee0f2e2bb97fb665 -SIZE (xpi/firefox-i18n-65.0/id.xpi) = 459182 -SHA256 (xpi/firefox-i18n-65.0/is.xpi) = 7b15ded59193a36cef203895e0b8f86b2ec0099ad140bca629a8465c0f1d55d7 -SIZE (xpi/firefox-i18n-65.0/is.xpi) = 466957 -SHA256 (xpi/firefox-i18n-65.0/it.xpi) = c6dafe16cfff71b6d8236d91ca715d1015b51adc2888a0cc3a44aaedbd76a894 -SIZE (xpi/firefox-i18n-65.0/it.xpi) = 356549 -SHA256 (xpi/firefox-i18n-65.0/ja.xpi) = 6690741fc071d0b01570611a898f819334ae4ba9e3407513897602699ab2105a -SIZE (xpi/firefox-i18n-65.0/ja.xpi) = 504397 -SHA256 (xpi/firefox-i18n-65.0/ka.xpi) = aee82bb16d6252a72ef25d8834c5a6f8eb82fc5ed6b0ebb78fe3f94e511b38ea -SIZE (xpi/firefox-i18n-65.0/ka.xpi) = 512098 -SHA256 (xpi/firefox-i18n-65.0/kab.xpi) = 3231f100ea25b3cc5618adfacc3f13b9f383654ffc3702c3c0ce6db93c0d344e -SIZE (xpi/firefox-i18n-65.0/kab.xpi) = 480077 -SHA256 (xpi/firefox-i18n-65.0/kk.xpi) = 1d7c50626974a47e1931f65a94e03dd713103c1ab09ed30ab83110b5d6560a5f -SIZE (xpi/firefox-i18n-65.0/kk.xpi) = 535904 -SHA256 (xpi/firefox-i18n-65.0/km.xpi) = 27d20795c2522e1d9d5a21ee59c31349a3514d3e832b26c1e024331b75aa170c -SIZE (xpi/firefox-i18n-65.0/km.xpi) = 526578 -SHA256 (xpi/firefox-i18n-65.0/kn.xpi) = 75d7195074c205c10a0a6c89419163b18ae30d133cea519df59b6b868cd1733e -SIZE (xpi/firefox-i18n-65.0/kn.xpi) = 528125 -SHA256 (xpi/firefox-i18n-65.0/ko.xpi) = 0b5c2d95e1f61835f942f712613750e89e0e607ff465d420e5d4ef2fa222ee14 -SIZE (xpi/firefox-i18n-65.0/ko.xpi) = 495305 -SHA256 (xpi/firefox-i18n-65.0/lij.xpi) = 2539aab832d7be893c79f56eff189577d6466db19f85de6a80378eb1d2c935ad -SIZE (xpi/firefox-i18n-65.0/lij.xpi) = 465948 -SHA256 (xpi/firefox-i18n-65.0/lt.xpi) = d54561bfc11cec9b0fd4bf9f3ded2a4abfa2e5761b63704a6d996ae4554b5d38 -SIZE (xpi/firefox-i18n-65.0/lt.xpi) = 490193 -SHA256 (xpi/firefox-i18n-65.0/lv.xpi) = e69c9f1e9dda984cf00cbc1d226ecccf2b1ea04af9cfe7962081e5d1ebfc8c16 -SIZE (xpi/firefox-i18n-65.0/lv.xpi) = 478935 -SHA256 (xpi/firefox-i18n-65.0/mai.xpi) = dad3fa900eaac56a1dce3598b605e302357b4e7b2b494cf9c2ca22e1ed6efc5b -SIZE (xpi/firefox-i18n-65.0/mai.xpi) = 489178 -SHA256 (xpi/firefox-i18n-65.0/mk.xpi) = cb3231cd193eb4e7b6444699a691e384f97f852ef56c1cc37a7ff87665b58411 -SIZE (xpi/firefox-i18n-65.0/mk.xpi) = 464187 -SHA256 (xpi/firefox-i18n-65.0/ml.xpi) = f834afe8060d8213c8337d6880f5632bc38a6925334f98712b3ab488bb02eaf1 -SIZE (xpi/firefox-i18n-65.0/ml.xpi) = 534382 -SHA256 (xpi/firefox-i18n-65.0/mr.xpi) = c8220c5426965afa5f8342a91400e811dbe1b312c132ed80b6c0fde4e0c6b1c0 -SIZE (xpi/firefox-i18n-65.0/mr.xpi) = 528018 -SHA256 (xpi/firefox-i18n-65.0/ms.xpi) = 7fa815af784b6c485685bc39a590696e8096ac4d3bef28011d80a71a618ca583 -SIZE (xpi/firefox-i18n-65.0/ms.xpi) = 460717 -SHA256 (xpi/firefox-i18n-65.0/my.xpi) = 2ba4ee10582d399cae5b7c4e6564429eae1f36712b5990bead3c7d8a3e7dc61f -SIZE (xpi/firefox-i18n-65.0/my.xpi) = 523395 -SHA256 (xpi/firefox-i18n-65.0/nb-NO.xpi) = aa9ec734ddda5116039fceee3433e8a20e65b5a3dfec3c9bcc18b1e1db60ba5d -SIZE (xpi/firefox-i18n-65.0/nb-NO.xpi) = 461048 -SHA256 (xpi/firefox-i18n-65.0/ne-NP.xpi) = 92df908b9c79944ee9ea3fe385e7a0df396ca7fb6accd282ef744aadb90b326f -SIZE (xpi/firefox-i18n-65.0/ne-NP.xpi) = 503823 -SHA256 (xpi/firefox-i18n-65.0/nl.xpi) = 286fde23208850692edbeeca926d836d6d5b1a29fe11d2d730663b971e498060 -SIZE (xpi/firefox-i18n-65.0/nl.xpi) = 458731 -SHA256 (xpi/firefox-i18n-65.0/nn-NO.xpi) = dbe77855b5566981b1affa5830ca022ebf888158e84dc65ddd5c9c1b42103069 -SIZE (xpi/firefox-i18n-65.0/nn-NO.xpi) = 460163 -SHA256 (xpi/firefox-i18n-65.0/oc.xpi) = 36913761c62c0aaa8d4e1e403e7dbdadc4b988a848a25a4db43070d26b53ae02 -SIZE (xpi/firefox-i18n-65.0/oc.xpi) = 476893 -SHA256 (xpi/firefox-i18n-65.0/or.xpi) = 0da8033fdc85a061bbd2d8400ca240950d8b6af7150d32322b15531e66e521f4 -SIZE (xpi/firefox-i18n-65.0/or.xpi) = 479085 -SHA256 (xpi/firefox-i18n-65.0/pa-IN.xpi) = 60adb5f2c8ca4bc03da59beaf750d098a20f0ef23175acbe7e3cfb6e99c4150e -SIZE (xpi/firefox-i18n-65.0/pa-IN.xpi) = 510889 -SHA256 (xpi/firefox-i18n-65.0/pl.xpi) = 0310310dd904e7a2066ff997fc5186f42289f2e59686d97d6c168af2457d0935 -SIZE (xpi/firefox-i18n-65.0/pl.xpi) = 378829 -SHA256 (xpi/firefox-i18n-65.0/pt-BR.xpi) = a870ee0e91b96ff1ee8d2c15b6f14fa100243b20d4e1c5a6c5845142278e1e23 -SIZE (xpi/firefox-i18n-65.0/pt-BR.xpi) = 463443 -SHA256 (xpi/firefox-i18n-65.0/pt-PT.xpi) = f908929d8a9aeb81f16609f0961584e62512e2ad50c9ae490f517f87eddbc09d -SIZE (xpi/firefox-i18n-65.0/pt-PT.xpi) = 475344 -SHA256 (xpi/firefox-i18n-65.0/rm.xpi) = 7f9abb1f7ef1357ce0af22b1996b95fc656c73ec3b9ea2175bbab985ea28630d -SIZE (xpi/firefox-i18n-65.0/rm.xpi) = 466660 -SHA256 (xpi/firefox-i18n-65.0/ro.xpi) = 9dfd26824cdb804068815aa5959290bda31def3ac1be46ce9a335ff4e8b43715 -SIZE (xpi/firefox-i18n-65.0/ro.xpi) = 475441 -SHA256 (xpi/firefox-i18n-65.0/ru.xpi) = dd1dbc873f6022b66d2d6330419f76c1e354c30fd66b47dc1501f4173daec0f0 -SIZE (xpi/firefox-i18n-65.0/ru.xpi) = 542358 -SHA256 (xpi/firefox-i18n-65.0/si.xpi) = 2c7daa59347cfeec6346637c7c2deb9b51367a4250c7272f5dfe098c35a22d1e -SIZE (xpi/firefox-i18n-65.0/si.xpi) = 491181 -SHA256 (xpi/firefox-i18n-65.0/sk.xpi) = a6b5af1e79c0252bef9aaed5e7a1403112b4a9f7e218343e8681b9b257f055a0 -SIZE (xpi/firefox-i18n-65.0/sk.xpi) = 492573 -SHA256 (xpi/firefox-i18n-65.0/sl.xpi) = d6412c883ea9f512bc2f5b1f4923837d339577903e1a9e8886cc14d2a133afef -SIZE (xpi/firefox-i18n-65.0/sl.xpi) = 468039 -SHA256 (xpi/firefox-i18n-65.0/son.xpi) = 2c29bd7df7da01412e9b6a02c7a8538e26c3a43d20780308e27dffec5a6882fd -SIZE (xpi/firefox-i18n-65.0/son.xpi) = 443501 -SHA256 (xpi/firefox-i18n-65.0/sq.xpi) = 174e22eea67a1fc62018baebe6b1145641b7aca3517996ca7b8156c1e52e19aa -SIZE (xpi/firefox-i18n-65.0/sq.xpi) = 483758 -SHA256 (xpi/firefox-i18n-65.0/sr.xpi) = 6eebe3873fe89c6b74e06c3629e59ef2bf32b755889f7e43ac718c09a3d55087 -SIZE (xpi/firefox-i18n-65.0/sr.xpi) = 498950 -SHA256 (xpi/firefox-i18n-65.0/sv-SE.xpi) = a74c087cf5619aad8808d9ff46f96eb96c8e9971ce4c18f66d91befb05f0701c -SIZE (xpi/firefox-i18n-65.0/sv-SE.xpi) = 470813 -SHA256 (xpi/firefox-i18n-65.0/ta.xpi) = 04747c1032ce8e27bebcbbb75cf6192cd45c78a1002d8c8e31bbb2fa7b41a999 -SIZE (xpi/firefox-i18n-65.0/ta.xpi) = 522778 -SHA256 (xpi/firefox-i18n-65.0/te.xpi) = d09bd777b7af2fa33016d8319a4667693ca6ec7841a3f7fa65c9573f0296c499 -SIZE (xpi/firefox-i18n-65.0/te.xpi) = 534585 -SHA256 (xpi/firefox-i18n-65.0/th.xpi) = d3d3b8e265ed18aac59e07ef1b28d53544c3c74eadd64fa49ba9d816019791d3 -SIZE (xpi/firefox-i18n-65.0/th.xpi) = 507521 -SHA256 (xpi/firefox-i18n-65.0/tr.xpi) = b9a1649d44d270f1ea75425e0a240ed3a6a9c93c48d574095b2d99e4d84e9e3c -SIZE (xpi/firefox-i18n-65.0/tr.xpi) = 481299 -SHA256 (xpi/firefox-i18n-65.0/uk.xpi) = feacbc7d10c635701dfb6864adc5c72ac98c4c493f5dbe126f27aa56000696c3 -SIZE (xpi/firefox-i18n-65.0/uk.xpi) = 528931 -SHA256 (xpi/firefox-i18n-65.0/ur.xpi) = 673c351b3c76d927240abfbb571954ff86fbf3dc98c56b41c6a9f6aec35697ed -SIZE (xpi/firefox-i18n-65.0/ur.xpi) = 511338 -SHA256 (xpi/firefox-i18n-65.0/uz.xpi) = 7cebbbfb3b203ce0da6d4872846df4687955afbae742ae14eb9cbe8c974eba1e -SIZE (xpi/firefox-i18n-65.0/uz.xpi) = 460813 -SHA256 (xpi/firefox-i18n-65.0/vi.xpi) = de35632b65856af4a2a87d529b835b2748303e907412241e03df0cba1f83918a -SIZE (xpi/firefox-i18n-65.0/vi.xpi) = 486524 -SHA256 (xpi/firefox-i18n-65.0/xh.xpi) = c9a60df8dbf4b11e8cfe06cd720cd652117d17050454583daf721624288f7f8c -SIZE (xpi/firefox-i18n-65.0/xh.xpi) = 455414 -SHA256 (xpi/firefox-i18n-65.0/zh-CN.xpi) = 8b477d44eb17f9c1ee3afed8a06f7b2642b3e177a7f59b03cc4d6bd0f9d8ea62 -SIZE (xpi/firefox-i18n-65.0/zh-CN.xpi) = 494803 -SHA256 (xpi/firefox-i18n-65.0/zh-TW.xpi) = e01b44db4deb9b2637bc70d4c444679a7cfd9b6e40dc9eb87c696a76b17a8e13 -SIZE (xpi/firefox-i18n-65.0/zh-TW.xpi) = 492966 +TIMESTAMP = 1549967938 +SHA256 (xpi/firefox-i18n-65.0.1/ach.xpi) = 4882c755c4ad198261e32ee3a7ff10cba700c21bbac5b1a2876fde6e8d38345c +SIZE (xpi/firefox-i18n-65.0.1/ach.xpi) = 447455 +SHA256 (xpi/firefox-i18n-65.0.1/af.xpi) = 53e0568f8d509a168d523c1b3ef451cdf6e5a905cced33c4442117073a606a29 +SIZE (xpi/firefox-i18n-65.0.1/af.xpi) = 437790 +SHA256 (xpi/firefox-i18n-65.0.1/an.xpi) = 0375040ca1bbcde7f33f4aba7cdc80b88a2b2c257c8f581891ed4e737c7fb185 +SIZE (xpi/firefox-i18n-65.0.1/an.xpi) = 465003 +SHA256 (xpi/firefox-i18n-65.0.1/ar.xpi) = b0e5c6c25e6ffcd6a60bebc93547b9ec7d4649f163ceed99548a831174d7f82f +SIZE (xpi/firefox-i18n-65.0.1/ar.xpi) = 509020 +SHA256 (xpi/firefox-i18n-65.0.1/as.xpi) = 4900b4db3de66110b408908d08fe714dc5f8b06d1da2c1d60d1fb2470a8bc996 +SIZE (xpi/firefox-i18n-65.0.1/as.xpi) = 472923 +SHA256 (xpi/firefox-i18n-65.0.1/ast.xpi) = c96755886065388dea39dd7227bcb5913baedaad1e95c1ce1b349da03f70fadf +SIZE (xpi/firefox-i18n-65.0.1/ast.xpi) = 462337 +SHA256 (xpi/firefox-i18n-65.0.1/az.xpi) = 3d1b73b99b2d14e10ab70529df4ddfceac51335e2d9125714486dd6acc2f8053 +SIZE (xpi/firefox-i18n-65.0.1/az.xpi) = 488817 +SHA256 (xpi/firefox-i18n-65.0.1/be.xpi) = f470c6db76be0c234aefe5cc5c586bb5d8c8fed55301202960986e02e97f7c23 +SIZE (xpi/firefox-i18n-65.0.1/be.xpi) = 539154 +SHA256 (xpi/firefox-i18n-65.0.1/bg.xpi) = ab6e64fb8cae6f7ca1deeb6548c071e584eb321049e3befc1b25db2372726f7f +SIZE (xpi/firefox-i18n-65.0.1/bg.xpi) = 521955 +SHA256 (xpi/firefox-i18n-65.0.1/bn-BD.xpi) = 8e4b5eb8cb0deff740b92527a087d395f4a7fab7161924be746c267056fde96f +SIZE (xpi/firefox-i18n-65.0.1/bn-BD.xpi) = 536538 +SHA256 (xpi/firefox-i18n-65.0.1/bn-IN.xpi) = 7b08cef9fda68022d3466929906c10a53f2bacde4518ef7ea247a526e537ad5c +SIZE (xpi/firefox-i18n-65.0.1/bn-IN.xpi) = 528103 +SHA256 (xpi/firefox-i18n-65.0.1/br.xpi) = 2642ace02e559a1318b280955bd3e5318ed85a155c32a0710e8f33dcd7ef4d60 +SIZE (xpi/firefox-i18n-65.0.1/br.xpi) = 468617 +SHA256 (xpi/firefox-i18n-65.0.1/bs.xpi) = b3bff09f8e10f1c4271a8caa67bbb0703dac07277162375156d60bccb9ff1298 +SIZE (xpi/firefox-i18n-65.0.1/bs.xpi) = 463199 +SHA256 (xpi/firefox-i18n-65.0.1/ca.xpi) = c298b2adbf585741d638633222ad7ec3c620fbfe7b0f3cb7739a1b1ed8bef453 +SIZE (xpi/firefox-i18n-65.0.1/ca.xpi) = 469759 +SHA256 (xpi/firefox-i18n-65.0.1/cak.xpi) = e4b71afab204091381c09aebe2cc0c16d1cc6b9d38933c14ccff80546812f24a +SIZE (xpi/firefox-i18n-65.0.1/cak.xpi) = 492510 +SHA256 (xpi/firefox-i18n-65.0.1/cs.xpi) = b18e9b8e8909f6979fe09615d59fd7a9277364b535b1f0b7e70974244b6e8d05 +SIZE (xpi/firefox-i18n-65.0.1/cs.xpi) = 482367 +SHA256 (xpi/firefox-i18n-65.0.1/cy.xpi) = 6fc4d476dea6a8405b1c184ab5e47453d55772c924a1e1482a586b8d505ac616 +SIZE (xpi/firefox-i18n-65.0.1/cy.xpi) = 471832 +SHA256 (xpi/firefox-i18n-65.0.1/da.xpi) = ddd2013b41f979e4607455c25787ec813f8398a0eb091a3934bbf20f02bf277d +SIZE (xpi/firefox-i18n-65.0.1/da.xpi) = 474705 +SHA256 (xpi/firefox-i18n-65.0.1/de.xpi) = d5fa265a898a1bf90a6ba87057fe2d0d8286ee080646c9b51bb3b9540334fb10 +SIZE (xpi/firefox-i18n-65.0.1/de.xpi) = 482310 +SHA256 (xpi/firefox-i18n-65.0.1/dsb.xpi) = 5aaf8729b9000bac421aa4e4eb4fee82edd9e0255e60efbbb67ebaa6831bdd45 +SIZE (xpi/firefox-i18n-65.0.1/dsb.xpi) = 491033 +SHA256 (xpi/firefox-i18n-65.0.1/el.xpi) = 1558148b7109e104e6e224bf8fa4d57f71d9b8d3b78048214692d785081cf86c +SIZE (xpi/firefox-i18n-65.0.1/el.xpi) = 549046 +SHA256 (xpi/firefox-i18n-65.0.1/en-CA.xpi) = 8dc897ebe0659719b028b11dd1cf836524d91eff256549638a1a41c1cce782f6 +SIZE (xpi/firefox-i18n-65.0.1/en-CA.xpi) = 442343 +SHA256 (xpi/firefox-i18n-65.0.1/en-GB.xpi) = 0bdec3e542f2f2b51587507441ff64063603dec2d579cf6a96466e4a69734cc2 +SIZE (xpi/firefox-i18n-65.0.1/en-GB.xpi) = 441648 +SHA256 (xpi/firefox-i18n-65.0.1/en-US.xpi) = ae45e96f25f5e96d03984a2c8c5a3244da1bb448d952b24e1197cc7ea2aece71 +SIZE (xpi/firefox-i18n-65.0.1/en-US.xpi) = 409436 +SHA256 (xpi/firefox-i18n-65.0.1/en-ZA.xpi) = a416fc9fa89df86e93ac3f324a185e090d3f1396aa2cc7b13fc7d6fb6ccf1919 +SIZE (xpi/firefox-i18n-65.0.1/en-ZA.xpi) = 421338 +SHA256 (xpi/firefox-i18n-65.0.1/eo.xpi) = 82ada4666228d5e7e79e4f40c3c08c8abfde2308a93866344ea4b0c592a5ab4b +SIZE (xpi/firefox-i18n-65.0.1/eo.xpi) = 469159 +SHA256 (xpi/firefox-i18n-65.0.1/es-AR.xpi) = 39c3bdfd19db8cb41b7f075c61be9ce1847e649f251df0df559bcd34d5bb9eee +SIZE (xpi/firefox-i18n-65.0.1/es-AR.xpi) = 477372 +SHA256 (xpi/firefox-i18n-65.0.1/es-CL.xpi) = 6fbfbf0b637fbadc6ae6a12098f56340dfd642d3bf471c1779096a1bd8a662c4 +SIZE (xpi/firefox-i18n-65.0.1/es-CL.xpi) = 476255 +SHA256 (xpi/firefox-i18n-65.0.1/es-ES.xpi) = 17356aabf310d802ca2749bc7dde31432cbae10b25ca6087107471477e7d72c1 +SIZE (xpi/firefox-i18n-65.0.1/es-ES.xpi) = 437106 +SHA256 (xpi/firefox-i18n-65.0.1/es-MX.xpi) = 986472da6e7d20297a00ed70654cb0d42eb744de75a2febf584b34b1b2561294 +SIZE (xpi/firefox-i18n-65.0.1/es-MX.xpi) = 479489 +SHA256 (xpi/firefox-i18n-65.0.1/et.xpi) = 6ba8279a580f7c31a1475d0644e15dc2bb4a8086267483a217f3db4c0726163c +SIZE (xpi/firefox-i18n-65.0.1/et.xpi) = 460952 +SHA256 (xpi/firefox-i18n-65.0.1/eu.xpi) = 1ef736e5826de9dd441f74ed6737e6e77a52e68c6b18979253695b71f2434bca +SIZE (xpi/firefox-i18n-65.0.1/eu.xpi) = 468839 +SHA256 (xpi/firefox-i18n-65.0.1/fa.xpi) = c30601b1f429a13e311ad643c5281d19d29a7e7058d87db803cc55288853b766 +SIZE (xpi/firefox-i18n-65.0.1/fa.xpi) = 520142 +SHA256 (xpi/firefox-i18n-65.0.1/ff.xpi) = 6bde4fc6b5031c13584b3e94e1dc0a9bee877c116176784d9757ac8e3d869392 +SIZE (xpi/firefox-i18n-65.0.1/ff.xpi) = 461633 +SHA256 (xpi/firefox-i18n-65.0.1/fi.xpi) = 90c35ae5a4ed859de5a3ad1f4f407356ab666c5ac111951e89fd4e11ffc3e2ae +SIZE (xpi/firefox-i18n-65.0.1/fi.xpi) = 459813 +SHA256 (xpi/firefox-i18n-65.0.1/fr.xpi) = 2f4da92f287908b194a17f8e5e6fec64f9ee00c707aa0b4ffe5d938f4a535366 +SIZE (xpi/firefox-i18n-65.0.1/fr.xpi) = 486268 +SHA256 (xpi/firefox-i18n-65.0.1/fy-NL.xpi) = f85a4bfe80dac0edcc9b31052b06e84976b9f68ef3502d694a095efafb5e2a72 +SIZE (xpi/firefox-i18n-65.0.1/fy-NL.xpi) = 474520 +SHA256 (xpi/firefox-i18n-65.0.1/ga-IE.xpi) = 1a9a912344ae7704a8e1fe52ad8cb429c9d54104652997c985ce632aff87c4af +SIZE (xpi/firefox-i18n-65.0.1/ga-IE.xpi) = 468127 +SHA256 (xpi/firefox-i18n-65.0.1/gd.xpi) = bfdeddcce3cb0fca9ac6572e6a06bc6b64d0c9e2f1e8e0c64986fbd4388b7161 +SIZE (xpi/firefox-i18n-65.0.1/gd.xpi) = 479078 +SHA256 (xpi/firefox-i18n-65.0.1/gl.xpi) = 33427142c8ad8095570c4a58963ba005d8ba79590ad79d7c61d6aba635c61228 +SIZE (xpi/firefox-i18n-65.0.1/gl.xpi) = 463703 +SHA256 (xpi/firefox-i18n-65.0.1/gn.xpi) = 9e5972bd0ae30a8fd3c001573b35b3fc34f8451813bcef473b913192775f47a4 +SIZE (xpi/firefox-i18n-65.0.1/gn.xpi) = 484995 +SHA256 (xpi/firefox-i18n-65.0.1/gu-IN.xpi) = 06f4bc759bfac109c98ed1d9ed4e4d9c405797783b2ba072a681b6e4029f62de +SIZE (xpi/firefox-i18n-65.0.1/gu-IN.xpi) = 544747 +SHA256 (xpi/firefox-i18n-65.0.1/he.xpi) = 8234ec6ee77d4f23ed5ed6873125546e3f3fd305c1bd8325f8487d4ac0b1e28a +SIZE (xpi/firefox-i18n-65.0.1/he.xpi) = 485644 +SHA256 (xpi/firefox-i18n-65.0.1/hi-IN.xpi) = e8ab5dabd1881430dbe9003e91a129ddd0dc79b2660853f9ff73767d0f72b8ca +SIZE (xpi/firefox-i18n-65.0.1/hi-IN.xpi) = 533016 +SHA256 (xpi/firefox-i18n-65.0.1/hr.xpi) = d0dcd8f2a610b4fec783bad1dbe9d10f3af8a5abf4ff6a2075fc8265d2a1bf59 +SIZE (xpi/firefox-i18n-65.0.1/hr.xpi) = 465043 +SHA256 (xpi/firefox-i18n-65.0.1/hsb.xpi) = d298116c7844e11963ce8e912fa69c165106a2312abf7c42aff6eeda75535e5b +SIZE (xpi/firefox-i18n-65.0.1/hsb.xpi) = 490635 +SHA256 (xpi/firefox-i18n-65.0.1/hu.xpi) = cfb8602464eb169dfacb6b75e59200f3720d8b996e02abb281c1d604a0c4425d +SIZE (xpi/firefox-i18n-65.0.1/hu.xpi) = 488206 +SHA256 (xpi/firefox-i18n-65.0.1/hy-AM.xpi) = e5d643c7a108963474da0a9f8fdd577aee561170b35b5f4ac2a88622e20676a9 +SIZE (xpi/firefox-i18n-65.0.1/hy-AM.xpi) = 510217 +SHA256 (xpi/firefox-i18n-65.0.1/ia.xpi) = a4d6758a6e21b79c4f8a2031bd3b66891277ec863b21e7573eb2f268d1b620fc +SIZE (xpi/firefox-i18n-65.0.1/ia.xpi) = 465430 +SHA256 (xpi/firefox-i18n-65.0.1/id.xpi) = f36bf377067b89fbe3615ad4a0be9e017c94aeea197d1515c3d449a452655bf3 +SIZE (xpi/firefox-i18n-65.0.1/id.xpi) = 459190 +SHA256 (xpi/firefox-i18n-65.0.1/is.xpi) = 8eeaef2fadaaa231cdadc37dfbe15c0353024fd3ad870578b57497617ac0cd76 +SIZE (xpi/firefox-i18n-65.0.1/is.xpi) = 466951 +SHA256 (xpi/firefox-i18n-65.0.1/it.xpi) = 506ccfbb56b2ebb81c6868778108c7187aaefad279200645d87e04c68641f79b +SIZE (xpi/firefox-i18n-65.0.1/it.xpi) = 356552 +SHA256 (xpi/firefox-i18n-65.0.1/ja.xpi) = 34102007fd82a196b9eafc97f9c64eb7fa48d8b185f66d33cb4ce1e9d5239778 +SIZE (xpi/firefox-i18n-65.0.1/ja.xpi) = 504404 +SHA256 (xpi/firefox-i18n-65.0.1/ka.xpi) = aae67304cf81f1e2280bf8e470619783ea6deabe4901bbf9c9c82173dfb8d9ad +SIZE (xpi/firefox-i18n-65.0.1/ka.xpi) = 512102 +SHA256 (xpi/firefox-i18n-65.0.1/kab.xpi) = efcdfccf23f85d77e13ae6a67199431dd7fd0627bf10df535e317e65bc2183da +SIZE (xpi/firefox-i18n-65.0.1/kab.xpi) = 480079 +SHA256 (xpi/firefox-i18n-65.0.1/kk.xpi) = e3ee6c16a86e5a90b5a4f903ca6056406b92fc39089ca02f713550d05eb53886 +SIZE (xpi/firefox-i18n-65.0.1/kk.xpi) = 535900 +SHA256 (xpi/firefox-i18n-65.0.1/km.xpi) = 738be8424d441a8aea47dd5c550913897ad6b5dd86b033c19d9aa1b02c6e6bb3 +SIZE (xpi/firefox-i18n-65.0.1/km.xpi) = 526568 +SHA256 (xpi/firefox-i18n-65.0.1/kn.xpi) = 8f9005866a1145b1fe3cbcb4901524a2d9b23836a2b658a4b2448e960a285a06 +SIZE (xpi/firefox-i18n-65.0.1/kn.xpi) = 528121 +SHA256 (xpi/firefox-i18n-65.0.1/ko.xpi) = 12cb240acddadc5da32caedbeaa963d61ced712e6225d21cff2be43019ab2ad3 +SIZE (xpi/firefox-i18n-65.0.1/ko.xpi) = 495297 +SHA256 (xpi/firefox-i18n-65.0.1/lij.xpi) = 4dc7759e4c6b9484e49277f166ce92907294d0ef182d07baca3bc8255d1407cb +SIZE (xpi/firefox-i18n-65.0.1/lij.xpi) = 465948 +SHA256 (xpi/firefox-i18n-65.0.1/lt.xpi) = fbfc8cb12bd5baeb1f0ab49fab412887d164bdbc8c3b07bf9021e67e48bfa970 +SIZE (xpi/firefox-i18n-65.0.1/lt.xpi) = 490195 +SHA256 (xpi/firefox-i18n-65.0.1/lv.xpi) = d8f1b068718f35cbdae53a6ddb34cb17e7efb532f974f019ae4918eae75d999c +SIZE (xpi/firefox-i18n-65.0.1/lv.xpi) = 478931 +SHA256 (xpi/firefox-i18n-65.0.1/mai.xpi) = fb2e9556b22f20e5565c5c072f0b9cdcf0e60678f2365c087118292fa0db14e0 +SIZE (xpi/firefox-i18n-65.0.1/mai.xpi) = 489173 +SHA256 (xpi/firefox-i18n-65.0.1/mk.xpi) = 13bccceaba758c9d3973d32721443cd073c359faf2efa2883b3f5b958ce21cf4 +SIZE (xpi/firefox-i18n-65.0.1/mk.xpi) = 464186 +SHA256 (xpi/firefox-i18n-65.0.1/ml.xpi) = 83735b4edfcccb6625e4e83436010da94de31baaea18ba98127e4c54fde6fdd4 +SIZE (xpi/firefox-i18n-65.0.1/ml.xpi) = 534391 +SHA256 (xpi/firefox-i18n-65.0.1/mr.xpi) = d9fbd33c91fabc9a3af3a848785738722e926b9ed9d606a47ba94fbde301be8c +SIZE (xpi/firefox-i18n-65.0.1/mr.xpi) = 528017 +SHA256 (xpi/firefox-i18n-65.0.1/ms.xpi) = 2c5c71dbed8047f11980ffde599fead54234f9025ffa381de2b006bd9379348c +SIZE (xpi/firefox-i18n-65.0.1/ms.xpi) = 460712 +SHA256 (xpi/firefox-i18n-65.0.1/my.xpi) = 7142b3b757abdaf1162033f450aa591653af070b140075ca6dcdf96b3877f406 +SIZE (xpi/firefox-i18n-65.0.1/my.xpi) = 523391 +SHA256 (xpi/firefox-i18n-65.0.1/nb-NO.xpi) = 8879dd1c8c7e2e0385137352a9d07a7ce3c1bea912a58bd6db32013072b0b4ff +SIZE (xpi/firefox-i18n-65.0.1/nb-NO.xpi) = 461046 +SHA256 (xpi/firefox-i18n-65.0.1/ne-NP.xpi) = 26df53dc3898d5acc471450978273fd130fc918d1f1bfa55310e8454bfcd920b +SIZE (xpi/firefox-i18n-65.0.1/ne-NP.xpi) = 503822 +SHA256 (xpi/firefox-i18n-65.0.1/nl.xpi) = 28a203a00e6817197c500856e8bf560ea2822d213c0c35b202a1ab8fa9286452 +SIZE (xpi/firefox-i18n-65.0.1/nl.xpi) = 458729 +SHA256 (xpi/firefox-i18n-65.0.1/nn-NO.xpi) = e47d91a6321a41f26732c2803bc9510502bb2d82b0cfee6d3e514a7006c648a2 +SIZE (xpi/firefox-i18n-65.0.1/nn-NO.xpi) = 460160 +SHA256 (xpi/firefox-i18n-65.0.1/oc.xpi) = 012da13ab62b6da3b3cbbaa05007a4f55e7ed5f3b8ac92640ce6c55cc1d1376d +SIZE (xpi/firefox-i18n-65.0.1/oc.xpi) = 476885 +SHA256 (xpi/firefox-i18n-65.0.1/or.xpi) = 755f5f616d95cf8933a50de79fb4b4e298286bc7afb8cb4b124b36fdd18239d2 +SIZE (xpi/firefox-i18n-65.0.1/or.xpi) = 479084 +SHA256 (xpi/firefox-i18n-65.0.1/pa-IN.xpi) = 3f1b460b5aa787b83a792dd9892d507c0696ba19bd698cdb207352db51c03b80 +SIZE (xpi/firefox-i18n-65.0.1/pa-IN.xpi) = 510889 +SHA256 (xpi/firefox-i18n-65.0.1/pl.xpi) = a66cbf9624aead19faff20fc97fff4b35b11f759091591b566151ef639a24c64 +SIZE (xpi/firefox-i18n-65.0.1/pl.xpi) = 378830 +SHA256 (xpi/firefox-i18n-65.0.1/pt-BR.xpi) = b6f5185aa097cca1ff1ab2490843a2ddc873ff67bdc5b988cd07dbde76ad4329 +SIZE (xpi/firefox-i18n-65.0.1/pt-BR.xpi) = 463439 +SHA256 (xpi/firefox-i18n-65.0.1/pt-PT.xpi) = 46ed195bf26133de4a4087eb961c90707c10d989b9336c12247f0a8a028f9802 +SIZE (xpi/firefox-i18n-65.0.1/pt-PT.xpi) = 475351 +SHA256 (xpi/firefox-i18n-65.0.1/rm.xpi) = c52be90b021cc16af3a0449640c77fafdce833b2d7c28843df1abc178540a5ca +SIZE (xpi/firefox-i18n-65.0.1/rm.xpi) = 466655 +SHA256 (xpi/firefox-i18n-65.0.1/ro.xpi) = cba7034301b5979cca882096f78b653c6a590a7e850d87faf19dbc094aadfbce +SIZE (xpi/firefox-i18n-65.0.1/ro.xpi) = 475444 +SHA256 (xpi/firefox-i18n-65.0.1/ru.xpi) = 87c4d3fa98b430ef65f9754763a5b029fd2e8925c0fa05b075f9981bc16af752 +SIZE (xpi/firefox-i18n-65.0.1/ru.xpi) = 542358 +SHA256 (xpi/firefox-i18n-65.0.1/si.xpi) = 3fe1c21e90701780d48e4a94db3dd37b5db873b78fe25284b05b12f4c3da13a9 +SIZE (xpi/firefox-i18n-65.0.1/si.xpi) = 491179 +SHA256 (xpi/firefox-i18n-65.0.1/sk.xpi) = d1e5d7ec5e1219d65153ae089c8dacc5e373ace5f705522b5985f15d760943be +SIZE (xpi/firefox-i18n-65.0.1/sk.xpi) = 492574 +SHA256 (xpi/firefox-i18n-65.0.1/sl.xpi) = d5ea42421d46e55fa5468ee6eaf8b2a976bcaaeb5f013786b37b18791f546554 +SIZE (xpi/firefox-i18n-65.0.1/sl.xpi) = 468039 +SHA256 (xpi/firefox-i18n-65.0.1/son.xpi) = e531db675dc1768764adb380428d02c077ba3875fae7c841c51464808d900b2f +SIZE (xpi/firefox-i18n-65.0.1/son.xpi) = 443503 +SHA256 (xpi/firefox-i18n-65.0.1/sq.xpi) = a7cd381e8e2048474c2ea35d50b199b756e0b6a9eaa9b56bae9c339f87da7530 +SIZE (xpi/firefox-i18n-65.0.1/sq.xpi) = 483753 +SHA256 (xpi/firefox-i18n-65.0.1/sr.xpi) = 5b444f078647de63ce8f3ffec341647d6493ed38bab84d0309f4cc4b7dc5739c +SIZE (xpi/firefox-i18n-65.0.1/sr.xpi) = 498946 +SHA256 (xpi/firefox-i18n-65.0.1/sv-SE.xpi) = d5fa947636f865ad16b0c6902fe6f9bdd450a9c888067f2e5f2046693f99605a +SIZE (xpi/firefox-i18n-65.0.1/sv-SE.xpi) = 470812 +SHA256 (xpi/firefox-i18n-65.0.1/ta.xpi) = 828aa513c4f6a147670e360f6665aab1986f1b6ce158525b916f10c5e9d06b76 +SIZE (xpi/firefox-i18n-65.0.1/ta.xpi) = 522777 +SHA256 (xpi/firefox-i18n-65.0.1/te.xpi) = 96879d1aba317232aee1f5f6a273812a4b95ea79a0e06b78954dc7bdcb2e7023 +SIZE (xpi/firefox-i18n-65.0.1/te.xpi) = 534593 +SHA256 (xpi/firefox-i18n-65.0.1/th.xpi) = 60e75b83c0ffc1302e25870777570319bdfd5bcfcff3a3123572f203fb06c00d +SIZE (xpi/firefox-i18n-65.0.1/th.xpi) = 507520 +SHA256 (xpi/firefox-i18n-65.0.1/tr.xpi) = 465ff1cd24af4c2e297760b4133e0e0f8a527c90465b9577b7b549553d06ffc8 +SIZE (xpi/firefox-i18n-65.0.1/tr.xpi) = 481300 +SHA256 (xpi/firefox-i18n-65.0.1/uk.xpi) = 255b61c6b23d5849530f51e96c341b140a79bf3c66cb05e37214ae4da1dd0fd2 +SIZE (xpi/firefox-i18n-65.0.1/uk.xpi) = 528929 +SHA256 (xpi/firefox-i18n-65.0.1/ur.xpi) = 558452c79a98334fadb8a9668e7f5cd1b3ebf802dc43c62f1e044f7d0f2ab88d +SIZE (xpi/firefox-i18n-65.0.1/ur.xpi) = 511330 +SHA256 (xpi/firefox-i18n-65.0.1/uz.xpi) = 7a8e335ca797ef7daae387c021d643daf5ffdef197a749946bb9e0f87e9ac8ea +SIZE (xpi/firefox-i18n-65.0.1/uz.xpi) = 460816 +SHA256 (xpi/firefox-i18n-65.0.1/vi.xpi) = e78e53d4ef5b5e360e5ef8be038e2e807fb4d3825afc06fd1d8c4dcf1f279be4 +SIZE (xpi/firefox-i18n-65.0.1/vi.xpi) = 486518 +SHA256 (xpi/firefox-i18n-65.0.1/xh.xpi) = 84aae51d83dee791573b19440d92160b70b2face6a7a59ff6e193ef01c8df67a +SIZE (xpi/firefox-i18n-65.0.1/xh.xpi) = 455418 +SHA256 (xpi/firefox-i18n-65.0.1/zh-CN.xpi) = d379fe598a4568844a68e6899934e18e42ee37a34abbd12ff7777f599b6853b9 +SIZE (xpi/firefox-i18n-65.0.1/zh-CN.xpi) = 494797 +SHA256 (xpi/firefox-i18n-65.0.1/zh-TW.xpi) = 565213ee9f2d0c73f1fe55503421f25e5db95b4115db9b24e8af7a1fd08440cc +SIZE (xpi/firefox-i18n-65.0.1/zh-TW.xpi) = 492969 diff --git a/www/firefox/Makefile b/www/firefox/Makefile index b2a6046e62f..b7d8ba1b97d 100644 --- a/www/firefox/Makefile +++ b/www/firefox/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 65.0 -PORTREVISION= 2 +DISTVERSION= 65.0.1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ diff --git a/www/firefox/distinfo b/www/firefox/distinfo index 8d18fa6410c..146df4ea55f 100644 --- a/www/firefox/distinfo +++ b/www/firefox/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1548355762 -SHA256 (firefox-65.0.source.tar.xz) = 75b1b14605d63e8c83b60e0a4020cdb75b8671fb646959da865cbead0c2b466d -SIZE (firefox-65.0.source.tar.xz) = 278317028 +TIMESTAMP = 1549967522 +SHA256 (firefox-65.0.1.source.tar.xz) = 67e517f6d1ea8aa5c8f32404b8756f3205c3550917a91a19b0a0edccc656a3cc +SIZE (firefox-65.0.1.source.tar.xz) = 276816148 diff --git a/www/gobuffalo/Makefile b/www/gobuffalo/Makefile index 0fcd5efe8d7..32d9a0a7f50 100644 --- a/www/gobuffalo/Makefile +++ b/www/gobuffalo/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gobuffalo -PORTVERSION= 0.13.12 +PORTVERSION= 0.13.13 DISTVERSIONPREFIX= v CATEGORIES= www @@ -30,35 +30,35 @@ GH_TUPLE= \ fsnotify:fsnotify:v1.4.7:fsnotify_fsnotify/src/github.com/fsnotify/fsnotify \ go-sql-driver:mysql:v1.4.1:go_sql_driver_mysql/src/github.com/go-sql-driver/mysql \ go-yaml:yaml:v2.2.2:go_yaml_yaml/src/gopkg.in/yaml.v2 \ - gobuffalo:buffalo-plugins:v1.9.3:gobuffalo_buffalo_plugins/src/github.com/gobuffalo/buffalo-plugins \ - gobuffalo:buffalo-pop:v1.3.0:gobuffalo_buffalo_pop/src/github.com/gobuffalo/buffalo-pop \ - gobuffalo:envy:v1.6.11:gobuffalo_envy/src/github.com/gobuffalo/envy \ - gobuffalo:events:v1.1.8:gobuffalo_events/src/github.com/gobuffalo/events \ - gobuffalo:fizz:v1.3.0:gobuffalo_fizz/src/github.com/gobuffalo/fizz \ - gobuffalo:flect:24a2b68:gobuffalo_flect/src/github.com/gobuffalo/flect \ - gobuffalo:genny:e26c846:gobuffalo_genny/src/github.com/gobuffalo/genny \ + gobuffalo:buffalo-plugins:v1.12.0:gobuffalo_buffalo_plugins/src/github.com/gobuffalo/buffalo-plugins \ + gobuffalo:buffalo-pop:v1.6.0:gobuffalo_buffalo_pop/src/github.com/gobuffalo/buffalo-pop \ + gobuffalo:envy:v1.6.12:gobuffalo_envy/src/github.com/gobuffalo/envy \ + gobuffalo:events:v1.2.0:gobuffalo_events/src/github.com/gobuffalo/events \ + gobuffalo:fizz:v1.5.0:gobuffalo_fizz/src/github.com/gobuffalo/fizz \ + gobuffalo:flect:a62e61d:gobuffalo_flect/src/github.com/gobuffalo/flect \ + gobuffalo:genny:1045e97:gobuffalo_genny/src/github.com/gobuffalo/genny \ gobuffalo:github_flavored_markdown:v1.0.7:gobuffalo_github_flavored_markdown/src/github.com/gobuffalo/github_flavored_markdown \ gobuffalo:logger:5b956e2:gobuffalo_logger/src/github.com/gobuffalo/logger \ gobuffalo:makr:v1.1.5:gobuffalo_makr/src/github.com/gobuffalo/makr \ gobuffalo:mapi:v1.0.1:gobuffalo_mapi/src/github.com/gobuffalo/mapi \ - gobuffalo:meta:0d7e59d:gobuffalo_meta/src/github.com/gobuffalo/meta \ + gobuffalo:meta:ecaa953:gobuffalo_meta/src/github.com/gobuffalo/meta \ gobuffalo:mw-basicauth:v1.0.7:gobuffalo_mw_basicauth/src/github.com/gobuffalo/mw-basicauth \ - gobuffalo:mw-contenttype:74f5a47:gobuffalo_mw_contenttype/src/github.com/gobuffalo/mw-contenttype \ - gobuffalo:mw-csrf:446ff26:gobuffalo_mw_csrf/src/github.com/gobuffalo/mw-csrf \ + gobuffalo:mw-contenttype:2554e74:gobuffalo_mw_contenttype/src/github.com/gobuffalo/mw-contenttype \ + gobuffalo:mw-csrf:25460a0:gobuffalo_mw_csrf/src/github.com/gobuffalo/mw-csrf \ gobuffalo:mw-forcessl:73921ae:gobuffalo_mw_forcessl/src/github.com/gobuffalo/mw-forcessl \ - gobuffalo:mw-i18n:09e0c99:gobuffalo_mw_i18n/src/github.com/gobuffalo/mw-i18n \ - gobuffalo:mw-paramlogger:d6ee392:gobuffalo_mw_paramlogger/src/github.com/gobuffalo/mw-paramlogger \ - gobuffalo:mw-tokenauth:8545f62:gobuffalo_mw_tokenauth/src/github.com/gobuffalo/mw-tokenauth \ + gobuffalo:mw-i18n:552713a:gobuffalo_mw_i18n/src/github.com/gobuffalo/mw-i18n \ + gobuffalo:mw-paramlogger:395da19:gobuffalo_mw_paramlogger/src/github.com/gobuffalo/mw-paramlogger \ + gobuffalo:mw-tokenauth:95847f2:gobuffalo_mw_tokenauth/src/github.com/gobuffalo/mw-tokenauth \ gobuffalo:packd:eca3b8f:gobuffalo_packd/src/github.com/gobuffalo/packd \ - gobuffalo:packr:v1.21.9:gobuffalo_packr/src/github.com/gobuffalo/packr \ - gobuffalo:plush:v3.7.32:gobuffalo_plush/src/github.com/gobuffalo/plush \ - gobuffalo:pop:v4.9.3:gobuffalo_pop/src/github.com/gobuffalo/pop \ + gobuffalo:packr:v1.22.0:gobuffalo_packr/src/github.com/gobuffalo/packr \ + gobuffalo:plush:v3.7.33:gobuffalo_plush/src/github.com/gobuffalo/plush \ + gobuffalo:pop:v4.9.6:gobuffalo_pop/src/github.com/gobuffalo/pop \ gobuffalo:syncx:558ac7d:gobuffalo_syncx/src/github.com/gobuffalo/syncx \ gobuffalo:tags:v2.0.15:gobuffalo_tags/src/github.com/gobuffalo/tags \ gobuffalo:uuid:v2.0.5:gobuffalo_uuid/src/github.com/gobuffalo/uuid \ gobuffalo:validate:v2.0.3:gobuffalo_validate/src/github.com/gobuffalo/validate \ gobuffalo:x:14085ca:gobuffalo_x/src/github.com/gobuffalo/x \ - gofrs:uuid:v3.1.0:gofrs_uuid/src/github.com/gofrs/uuid \ + gofrs:uuid:v3.2.0:gofrs_uuid/src/github.com/gofrs/uuid \ golang:appengine:v1.3.0:golang_appengine/src/google.golang.org/appengine \ golang:crypto:505ab14:golang_crypto/src/golang.org/x/crypto \ golang:net:6105869:golang_net/src/golang.org/x/net \ @@ -67,7 +67,7 @@ GH_TUPLE= \ golang:text:v0.3.0:golang_text/src/golang.org/x/text \ golang:tools:bbccd8c:golang_tools/src/golang.org/x/tools \ gorilla:context:v1.1.1:gorilla_context/src/github.com/gorilla/context \ - gorilla:mux:v1.6.2:gorilla_mux/src/github.com/gorilla/mux \ + gorilla:mux:v1.7.0:gorilla_mux/src/github.com/gorilla/mux \ gorilla:securecookie:v1.1.1:gorilla_securecookie/src/github.com/gorilla/securecookie \ gorilla:sessions:v1.1.3:gorilla_sessions/src/github.com/gorilla/sessions \ hashicorp:hcl:v1.0.0:hashicorp_hcl/src/github.com/hashicorp/hcl \ @@ -75,41 +75,41 @@ GH_TUPLE= \ jackc:pgx:v3.3.0:jackc_pgx/src/github.com/jackc/pgx \ jmoiron:sqlx:v1.2.0:jmoiron_sqlx/src/github.com/jmoiron/sqlx \ joho:godotenv:v1.3.0:joho_godotenv/src/github.com/joho/godotenv \ - karrick:godirwalk:v1.7.7:karrick_godirwalk/src/github.com/karrick/godirwalk \ + karrick:godirwalk:v1.7.8:karrick_godirwalk/src/github.com/karrick/godirwalk \ kballard:go-shellquote:95032a8:kballard_go_shellquote/src/github.com/kballard/go-shellquote \ lib:pq:v1.0.0:lib_pq/src/github.com/lib/pq \ magiconair:properties:v1.8.0:magiconair_properties/src/github.com/magiconair/properties \ markbates:deplist:v1.0.5:markbates_deplist/src/github.com/markbates/deplist \ - markbates:going:v1.0.2:markbates_going/src/github.com/markbates/going \ + markbates:going:v1.0.3:markbates_going/src/github.com/markbates/going \ markbates:grift:v1.0.5:markbates_grift/src/github.com/markbates/grift \ markbates:inflect:v1.0.4:markbates_inflect/src/github.com/markbates/inflect \ markbates:oncer:bf2de49:markbates_oncer/src/github.com/markbates/oncer \ - markbates:refresh:v1.4.11:markbates_refresh/src/github.com/markbates/refresh \ + markbates:refresh:v1.5.0:markbates_refresh/src/github.com/markbates/refresh \ markbates:safe:v1.0.1:markbates_safe/src/github.com/markbates/safe \ markbates:sigtx:v1.0.0:markbates_sigtx/src/github.com/markbates/sigtx \ mattn:go-colorable:v0.0.9:mattn_go_colorable/src/github.com/mattn/go-colorable \ mattn:go-isatty:v0.0.4:mattn_go_isatty/src/github.com/mattn/go-isatty \ mattn:go-sqlite3:v1.10.0:mattn_go_sqlite3/src/github.com/mattn/go-sqlite3 \ - microcosm-cc:bluemonday:v1.0.1:microcosm_cc_bluemonday/src/github.com/microcosm-cc/bluemonday \ + microcosm-cc:bluemonday:v1.0.2:microcosm_cc_bluemonday/src/github.com/microcosm-cc/bluemonday \ mitchellh:go-homedir:v1.0.0:mitchellh_go_homedir/src/github.com/mitchellh/go-homedir \ mitchellh:mapstructure:v1.1.2:mitchellh_mapstructure/src/github.com/mitchellh/mapstructure \ monoculum:formam:4e68be1:monoculum_formam/src/github.com/monoculum/formam \ nicksnyder:go-i18n:v1.10.0:nicksnyder_go_i18n/src/github.com/nicksnyder/go-i18n \ pelletier:go-toml:v1.2.0:pelletier_go_toml/src/github.com/pelletier/go-toml \ - pkg:errors:v0.8.0:pkg_errors/src/github.com/pkg/errors \ - rogpeppe:go-internal:v1.0.0:rogpeppe_go_internal/src/github.com/rogpeppe/go-internal \ + pkg:errors:v0.8.1:pkg_errors/src/github.com/pkg/errors \ + rogpeppe:go-internal:v1.1.0:rogpeppe_go_internal/src/github.com/rogpeppe/go-internal \ serenize:snaker:a683aaf:serenize_snaker/src/github.com/serenize/snaker \ sergi:go-diff:v1.0.0:sergi_go_diff/src/github.com/sergi/go-diff \ - sirupsen:logrus:v1.2.0:sirupsen_logrus/src/github.com/sirupsen/logrus \ + sirupsen:logrus:v1.3.0:sirupsen_logrus/src/github.com/sirupsen/logrus \ sourcegraph:annotate:f4cad6c:sourcegraph_annotate/src/github.com/sourcegraph/annotate \ sourcegraph:syntaxhighlight:bd320f5:sourcegraph_syntaxhighlight/src/github.com/sourcegraph/syntaxhighlight \ - spf13:afero:v1.1.2:spf13_afero/src/github.com/spf13/afero \ + spf13:afero:v1.2.0:spf13_afero/src/github.com/spf13/afero \ spf13:cast:v1.3.0:spf13_cast/src/github.com/spf13/cast \ spf13:cobra:v0.0.3:spf13_cobra/src/github.com/spf13/cobra \ spf13:jwalterweatherman:v1.0.0:spf13_jwalterweatherman/src/github.com/spf13/jwalterweatherman \ spf13:pflag:v1.0.3:spf13_pflag/src/github.com/spf13/pflag \ spf13:viper:v1.3.1:spf13_viper/src/github.com/spf13/viper \ - unrolled:secure:4b6b7cf:unrolled_secure/src/github.com/unrolled/secure + unrolled:secure:76e6d4e:unrolled_secure/src/github.com/unrolled/secure PLIST_FILES= bin/buffalo diff --git a/www/gobuffalo/distinfo b/www/gobuffalo/distinfo index 815e755c4a7..b775c5e4a6a 100644 --- a/www/gobuffalo/distinfo +++ b/www/gobuffalo/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1548100225 -SHA256 (gobuffalo-buffalo-v0.13.12_GH0.tar.gz) = bda349b28e1cc907d2fd5438f6091f31dcbb769eb9dd77f52ee672e1397e9b02 -SIZE (gobuffalo-buffalo-v0.13.12_GH0.tar.gz) = 286524 +TIMESTAMP = 1549027042 +SHA256 (gobuffalo-buffalo-v0.13.13_GH0.tar.gz) = dff241902009e60b56ffe887df08570bb9cf52c72697d35d5120a05c0208fcd0 +SIZE (gobuffalo-buffalo-v0.13.13_GH0.tar.gz) = 288034 SHA256 (BurntSushi-toml-v0.3.1_GH0.tar.gz) = 6593da894578ba510a470735ffbdc88ce88033094dc5a8f4d3957ab87e18803f SIZE (BurntSushi-toml-v0.3.1_GH0.tar.gz) = 42077 SHA256 (alexcesaro-quotedprintable-v3_GH0.tar.gz) = 09fa22f9f28f0a75f2edef2371e1831d4346ab3ecaf8be118424bf8e0f318aed @@ -23,20 +23,20 @@ SHA256 (go-sql-driver-mysql-v1.4.1_GH0.tar.gz) = 9b5d435903a674cd761310365df992a SIZE (go-sql-driver-mysql-v1.4.1_GH0.tar.gz) = 83524 SHA256 (go-yaml-yaml-v2.2.2_GH0.tar.gz) = 42c3e4ef9eca2860d22b3c6c5582c6c13fb4b417e5ebc1acc56ee5e2c4ddcaff SIZE (go-yaml-yaml-v2.2.2_GH0.tar.gz) = 70656 -SHA256 (gobuffalo-buffalo-plugins-v1.9.3_GH0.tar.gz) = 36f63d9e6a0032e9eb9aedb93a1e19cdd299557088bdb4653e9028b12d55089f -SIZE (gobuffalo-buffalo-plugins-v1.9.3_GH0.tar.gz) = 118859 -SHA256 (gobuffalo-buffalo-pop-v1.3.0_GH0.tar.gz) = ef8a3cd5cc95d9eaa0ee7b3ba06f8549b9f2cf8d5991cceaad75612aafc9d4eb -SIZE (gobuffalo-buffalo-pop-v1.3.0_GH0.tar.gz) = 209637 -SHA256 (gobuffalo-envy-v1.6.11_GH0.tar.gz) = eb54554004baa06ad8d2dcb5e89290ef39c035d642ec5503d0bd96559da474eb -SIZE (gobuffalo-envy-v1.6.11_GH0.tar.gz) = 19853 -SHA256 (gobuffalo-events-v1.1.8_GH0.tar.gz) = 6ac5f69fdc8c5fc9ca5eef9063321f980552b3c0cbc852d802856df98c0943b7 -SIZE (gobuffalo-events-v1.1.8_GH0.tar.gz) = 19548 -SHA256 (gobuffalo-fizz-v1.3.0_GH0.tar.gz) = 390a41e76ecece542914e289d844c4392b32be3b4ccd72bc1e4b08f6491bc595 -SIZE (gobuffalo-fizz-v1.3.0_GH0.tar.gz) = 29579 -SHA256 (gobuffalo-flect-24a2b68_GH0.tar.gz) = 9a904056d59cca61474a6188662dde09b7e6c7ffad856f9125c9af79ff92521f -SIZE (gobuffalo-flect-24a2b68_GH0.tar.gz) = 28738 -SHA256 (gobuffalo-genny-e26c846_GH0.tar.gz) = 76c08ac7eec71235d7033664e063bb5c9cab960719ccbdff1440cdfc24dc5156 -SIZE (gobuffalo-genny-e26c846_GH0.tar.gz) = 53165 +SHA256 (gobuffalo-buffalo-plugins-v1.12.0_GH0.tar.gz) = 531808e8f66e40657a7912f53d5f24f0ccbd1a66c026e05491200736c616c7fd +SIZE (gobuffalo-buffalo-plugins-v1.12.0_GH0.tar.gz) = 119795 +SHA256 (gobuffalo-buffalo-pop-v1.6.0_GH0.tar.gz) = b465947fbf2e9a39418f7b035f79ca8bb488c296cfe36d72d7ba631a5eaec83e +SIZE (gobuffalo-buffalo-pop-v1.6.0_GH0.tar.gz) = 213268 +SHA256 (gobuffalo-envy-v1.6.12_GH0.tar.gz) = 56151615b5efbbc9ff1f6f1aa04d9220b44c733763e45543757827e706360710 +SIZE (gobuffalo-envy-v1.6.12_GH0.tar.gz) = 20992 +SHA256 (gobuffalo-events-v1.2.0_GH0.tar.gz) = 052eefa2c12da3166ffb635804fc00974209151e2482b74c9418e3d0e24a6a84 +SIZE (gobuffalo-events-v1.2.0_GH0.tar.gz) = 23974 +SHA256 (gobuffalo-fizz-v1.5.0_GH0.tar.gz) = 86ea97d44512923472246c5107d93c7e5cc773865598e6edde6d949537831b7d +SIZE (gobuffalo-fizz-v1.5.0_GH0.tar.gz) = 42720 +SHA256 (gobuffalo-flect-a62e61d_GH0.tar.gz) = 281ccd6e1740c58576e347211453cc66eaad9f36b6aff49f52b9ece19964930d +SIZE (gobuffalo-flect-a62e61d_GH0.tar.gz) = 28885 +SHA256 (gobuffalo-genny-1045e97_GH0.tar.gz) = 36e842014a7aef3ce8afd97f4e0927fc227d567c36307d8510465943ff3ce9e8 +SIZE (gobuffalo-genny-1045e97_GH0.tar.gz) = 54844 SHA256 (gobuffalo-github_flavored_markdown-v1.0.7_GH0.tar.gz) = a0d45adfdc5b28da0aac9a642b6aa20d09aebb101215ec8099b801fca274c852 SIZE (gobuffalo-github_flavored_markdown-v1.0.7_GH0.tar.gz) = 115112 SHA256 (gobuffalo-logger-5b956e2_GH0.tar.gz) = fa9a54926f65974fa9f8b953f9f42934bba9bc1bb2ed59ce19ad08481da1faae @@ -45,30 +45,30 @@ SHA256 (gobuffalo-makr-v1.1.5_GH0.tar.gz) = 4b80521349d34d14d3b84d78cdafec262524 SIZE (gobuffalo-makr-v1.1.5_GH0.tar.gz) = 5796 SHA256 (gobuffalo-mapi-v1.0.1_GH0.tar.gz) = 56abd81b46098223236734106e9756706ffc15e064c1c0f6675edd9505e4be20 SIZE (gobuffalo-mapi-v1.0.1_GH0.tar.gz) = 3651 -SHA256 (gobuffalo-meta-0d7e59d_GH0.tar.gz) = 114522c2289842f2f2e09e924556e6cdf38f9ae890fbe1cc20a31fe0195b565c -SIZE (gobuffalo-meta-0d7e59d_GH0.tar.gz) = 7034 +SHA256 (gobuffalo-meta-ecaa953_GH0.tar.gz) = 136096e7fc7f2d87f02448804c1e367c173bb0b1a92fdcccde07929a569f506f +SIZE (gobuffalo-meta-ecaa953_GH0.tar.gz) = 20733 SHA256 (gobuffalo-mw-basicauth-v1.0.7_GH0.tar.gz) = 0df1ce9fa13c5bcc118ec0222b7d4eaa56255c702edb060269eec7bae8409758 SIZE (gobuffalo-mw-basicauth-v1.0.7_GH0.tar.gz) = 18656 -SHA256 (gobuffalo-mw-contenttype-74f5a47_GH0.tar.gz) = c293a18d30bb31914cf5aa4abbc3a768a4fd31c758320a18981e3b3d72b16698 -SIZE (gobuffalo-mw-contenttype-74f5a47_GH0.tar.gz) = 1561 -SHA256 (gobuffalo-mw-csrf-446ff26_GH0.tar.gz) = 86843751701800113b2730dbb375ffd29c6bc3d4a861438639cc8bafddcb7fef -SIZE (gobuffalo-mw-csrf-446ff26_GH0.tar.gz) = 4321 +SHA256 (gobuffalo-mw-contenttype-2554e74_GH0.tar.gz) = d5f2385beb29ffc33cb474f3025377ce8685cc64525d16bb504bd46fad8b3067 +SIZE (gobuffalo-mw-contenttype-2554e74_GH0.tar.gz) = 21254 +SHA256 (gobuffalo-mw-csrf-25460a0_GH0.tar.gz) = bfdf9a0bd4939d1bb8950d423d5c4d211a88a9ba33554f2f91f438adb41d5741 +SIZE (gobuffalo-mw-csrf-25460a0_GH0.tar.gz) = 24605 SHA256 (gobuffalo-mw-forcessl-73921ae_GH0.tar.gz) = 7dda87e0f467c197892eff7e94960c8cd865bb2bf98d62dba904f084937be63d SIZE (gobuffalo-mw-forcessl-73921ae_GH0.tar.gz) = 1276 -SHA256 (gobuffalo-mw-i18n-09e0c99_GH0.tar.gz) = 95970e451c8add72489c85c769cec2ce5a9184eaaaa8fd5465ab01593fe9da85 -SIZE (gobuffalo-mw-i18n-09e0c99_GH0.tar.gz) = 19061 -SHA256 (gobuffalo-mw-paramlogger-d6ee392_GH0.tar.gz) = dd8bc83968697e0f70e42ba382d5af5880ae94a92df1867b2c57b0e856e896b1 -SIZE (gobuffalo-mw-paramlogger-d6ee392_GH0.tar.gz) = 2769 -SHA256 (gobuffalo-mw-tokenauth-8545f62_GH0.tar.gz) = 067ba26a9a800585636ca646f0b0ed6f3c4226004bd41efd31086e3bd8253ad8 -SIZE (gobuffalo-mw-tokenauth-8545f62_GH0.tar.gz) = 5946 +SHA256 (gobuffalo-mw-i18n-552713a_GH0.tar.gz) = 130b674feb2016fe754d9a6e3b57e3e6901fb66a490a34f2876e725fdc4e4cfe +SIZE (gobuffalo-mw-i18n-552713a_GH0.tar.gz) = 26052 +SHA256 (gobuffalo-mw-paramlogger-395da19_GH0.tar.gz) = 73e883deddaa29b08f18c004e5f19d4f834f762a07375f034400118e3afa38b3 +SIZE (gobuffalo-mw-paramlogger-395da19_GH0.tar.gz) = 22542 +SHA256 (gobuffalo-mw-tokenauth-95847f2_GH0.tar.gz) = c673de7960d37e15e48329bfa1c31f30a3b741359b4830ffa9c225b6efc5d316 +SIZE (gobuffalo-mw-tokenauth-95847f2_GH0.tar.gz) = 26468 SHA256 (gobuffalo-packd-eca3b8f_GH0.tar.gz) = 4c014fb075a37c24480d6fd6de73d34f1a4539e2fa1515d518a8d9d2b09195e4 SIZE (gobuffalo-packd-eca3b8f_GH0.tar.gz) = 7190 -SHA256 (gobuffalo-packr-v1.21.9_GH0.tar.gz) = c9cf60c150e0b10b8cbe29e5654e36f1d588040a4d28f4cfe32c846a3a5d3ff9 -SIZE (gobuffalo-packr-v1.21.9_GH0.tar.gz) = 94753 -SHA256 (gobuffalo-plush-v3.7.32_GH0.tar.gz) = 318e95a4c6513bf0fce74794b126635a11bc50413127b0391cb7bd7b3045d33d -SIZE (gobuffalo-plush-v3.7.32_GH0.tar.gz) = 38184 -SHA256 (gobuffalo-pop-v4.9.3_GH0.tar.gz) = a722d89cd87ec55a1cd2b7c193ecc2cf8600b81a1322755891c443aeb32cc922 -SIZE (gobuffalo-pop-v4.9.3_GH0.tar.gz) = 152611 +SHA256 (gobuffalo-packr-v1.22.0_GH0.tar.gz) = 958464c867d636939ffd4fb645903e323ea92d6b71e0ebf49bd5f7d529847d93 +SIZE (gobuffalo-packr-v1.22.0_GH0.tar.gz) = 99888 +SHA256 (gobuffalo-plush-v3.7.33_GH0.tar.gz) = 2bfa5b7bea165c6eae0cd7b25f1373cf0f43ea17348dab4df6af36c8fcf09139 +SIZE (gobuffalo-plush-v3.7.33_GH0.tar.gz) = 38197 +SHA256 (gobuffalo-pop-v4.9.6_GH0.tar.gz) = 242964fe17e5d2b757d1c754f70d7edbad078230177336628a6b28c163c7fca8 +SIZE (gobuffalo-pop-v4.9.6_GH0.tar.gz) = 153096 SHA256 (gobuffalo-syncx-558ac7d_GH0.tar.gz) = 5c06155b0eb5b1b4d01d42d2fdf508da27cc94a35bd3e0e134a3c172cc8cffe6 SIZE (gobuffalo-syncx-558ac7d_GH0.tar.gz) = 4078 SHA256 (gobuffalo-tags-v2.0.15_GH0.tar.gz) = dd03ba9b322335befc9ce46a4c6e76b1a20ca88940ee01680c50d4a6751f5968 @@ -79,8 +79,8 @@ SHA256 (gobuffalo-validate-v2.0.3_GH0.tar.gz) = e830b6dad86a602c1857430ba7dd74c5 SIZE (gobuffalo-validate-v2.0.3_GH0.tar.gz) = 9413 SHA256 (gobuffalo-x-14085ca_GH0.tar.gz) = df6107f9b4e8414f39edc08eaef511cea9facaa2755679d52a1741d3c8a5ed12 SIZE (gobuffalo-x-14085ca_GH0.tar.gz) = 21697 -SHA256 (gofrs-uuid-v3.1.0_GH0.tar.gz) = 60bdd528c01269992f1b1146653d80eb271d8be7eb3758983104953d6b9c9dbf -SIZE (gofrs-uuid-v3.1.0_GH0.tar.gz) = 16686 +SHA256 (gofrs-uuid-v3.2.0_GH0.tar.gz) = 77d6e7d793bbc8835e082b590d0512ed177d6eba898bffb202d76ef97db57677 +SIZE (gofrs-uuid-v3.2.0_GH0.tar.gz) = 17064 SHA256 (golang-appengine-v1.3.0_GH0.tar.gz) = 95ba88192b1ede71b0b32edef442bef026333cb1e3172fe8bb64c92d19d593be SIZE (golang-appengine-v1.3.0_GH0.tar.gz) = 323617 SHA256 (golang-crypto-505ab14_GH0.tar.gz) = 66208e5bab6d39db520fb59b79a597ddb38cd6160e7ae7fb3e5c212fe9146125 @@ -97,8 +97,8 @@ SHA256 (golang-tools-bbccd8c_GH0.tar.gz) = 0ba2656cd1f3ddaff1b43fce06bff4415ac09 SIZE (golang-tools-bbccd8c_GH0.tar.gz) = 2795835 SHA256 (gorilla-context-v1.1.1_GH0.tar.gz) = 2dfdd051c238695bf9ebfed0bf6a8c533507ac0893bce23be5930e973736bb03 SIZE (gorilla-context-v1.1.1_GH0.tar.gz) = 4574 -SHA256 (gorilla-mux-v1.6.2_GH0.tar.gz) = 0dc18fb09413efea7393e9c2bd8b5b442ce08e729058f5f7e328d912c6c3d3e3 -SIZE (gorilla-mux-v1.6.2_GH0.tar.gz) = 38074 +SHA256 (gorilla-mux-v1.7.0_GH0.tar.gz) = 5aca5bfa16325506b23b66ce34e2b9336a3a341b8c51ba7b0faf7d0daade0116 +SIZE (gorilla-mux-v1.7.0_GH0.tar.gz) = 40777 SHA256 (gorilla-securecookie-v1.1.1_GH0.tar.gz) = b7897b2243f0d43913aca318593c5c2586294fcd3265189d564ddda1b880fe95 SIZE (gorilla-securecookie-v1.1.1_GH0.tar.gz) = 41240 SHA256 (gorilla-sessions-v1.1.3_GH0.tar.gz) = dfc859af8f547fd2c746815d6665aa35263479cbd699f5aa3221b9564d18f976 @@ -113,8 +113,8 @@ SHA256 (jmoiron-sqlx-v1.2.0_GH0.tar.gz) = 90a0cecf61892ad7d2303720d5fced62df0774 SIZE (jmoiron-sqlx-v1.2.0_GH0.tar.gz) = 49540 SHA256 (joho-godotenv-v1.3.0_GH0.tar.gz) = 07beb0bae964dbe37442603a404196111dbbbaaa986fc179d5d5fdc46ed6a189 SIZE (joho-godotenv-v1.3.0_GH0.tar.gz) = 9941 -SHA256 (karrick-godirwalk-v1.7.7_GH0.tar.gz) = 8b47c9b42327f977ade83a201325a3558f5de90c8d1e420c0f4d4acde8903e05 -SIZE (karrick-godirwalk-v1.7.7_GH0.tar.gz) = 15120 +SHA256 (karrick-godirwalk-v1.7.8_GH0.tar.gz) = 0f5a5963ba210bf00685177963b1a792c698de194b0f5993a8669d488ef78d8b +SIZE (karrick-godirwalk-v1.7.8_GH0.tar.gz) = 15158 SHA256 (kballard-go-shellquote-95032a8_GH0.tar.gz) = e3811664c2c111966fae3d5a7c0aac4f96d5e14bc257fb2898ae3dcf1937701b SIZE (kballard-go-shellquote-95032a8_GH0.tar.gz) = 4332 SHA256 (lib-pq-v1.0.0_GH0.tar.gz) = 52fc2c12f9b1dc6be5cbd5d7e253f3c92563cfa3ae5bac4faf9bd42e3ae2c1f8 @@ -123,16 +123,16 @@ SHA256 (magiconair-properties-v1.8.0_GH0.tar.gz) = f6c732fe6031e2cf72c6eb6d6ce50 SIZE (magiconair-properties-v1.8.0_GH0.tar.gz) = 29504 SHA256 (markbates-deplist-v1.0.5_GH0.tar.gz) = e4c247d10ca8512e1ec4dedf53935abb8519299fe013cf0b5d31fbcdd59c1d19 SIZE (markbates-deplist-v1.0.5_GH0.tar.gz) = 3902 -SHA256 (markbates-going-v1.0.2_GH0.tar.gz) = f79472547548b8e8549d62f6fe42b723573d7d6ecb6099ee08c3d231eb61fccf -SIZE (markbates-going-v1.0.2_GH0.tar.gz) = 9783 +SHA256 (markbates-going-v1.0.3_GH0.tar.gz) = 51a419029922e535f703d23626a196d09b2a05f675d3fc84fba127a3fb00371e +SIZE (markbates-going-v1.0.3_GH0.tar.gz) = 9508 SHA256 (markbates-grift-v1.0.5_GH0.tar.gz) = 8fcc3aa90a6a7c0d7aa09e88b688dfa8af4e4d042a263f345f39bfe92ca99622 SIZE (markbates-grift-v1.0.5_GH0.tar.gz) = 10977 SHA256 (markbates-inflect-v1.0.4_GH0.tar.gz) = 03781351d1a59563277d708432f8809504a2fef5ad91ebb0a69993bc39863112 SIZE (markbates-inflect-v1.0.4_GH0.tar.gz) = 15268 SHA256 (markbates-oncer-bf2de49_GH0.tar.gz) = 9fd5db2f645e68c2551808acb6161c692e529a1d7ff70d0473796260ef409bba SIZE (markbates-oncer-bf2de49_GH0.tar.gz) = 2772 -SHA256 (markbates-refresh-v1.4.11_GH0.tar.gz) = 51d58bc9c849fafd77cd92372c882769be97e0afe818c540e69ada0b3a380c8e -SIZE (markbates-refresh-v1.4.11_GH0.tar.gz) = 21364 +SHA256 (markbates-refresh-v1.5.0_GH0.tar.gz) = a9c5f40992f0437399883ca7fcee688cb523c962a8fb48538191496079b103f3 +SIZE (markbates-refresh-v1.5.0_GH0.tar.gz) = 27273 SHA256 (markbates-safe-v1.0.1_GH0.tar.gz) = 8356d63a2175445960eecc237cf82fc206d328d48c03e4564546d9158af62142 SIZE (markbates-safe-v1.0.1_GH0.tar.gz) = 2888 SHA256 (markbates-sigtx-v1.0.0_GH0.tar.gz) = cc1891fffcc4a9f456dee5f2f8653cfde252fa773a52239fedcb0ea298d8e399 @@ -143,8 +143,8 @@ SHA256 (mattn-go-isatty-v0.0.4_GH0.tar.gz) = a6228abe42ccfcad4b17c176117ccf2822d SIZE (mattn-go-isatty-v0.0.4_GH0.tar.gz) = 3377 SHA256 (mattn-go-sqlite3-v1.10.0_GH0.tar.gz) = 26373461df8c717540b48b6014d823216a69545337cde6683308c6a67f63de01 SIZE (mattn-go-sqlite3-v1.10.0_GH0.tar.gz) = 2231288 -SHA256 (microcosm-cc-bluemonday-v1.0.1_GH0.tar.gz) = 314b7000f74a712d9113519278816d535e9936fe4866f250fef7f8b5a830c983 -SIZE (microcosm-cc-bluemonday-v1.0.1_GH0.tar.gz) = 137089 +SHA256 (microcosm-cc-bluemonday-v1.0.2_GH0.tar.gz) = 63b0b5c2378fded0acb8b719b13a698cb897b52b3fb0cdf7d3ce576eba0c3160 +SIZE (microcosm-cc-bluemonday-v1.0.2_GH0.tar.gz) = 137669 SHA256 (mitchellh-go-homedir-v1.0.0_GH0.tar.gz) = ab2c930759869efe565a658b86e1a38ca2e2a0ea71635601ddcff1171aaff10a SIZE (mitchellh-go-homedir-v1.0.0_GH0.tar.gz) = 3247 SHA256 (mitchellh-mapstructure-v1.1.2_GH0.tar.gz) = 53fbc06b125ff1c9c73a4eb1764346932671a29c67a45a92e2ebc6855635069b @@ -155,22 +155,22 @@ SHA256 (nicksnyder-go-i18n-v1.10.0_GH0.tar.gz) = 01d8ffab851cd178f7ff06bbe1e852d SIZE (nicksnyder-go-i18n-v1.10.0_GH0.tar.gz) = 39648 SHA256 (pelletier-go-toml-v1.2.0_GH0.tar.gz) = 1a5a620f680033f17e34148bee8f26d96d8c27ff1d7f56f0fe1c7253595b5244 SIZE (pelletier-go-toml-v1.2.0_GH0.tar.gz) = 57496 -SHA256 (pkg-errors-v0.8.0_GH0.tar.gz) = bacf6c58e490911398cee61742ddc6a90c560733e4c9dcb3d867b17a894c9dd5 -SIZE (pkg-errors-v0.8.0_GH0.tar.gz) = 11344 -SHA256 (rogpeppe-go-internal-v1.0.0_GH0.tar.gz) = b675df88e5340e26a418d85b33703361779b909cbd08604f7a7b84e308e917eb -SIZE (rogpeppe-go-internal-v1.0.0_GH0.tar.gz) = 63877 +SHA256 (pkg-errors-v0.8.1_GH0.tar.gz) = 7a428967c6fc2e80cd84a0d9469ab6bd4dbe6b13493ba6294322a933a5a7e356 +SIZE (pkg-errors-v0.8.1_GH0.tar.gz) = 11009 +SHA256 (rogpeppe-go-internal-v1.1.0_GH0.tar.gz) = 62dc0ef0a1df7d0c06cb7bf8dc50d92facea89d7d3558883800c9bd341aaca9f +SIZE (rogpeppe-go-internal-v1.1.0_GH0.tar.gz) = 106099 SHA256 (serenize-snaker-a683aaf_GH0.tar.gz) = 50c6b639304606ff051197e3c5886e17a7564e05e5a3f00afd03ee53b667c78d SIZE (serenize-snaker-a683aaf_GH0.tar.gz) = 3276 SHA256 (sergi-go-diff-v1.0.0_GH0.tar.gz) = 5a07596dcdee6e089b49309162c8e63bc02400652897a1f529d37f0602868dea SIZE (sergi-go-diff-v1.0.0_GH0.tar.gz) = 41609 -SHA256 (sirupsen-logrus-v1.2.0_GH0.tar.gz) = 679aa05d23ca81b74f1327e7a25267a322dc9fd807a276e73e781f62ee679c6d -SIZE (sirupsen-logrus-v1.2.0_GH0.tar.gz) = 37794 +SHA256 (sirupsen-logrus-v1.3.0_GH0.tar.gz) = f80cfa34148c4e25c4d3030edb1fd9878d666eca7e900f1aaf0d87c67ecabe51 +SIZE (sirupsen-logrus-v1.3.0_GH0.tar.gz) = 38452 SHA256 (sourcegraph-annotate-f4cad6c_GH0.tar.gz) = 1369f59a54f37ed2805e71bcbae209e7c77e183178fb785fedd3a6bdbb87deb1 SIZE (sourcegraph-annotate-f4cad6c_GH0.tar.gz) = 5962 SHA256 (sourcegraph-syntaxhighlight-bd320f5_GH0.tar.gz) = 0d9bfde4d196a9a7979b2bee5a146ac660bb6bc626e4b9cf720bf157c3d7764c SIZE (sourcegraph-syntaxhighlight-bd320f5_GH0.tar.gz) = 14259 -SHA256 (spf13-afero-v1.1.2_GH0.tar.gz) = 66554a6b09b0009340ae77c119d5a14e2460bb3aea56e75e138c87e621f3803b -SIZE (spf13-afero-v1.1.2_GH0.tar.gz) = 45309 +SHA256 (spf13-afero-v1.2.0_GH0.tar.gz) = a5a2632b2f3116caed04d0e67fc99e438c6c80d46a3a478487421a433815b1df +SIZE (spf13-afero-v1.2.0_GH0.tar.gz) = 45650 SHA256 (spf13-cast-v1.3.0_GH0.tar.gz) = e685282ea33f89e9354d148ad1886f532bcebe86b0b60a167988f7c6d081085f SIZE (spf13-cast-v1.3.0_GH0.tar.gz) = 11085 SHA256 (spf13-cobra-v0.0.3_GH0.tar.gz) = 7eafb953b58fdd738c4db5202d94a0b6ac0de4f07718fc85a80450c2347c2f9c @@ -181,5 +181,5 @@ SHA256 (spf13-pflag-v1.0.3_GH0.tar.gz) = 9e57f86f493f04d9077fccd04e7139ebf243dd5 SIZE (spf13-pflag-v1.0.3_GH0.tar.gz) = 46002 SHA256 (spf13-viper-v1.3.1_GH0.tar.gz) = 50f019addb0f563791313d331da3f9805dafebf0115330570fd4877d4aa4ac09 SIZE (spf13-viper-v1.3.1_GH0.tar.gz) = 37683 -SHA256 (unrolled-secure-4b6b7cf_GH0.tar.gz) = 34a3eef2d703f51814c6fa786eb69fa4f3d36dafc476e131e57d115cef1bcec5 -SIZE (unrolled-secure-4b6b7cf_GH0.tar.gz) = 11569 +SHA256 (unrolled-secure-76e6d4e_GH0.tar.gz) = 2fb5efd4f169b30d9ed4b8c05ba7efe8f73bc38dac3b76513925942e76a16539 +SIZE (unrolled-secure-76e6d4e_GH0.tar.gz) = 11798 diff --git a/www/google-appengine/Makefile b/www/google-appengine/Makefile index a7d5d75d65f..c7a800befce 100644 --- a/www/google-appengine/Makefile +++ b/www/google-appengine/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= google-appengine -DISTVERSION= 1.9.74 +DISTVERSION= 1.9.82 CATEGORIES= www devel python MASTER_SITES= https://storage.googleapis.com/appengine-sdks/featured/ DISTFILES= ${PORTNAME:S|-|_|}_${PORTVERSION}.zip @@ -42,8 +42,8 @@ GAESCRIPTS= _php_runtime.py _python_runtime.py api_server.py appcfg.py \ MYSQL_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.3:databases/py-MySQLdb@${PY_FLAVOR} -PHP_USE= mysql=server -PHP_VARS= gaedatadir+=php want_mysql_ver=56 +PHP_USES= mysql:server +PHP_VARS= gaedatadir+=php do-install: @${MKDIR} ${STAGEDIR}${DATADIR} diff --git a/www/google-appengine/distinfo b/www/google-appengine/distinfo index efac3e8dd7c..69b337a99e8 100644 --- a/www/google-appengine/distinfo +++ b/www/google-appengine/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1534495254 -SHA256 (google_appengine_1.9.74.zip) = 971e3397e313796cf0d802ea84689ae7c2607698a2fcd0b252787a27e6659212 -SIZE (google_appengine_1.9.74.zip) = 55732970 +TIMESTAMP = 1548678075 +SHA256 (google_appengine_1.9.82.zip) = c8a51cb86266068cc8ca23943a6894289b184c82bbac37dbf00c68a11fada8ef +SIZE (google_appengine_1.9.82.zip) = 55706844 diff --git a/www/hiawatha/Makefile b/www/hiawatha/Makefile index 77969105a32..95928025898 100644 --- a/www/hiawatha/Makefile +++ b/www/hiawatha/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= hiawatha -PORTVERSION= 10.8.3 -PORTREVISION= 2 +PORTVERSION= 10.8.4 CATEGORIES= www MASTER_SITES= https://www.hiawatha-webserver.org/files/ diff --git a/www/hiawatha/distinfo b/www/hiawatha/distinfo index d90f0655748..c0725b66780 100644 --- a/www/hiawatha/distinfo +++ b/www/hiawatha/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1541398716 -SHA256 (hiawatha-10.8.3.tar.gz) = daccdfda7979a907ba3a4e206e0a8d16d8fdceb55ee2b0f75e1acac8ef21e070 -SIZE (hiawatha-10.8.3.tar.gz) = 1095036 +TIMESTAMP = 1550049875 +SHA256 (hiawatha-10.8.4.tar.gz) = 7cb322e9071ad3ee909167c624c6f80b0d2a6630a9d232d52406289d83658b14 +SIZE (hiawatha-10.8.4.tar.gz) = 1095071 diff --git a/www/opencart/Makefile b/www/opencart/Makefile index 8cd2a1afc30..748eed94482 100644 --- a/www/opencart/Makefile +++ b/www/opencart/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= opencart -PORTVERSION= 3.0.2.0 +PORTVERSION= 3.0.3.1 CATEGORIES= www misc MAINTAINER= wen@FreeBSD.org diff --git a/www/opencart/distinfo b/www/opencart/distinfo index ab7a58efc8e..f88c293b8b4 100644 --- a/www/opencart/distinfo +++ b/www/opencart/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1513850496 -SHA256 (opencart-opencart-3.0.2.0_GH0.tar.gz) = 1774e80169175de5520ae565497eab00b3abb0a5aef0743fb6f3eccd5220ec07 -SIZE (opencart-opencart-3.0.2.0_GH0.tar.gz) = 13282478 +TIMESTAMP = 1550101828 +SHA256 (opencart-opencart-3.0.3.1_GH0.tar.gz) = e08cb07639a39decb9963dc4b26248c3c3ffd3eea257dceb65d9dceeb533d3eb +SIZE (opencart-opencart-3.0.3.1_GH0.tar.gz) = 13402823 diff --git a/www/opencart/pkg-plist b/www/opencart/pkg-plist index b4a17918be1..994d13e41d9 100644 --- a/www/opencart/pkg-plist +++ b/www/opencart/pkg-plist @@ -36,6 +36,7 @@ %%WWWDIR%%/admin/controller/event/language.php %%WWWDIR%%/admin/controller/event/statistics.php %%WWWDIR%%/admin/controller/event/theme.php +%%WWWDIR%%/admin/controller/extension/advertise/google.php %%WWWDIR%%/admin/controller/extension/analytics/google.php %%WWWDIR%%/admin/controller/extension/captcha/basic.php %%WWWDIR%%/admin/controller/extension/captcha/google.php @@ -47,6 +48,7 @@ %%WWWDIR%%/admin/controller/extension/dashboard/order.php %%WWWDIR%%/admin/controller/extension/dashboard/recent.php %%WWWDIR%%/admin/controller/extension/dashboard/sale.php +%%WWWDIR%%/admin/controller/extension/extension/advertise.php %%WWWDIR%%/admin/controller/extension/extension/analytics.php %%WWWDIR%%/admin/controller/extension/extension/captcha.php %%WWWDIR%%/admin/controller/extension/extension/dashboard.php @@ -55,6 +57,7 @@ %%WWWDIR%%/admin/controller/extension/extension/menu.php %%WWWDIR%%/admin/controller/extension/extension/module.php %%WWWDIR%%/admin/controller/extension/extension/payment.php +%%WWWDIR%%/admin/controller/extension/extension/promotion.php %%WWWDIR%%/admin/controller/extension/extension/report.php %%WWWDIR%%/admin/controller/extension/extension/shipping.php %%WWWDIR%%/admin/controller/extension/extension/theme.php @@ -170,7 +173,6 @@ %%WWWDIR%%/admin/controller/extension/report/sale_shipping.php %%WWWDIR%%/admin/controller/extension/report/sale_tax.php %%WWWDIR%%/admin/controller/extension/shipping/auspost.php -%%WWWDIR%%/admin/controller/extension/shipping/citylink.php %%WWWDIR%%/admin/controller/extension/shipping/ec_ship.php %%WWWDIR%%/admin/controller/extension/shipping/fedex.php %%WWWDIR%%/admin/controller/extension/shipping/flat.php @@ -285,6 +287,7 @@ %%WWWDIR%%/admin/language/en-gb/en-gb.png %%WWWDIR%%/admin/language/en-gb/error/not_found.php %%WWWDIR%%/admin/language/en-gb/error/permission.php +%%WWWDIR%%/admin/language/en-gb/extension/advertise/google.php %%WWWDIR%%/admin/language/en-gb/extension/analytics/google.php %%WWWDIR%%/admin/language/en-gb/extension/captcha/basic.php %%WWWDIR%%/admin/language/en-gb/extension/captcha/google.php @@ -296,6 +299,7 @@ %%WWWDIR%%/admin/language/en-gb/extension/dashboard/order.php %%WWWDIR%%/admin/language/en-gb/extension/dashboard/recent.php %%WWWDIR%%/admin/language/en-gb/extension/dashboard/sale.php +%%WWWDIR%%/admin/language/en-gb/extension/extension/advertise.php %%WWWDIR%%/admin/language/en-gb/extension/extension/analytics.php %%WWWDIR%%/admin/language/en-gb/extension/extension/captcha.php %%WWWDIR%%/admin/language/en-gb/extension/extension/dashboard.php @@ -458,7 +462,6 @@ %%WWWDIR%%/admin/language/en-gb/extension/report/sale_shipping.php %%WWWDIR%%/admin/language/en-gb/extension/report/sale_tax.php %%WWWDIR%%/admin/language/en-gb/extension/shipping/auspost.php -%%WWWDIR%%/admin/language/en-gb/extension/shipping/citylink.php %%WWWDIR%%/admin/language/en-gb/extension/shipping/ec_ship.php %%WWWDIR%%/admin/language/en-gb/extension/shipping/fedex.php %%WWWDIR%%/admin/language/en-gb/extension/shipping/flat.php @@ -553,6 +556,7 @@ %%WWWDIR%%/admin/model/design/seo_url.php %%WWWDIR%%/admin/model/design/theme.php %%WWWDIR%%/admin/model/design/translation.php +%%WWWDIR%%/admin/model/extension/advertise/google.php %%WWWDIR%%/admin/model/extension/dashboard/activity.php %%WWWDIR%%/admin/model/extension/dashboard/chart.php %%WWWDIR%%/admin/model/extension/dashboard/map.php @@ -647,12 +651,14 @@ %%WWWDIR%%/admin/model/user/api.php %%WWWDIR%%/admin/model/user/user.php %%WWWDIR%%/admin/model/user/user_group.php +%%WWWDIR%%/admin/view/image/advertise/google/ad-preview.png %%WWWDIR%%/admin/view/image/checkmark.png %%WWWDIR%%/admin/view/image/logo.png %%WWWDIR%%/admin/view/image/payment/2checkout.png %%WWWDIR%%/admin/view/image/payment/alipay-cross-border.png %%WWWDIR%%/admin/view/image/payment/alipay.png %%WWWDIR%%/admin/view/image/payment/amazon.png +%%WWWDIR%%/admin/view/image/payment/amazon_lpa.png %%WWWDIR%%/admin/view/image/payment/amazonpay.png %%WWWDIR%%/admin/view/image/payment/authorizenet.png %%WWWDIR%%/admin/view/image/payment/bcash.png @@ -663,6 +669,7 @@ %%WWWDIR%%/admin/view/image/payment/divido.png %%WWWDIR%%/admin/view/image/payment/eway.png %%WWWDIR%%/admin/view/image/payment/eway_au.jpg +%%WWWDIR%%/admin/view/image/payment/eway_connect.png %%WWWDIR%%/admin/view/image/payment/firstdata.png %%WWWDIR%%/admin/view/image/payment/g2apay.png %%WWWDIR%%/admin/view/image/payment/globalpay.png @@ -998,6 +1005,7 @@ %%WWWDIR%%/admin/view/stylesheet/fonts/opencart.svg %%WWWDIR%%/admin/view/stylesheet/fonts/opencart.ttf %%WWWDIR%%/admin/view/stylesheet/fonts/opencart.woff +%%WWWDIR%%/admin/view/stylesheet/googleshopping/stepper.css %%WWWDIR%%/admin/view/stylesheet/sass/_bootstrap-compass.scss %%WWWDIR%%/admin/view/stylesheet/sass/_bootstrap-mincer.scss %%WWWDIR%%/admin/view/stylesheet/sass/_bootstrap-sprockets.scss @@ -1130,6 +1138,20 @@ %%WWWDIR%%/admin/view/template/design/translation_list.twig %%WWWDIR%%/admin/view/template/error/not_found.twig %%WWWDIR%%/admin/view/template/error/permission.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_ads.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_campaign.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_checklist.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_connect.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_mapping.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_mapping_verify.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_merchant.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_popup_issues.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_popup_product.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_reports.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_settings.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_shipping_taxes.twig +%%WWWDIR%%/admin/view/template/extension/advertise/google_steps.twig %%WWWDIR%%/admin/view/template/extension/analytics/google.twig %%WWWDIR%%/admin/view/template/extension/captcha/basic.twig %%WWWDIR%%/admin/view/template/extension/captcha/google.twig @@ -1149,6 +1171,7 @@ %%WWWDIR%%/admin/view/template/extension/dashboard/recent_info.twig %%WWWDIR%%/admin/view/template/extension/dashboard/sale_form.twig %%WWWDIR%%/admin/view/template/extension/dashboard/sale_info.twig +%%WWWDIR%%/admin/view/template/extension/extension/advertise.twig %%WWWDIR%%/admin/view/template/extension/extension/analytics.twig %%WWWDIR%%/admin/view/template/extension/extension/captcha.twig %%WWWDIR%%/admin/view/template/extension/extension/dashboard.twig @@ -1313,10 +1336,8 @@ %%WWWDIR%%/admin/view/template/extension/payment/pp_braintree.twig %%WWWDIR%%/admin/view/template/extension/payment/pp_braintree_order.twig %%WWWDIR%%/admin/view/template/extension/payment/pp_braintree_order_ajax.twig -%%WWWDIR%%/admin/view/template/extension/payment/pp_braintree_preferred.twig %%WWWDIR%%/admin/view/template/extension/payment/pp_express.twig %%WWWDIR%%/admin/view/template/extension/payment/pp_express_order.twig -%%WWWDIR%%/admin/view/template/extension/payment/pp_express_preferred.twig %%WWWDIR%%/admin/view/template/extension/payment/pp_express_refund.twig %%WWWDIR%%/admin/view/template/extension/payment/pp_express_search.twig %%WWWDIR%%/admin/view/template/extension/payment/pp_express_transaction.twig @@ -1382,7 +1403,6 @@ %%WWWDIR%%/admin/view/template/extension/report/sale_tax_form.twig %%WWWDIR%%/admin/view/template/extension/report/sale_tax_info.twig %%WWWDIR%%/admin/view/template/extension/shipping/auspost.twig -%%WWWDIR%%/admin/view/template/extension/shipping/citylink.twig %%WWWDIR%%/admin/view/template/extension/shipping/ec_ship.twig %%WWWDIR%%/admin/view/template/extension/shipping/fedex.twig %%WWWDIR%%/admin/view/template/extension/shipping/flat.twig @@ -1561,6 +1581,7 @@ %%WWWDIR%%/catalog/controller/event/statistics.php %%WWWDIR%%/catalog/controller/event/theme.php %%WWWDIR%%/catalog/controller/event/translation.php +%%WWWDIR%%/catalog/controller/extension/advertise/google.php %%WWWDIR%%/catalog/controller/extension/analytics/google.php %%WWWDIR%%/catalog/controller/extension/captcha/basic.php %%WWWDIR%%/catalog/controller/extension/captcha/google.php @@ -1731,6 +1752,7 @@ %%WWWDIR%%/catalog/language/en-gb/en-gb.php %%WWWDIR%%/catalog/language/en-gb/en-gb.png %%WWWDIR%%/catalog/language/en-gb/error/not_found.php +%%WWWDIR%%/catalog/language/en-gb/extension/advertise/google.php %%WWWDIR%%/catalog/language/en-gb/extension/captcha/basic.php %%WWWDIR%%/catalog/language/en-gb/extension/captcha/google.php %%WWWDIR%%/catalog/language/en-gb/extension/credit_card/sagepay_direct.php @@ -1809,7 +1831,6 @@ %%WWWDIR%%/catalog/language/en-gb/extension/recurring/pp_express.php %%WWWDIR%%/catalog/language/en-gb/extension/recurring/squareup.php %%WWWDIR%%/catalog/language/en-gb/extension/shipping/auspost.php -%%WWWDIR%%/catalog/language/en-gb/extension/shipping/citylink.php %%WWWDIR%%/catalog/language/en-gb/extension/shipping/ec_ship.php %%WWWDIR%%/catalog/language/en-gb/extension/shipping/fedex.php %%WWWDIR%%/catalog/language/en-gb/extension/shipping/flat.php @@ -1878,11 +1899,13 @@ %%WWWDIR%%/catalog/model/design/layout.php %%WWWDIR%%/catalog/model/design/theme.php %%WWWDIR%%/catalog/model/design/translation.php +%%WWWDIR%%/catalog/model/extension/advertise/google.php %%WWWDIR%%/catalog/model/extension/credit_card/squareup.php %%WWWDIR%%/catalog/model/extension/feed/google_base.php %%WWWDIR%%/catalog/model/extension/fraud/fraudlabspro.php %%WWWDIR%%/catalog/model/extension/fraud/ip.php %%WWWDIR%%/catalog/model/extension/fraud/maxmind.php +%%WWWDIR%%/catalog/model/extension/module/amazon_login.php %%WWWDIR%%/catalog/model/extension/module/laybuy_layout.php %%WWWDIR%%/catalog/model/extension/module/pp_login.php %%WWWDIR%%/catalog/model/extension/openbay/amazon_listing.php @@ -1947,7 +1970,6 @@ %%WWWDIR%%/catalog/model/extension/payment/wechat_pay.php %%WWWDIR%%/catalog/model/extension/payment/worldpay.php %%WWWDIR%%/catalog/model/extension/shipping/auspost.php -%%WWWDIR%%/catalog/model/extension/shipping/citylink.php %%WWWDIR%%/catalog/model/extension/shipping/ec_ship.php %%WWWDIR%%/catalog/model/extension/shipping/fedex.php %%WWWDIR%%/catalog/model/extension/shipping/flat.php @@ -2132,6 +2154,12 @@ %%WWWDIR%%/catalog/view/theme/default/template/common/search.twig %%WWWDIR%%/catalog/view/theme/default/template/common/success.twig %%WWWDIR%%/catalog/view/theme/default/template/error/not_found.twig +%%WWWDIR%%/catalog/view/theme/default/template/extension/advertise/google_dynamic_remarketing_cart.twig +%%WWWDIR%%/catalog/view/theme/default/template/extension/advertise/google_dynamic_remarketing_category.twig +%%WWWDIR%%/catalog/view/theme/default/template/extension/advertise/google_dynamic_remarketing_home.twig +%%WWWDIR%%/catalog/view/theme/default/template/extension/advertise/google_dynamic_remarketing_product.twig +%%WWWDIR%%/catalog/view/theme/default/template/extension/advertise/google_dynamic_remarketing_purchase.twig +%%WWWDIR%%/catalog/view/theme/default/template/extension/advertise/google_dynamic_remarketing_searchresults.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/captcha/basic.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/captcha/google.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/credit_card/sagepay_direct_form.twig @@ -2140,7 +2168,7 @@ %%WWWDIR%%/catalog/view/theme/default/template/extension/credit_card/squareup.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/module/account.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/module/amazon_login.twig -%%WWWDIR%%/catalog/view/theme/default/template/extension/module/amazon_pay.twig +%%WWWDIR%%/catalog/view/theme/default/template/extension/module/amazon_login_error.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/module/banner.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/module/bestseller.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/module/carousel.twig @@ -2168,7 +2196,7 @@ %%WWWDIR%%/catalog/view/theme/default/template/extension/payment/alipay_cross.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/payment/amazon_login_pay_address.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/payment/amazon_login_pay_confirm.twig -%%WWWDIR%%/catalog/view/theme/default/template/extension/payment/amazon_login_pay_failure.twig +%%WWWDIR%%/catalog/view/theme/default/template/extension/payment/amazon_login_pay_generic.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/payment/amazon_login_pay_payment.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/payment/authorizenet_aim.twig %%WWWDIR%%/catalog/view/theme/default/template/extension/payment/authorizenet_sim.twig @@ -2414,7 +2442,6 @@ %%WWWDIR%%/index.php %%WWWDIR%%/install/cli_install.php %%WWWDIR%%/install/controller/3rd_party/extension.php -%%WWWDIR%%/install/controller/3rd_party/maxmind.php %%WWWDIR%%/install/controller/3rd_party/openbay.php %%WWWDIR%%/install/controller/common/column_left.php %%WWWDIR%%/install/controller/common/footer.php @@ -2431,7 +2458,6 @@ %%WWWDIR%%/install/controller/startup/upgrade.php %%WWWDIR%%/install/controller/upgrade/upgrade.php %%WWWDIR%%/install/index.php -%%WWWDIR%%/install/language/en-gb/3rd_party/maxmind.php %%WWWDIR%%/install/language/en-gb/3rd_party/openbay.php %%WWWDIR%%/install/language/en-gb/common/column_left.php %%WWWDIR%%/install/language/en-gb/common/footer.php @@ -2443,7 +2469,6 @@ %%WWWDIR%%/install/language/en-gb/install/step_3.php %%WWWDIR%%/install/language/en-gb/install/step_4.php %%WWWDIR%%/install/language/en-gb/upgrade/upgrade.php -%%WWWDIR%%/install/model/3rd_party/maxmind.php %%WWWDIR%%/install/model/install/install.php %%WWWDIR%%/install/model/upgrade/1000.php %%WWWDIR%%/install/model/upgrade/1001.php @@ -2456,12 +2481,12 @@ %%WWWDIR%%/install/model/upgrade/1008.php %%WWWDIR%%/install/model/upgrade/1009.php %%WWWDIR%%/install/opencart.sql +%%WWWDIR%%/install/view/image/amazon-pay.png %%WWWDIR%%/install/view/image/amazon.png %%WWWDIR%%/install/view/image/background.png %%WWWDIR%%/install/view/image/ebay.png %%WWWDIR%%/install/view/image/heading.png %%WWWDIR%%/install/view/image/logo.png -%%WWWDIR%%/install/view/image/maxmind.gif %%WWWDIR%%/install/view/image/openbay_pro.gif %%WWWDIR%%/install/view/javascript/bootstrap/css/bootstrap-theme.css %%WWWDIR%%/install/view/javascript/bootstrap/css/bootstrap-theme.min.css @@ -2513,7 +2538,6 @@ %%WWWDIR%%/install/view/javascript/jquery/jquery-2.1.1.min.js %%WWWDIR%%/install/view/javascript/jquery/jquery-2.1.1.min.map %%WWWDIR%%/install/view/stylesheet/stylesheet.css -%%WWWDIR%%/install/view/template/3rd_party/maxmind.twig %%WWWDIR%%/install/view/template/3rd_party/openbay.twig %%WWWDIR%%/install/view/template/common/column_left.twig %%WWWDIR%%/install/view/template/common/footer.twig @@ -2529,6 +2553,7 @@ %%WWWDIR%%/system/config/admin.php %%WWWDIR%%/system/config/catalog.php %%WWWDIR%%/system/config/default.php +%%WWWDIR%%/system/config/googleshopping/googleshopping.php %%WWWDIR%%/system/config/index.html %%WWWDIR%%/system/config/install.php %%WWWDIR%%/system/engine/action.php @@ -2565,6 +2590,14 @@ %%WWWDIR%%/system/library/db/postgre.php %%WWWDIR%%/system/library/document.php %%WWWDIR%%/system/library/encryption.php +%%WWWDIR%%/system/library/googleshopping/cron.php +%%WWWDIR%%/system/library/googleshopping/cron_functions.php +%%WWWDIR%%/system/library/googleshopping/exception/accessforbidden.php +%%WWWDIR%%/system/library/googleshopping/exception/connection.php +%%WWWDIR%%/system/library/googleshopping/googleshopping.php +%%WWWDIR%%/system/library/googleshopping/library.php +%%WWWDIR%%/system/library/googleshopping/traits/libraryloader.php +%%WWWDIR%%/system/library/googleshopping/traits/storeloader.php %%WWWDIR%%/system/library/image.php %%WWWDIR%%/system/library/language.php %%WWWDIR%%/system/library/log.php @@ -2786,7 +2819,40 @@ %%WWWDIR%%/system/storage/session/.htaccess %%WWWDIR%%/system/storage/session/index.html %%WWWDIR%%/system/storage/upload/index.html +%%WWWDIR%%/system/storage/vendor/autoload.php +%%WWWDIR%%/system/storage/vendor/bin/pscss +%%WWWDIR%%/system/storage/vendor/bin/pscss.bat +%%WWWDIR%%/system/storage/vendor/composer/ClassLoader.php +%%WWWDIR%%/system/storage/vendor/composer/LICENSE +%%WWWDIR%%/system/storage/vendor/composer/autoload_classmap.php +%%WWWDIR%%/system/storage/vendor/composer/autoload_files.php +%%WWWDIR%%/system/storage/vendor/composer/autoload_namespaces.php +%%WWWDIR%%/system/storage/vendor/composer/autoload_psr4.php +%%WWWDIR%%/system/storage/vendor/composer/autoload_real.php +%%WWWDIR%%/system/storage/vendor/composer/autoload_static.php +%%WWWDIR%%/system/storage/vendor/composer/installed.json %%WWWDIR%%/system/storage/vendor/scss.inc.php +%%WWWDIR%%/system/storage/vendor/symfony/polyfill-ctype/Ctype.php +%%WWWDIR%%/system/storage/vendor/symfony/polyfill-ctype/LICENSE +%%WWWDIR%%/system/storage/vendor/symfony/polyfill-ctype/README.md +%%WWWDIR%%/system/storage/vendor/symfony/polyfill-ctype/bootstrap.php +%%WWWDIR%%/system/storage/vendor/symfony/polyfill-ctype/composer.json +@dir %%WWWDIR%%/system/storage/vendor/braintree/braintree_php +@dir %%WWWDIR%%/system/storage/vendor/cardinity/cardinity-sdk-php +@dir %%WWWDIR%%/system/storage/vendor/divido/divido-php +@dir %%WWWDIR%%/system/storage/vendor/guzzlehttp/guzzle +@dir %%WWWDIR%%/system/storage/vendor/guzzlehttp/log-subscriber +@dir %%WWWDIR%%/system/storage/vendor/guzzlehttp/oauth-subscriber +@dir %%WWWDIR%%/system/storage/vendor/guzzlehttp/ringphp +@dir %%WWWDIR%%/system/storage/vendor/guzzlehttp/streams +@dir %%WWWDIR%%/system/storage/vendor/klarna/kco_rest +@dir %%WWWDIR%%/system/storage/vendor/leafo/scssphp +@dir %%WWWDIR%%/system/storage/vendor/psr/log +@dir %%WWWDIR%%/system/storage/vendor/react/promise +@dir %%WWWDIR%%/system/storage/vendor/symfony/polyfill-mbstring +@dir %%WWWDIR%%/system/storage/vendor/symfony/translation +@dir %%WWWDIR%%/system/storage/vendor/symfony/validator +@dir %%WWWDIR%%/system/storage/vendor/zoujingli/wechat-php-sdk @mode 0755 @group www @owner www diff --git a/www/py-dj21-django-filter/Makefile b/www/py-dj21-django-filter/Makefile index b6eb811e5ae..600f568a071 100644 --- a/www/py-dj21-django-filter/Makefile +++ b/www/py-dj21-django-filter/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= django-filter -DISTVERSION= 1.1.0 +DISTVERSION= 2.0.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj21- @@ -12,10 +12,7 @@ COMMENT= Dynamic filtering for querysets with Django LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django21>0:www/py-django21@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}dj21-djangorestframework>0:www/py-dj21-djangorestframework@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}coreapi>0:devel/py-coreapi@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}coreschema>0:devel/py-coreschema@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django21>=1.11:www/py-django21@${PY_FLAVOR} USES= python:3.5+ USE_PYTHON= distutils autoplist diff --git a/www/py-dj21-django-filter/distinfo b/www/py-dj21-django-filter/distinfo index dfd9c43778b..7eb2f2f2228 100644 --- a/www/py-dj21-django-filter/distinfo +++ b/www/py-dj21-django-filter/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1522148113 -SHA256 (django-filter-1.1.0.tar.gz) = ec0ef1ba23ef95b1620f5d481334413700fb33f45cd76d56a63f4b0b1d76976a -SIZE (django-filter-1.1.0.tar.gz) = 127831 +TIMESTAMP = 1549893591 +SHA256 (django-filter-2.0.0.tar.gz) = 6f4e4bc1a11151178520567b50320e5c32f8edb552139d93ea3e30613b886f56 +SIZE (django-filter-2.0.0.tar.gz) = 142039 diff --git a/www/py-dj21-django-tables2/Makefile b/www/py-dj21-django-tables2/Makefile index 0f9c5dde867..d0e07c03f78 100644 --- a/www/py-dj21-django-tables2/Makefile +++ b/www/py-dj21-django-tables2/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django-tables2 -DISTVERSION= 1.21.2 +DISTVERSION= 2.0.3 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj21- @@ -13,7 +13,7 @@ COMMENT= Table/data-grid framework for Django LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django21>=0:www/py-django21@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django21>=1.11:www/py-django21@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tablib>=0:textproc/py-tablib@${PY_FLAVOR} USES= python:3.5+ diff --git a/www/py-dj21-django-tables2/distinfo b/www/py-dj21-django-tables2/distinfo index 5ad3ee7b23c..f83f3790ea1 100644 --- a/www/py-dj21-django-tables2/distinfo +++ b/www/py-dj21-django-tables2/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1522914211 -SHA256 (django-tables2-1.21.2.tar.gz) = c5c979201b7a2f7e88f2784dcd478e0c809d3a2053dea576cb71ce51676bbf7a -SIZE (django-tables2-1.21.2.tar.gz) = 2680587 +TIMESTAMP = 1549896139 +SHA256 (django-tables2-2.0.3.tar.gz) = 100fe1be2faa620b807dc0c2a49016f466e1ce7e3a2845dc6ecf3aaf9a96df67 +SIZE (django-tables2-2.0.3.tar.gz) = 8411743 diff --git a/www/qupzilla-qt4/Makefile b/www/qupzilla-qt4/Makefile index 14d25f3a411..bd670829201 100644 --- a/www/qupzilla-qt4/Makefile +++ b/www/qupzilla-qt4/Makefile @@ -8,7 +8,7 @@ MASTER_SITES= https://github.com/QupZilla/${PORTNAME}/releases/download/v${PORTV PKGNAMESUFFIX= -qt4 DISTNAME= QupZilla-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= kde@FreeBSD.org COMMENT= Web browser based on WebKit engine and Qt Framework LICENSE= GPLv3 diff --git a/www/qupzilla-qt5/Makefile b/www/qupzilla-qt5/Makefile index b82d0a21982..f57a6935171 100644 --- a/www/qupzilla-qt5/Makefile +++ b/www/qupzilla-qt5/Makefile @@ -8,7 +8,7 @@ MASTER_SITES= https://github.com/QupZilla/${PORTNAME}/releases/download/v${PORTV PKGNAMESUFFIX= -qt5 DISTNAME= QupZilla-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= kde@FreeBSD.org COMMENT= Web browser based on WebKit engine and Qt Framework LICENSE= GPLv3 diff --git a/x11-themes/greybird-theme/Makefile b/x11-themes/greybird-theme/Makefile index c200a533da5..da3210d6f6e 100644 --- a/x11-themes/greybird-theme/Makefile +++ b/x11-themes/greybird-theme/Makefile @@ -4,6 +4,7 @@ PORTNAME= greybird PORTVERSION= 3.22.9 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= x11-themes xfce PKGNAMESUFFIX= -theme diff --git a/x11-themes/greybird-theme/pkg-plist b/x11-themes/greybird-theme/pkg-plist index 91a82f25535..bccb11df32b 100644 --- a/x11-themes/greybird-theme/pkg-plist +++ b/x11-themes/greybird-theme/pkg-plist @@ -137,8 +137,8 @@ share/themes/Greybird/gtk-3.0/gtk.css share/themes/Greybird/gtk-3.0/gtk.gresource.xml share/themes/Greybird/gtk-3.0/settings.ini share/themes/Greybird/plank/dock.theme -share/themes/Greybird/xfce-notify-4.0/gtk.css -share/themes/Greybird/xfce-notify-4.0/gtkrc +%%NOTIFYD%%share/themes/Greybird/xfce-notify-4.0/gtk.css +%%NOTIFYD%%share/themes/Greybird/xfce-notify-4.0/gtkrc share/themes/Greybird/xfwm4/base-inactive.png share/themes/Greybird/xfwm4/base.png share/themes/Greybird/xfwm4/bottom-active.xpm diff --git a/x11/slurp/Makefile b/x11/slurp/Makefile index 73cc1e7ad8b..d1cf9387b70 100644 --- a/x11/slurp/Makefile +++ b/x11/slurp/Makefile @@ -2,12 +2,9 @@ PORTNAME= slurp DISTVERSIONPREFIX= v -DISTVERSION= 1.0 +DISTVERSION= 1.0.1 CATEGORIES= x11 -PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ -PATCHFILES= 74c4bdff012a.patch:-p1 7976828fe1a9.patch:-p1 - MAINTAINER= jbeich@FreeBSD.org COMMENT= Select a region in a Wayland compositor diff --git a/x11/slurp/distinfo b/x11/slurp/distinfo index f4c68107d2d..39d51cc3c16 100644 --- a/x11/slurp/distinfo +++ b/x11/slurp/distinfo @@ -1,7 +1,3 @@ -TIMESTAMP = 1542873030 -SHA256 (emersion-slurp-v1.0_GH0.tar.gz) = 41f3e98fa2729ae91d9f45e4d5e08023777b2cf3839e0cc0a7b2a5c53ebc4fd4 -SIZE (emersion-slurp-v1.0_GH0.tar.gz) = 13416 -SHA256 (74c4bdff012a.patch) = 684803438a50cb6bdbfa365967837252fc7b7df60be053c031aee4f6b30355ea -SIZE (74c4bdff012a.patch) = 577 -SHA256 (7976828fe1a9.patch) = b2c4d55b9d16e9be5a2b2977f44e78fa92ef67889f0959604304b78115ddc259 -SIZE (7976828fe1a9.patch) = 474 +TIMESTAMP = 1550003063 +SHA256 (emersion-slurp-v1.0.1_GH0.tar.gz) = 3e44401ff3ecf78bd147e1e3d40cc571973da7f4e0f26ce3cd70b60e2c270b67 +SIZE (emersion-slurp-v1.0.1_GH0.tar.gz) = 13421 diff --git a/x11/xterm/Makefile b/x11/xterm/Makefile index 50456cc5f0f..484ae50eabc 100644 --- a/x11/xterm/Makefile +++ b/x11/xterm/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xterm -PORTVERSION= 343 +PORTVERSION= 344 CATEGORIES= x11 MASTER_SITES= ftp://ftp.invisible-island.net/xterm/:src1 \ https://invisible-mirror.net/archives/xterm/:src1 \ diff --git a/x11/xterm/distinfo b/x11/xterm/distinfo index 54e9bdb0f62..13c56b3b531 100644 --- a/x11/xterm/distinfo +++ b/x11/xterm/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1547450901 -SHA256 (xterm-343.tgz) = 931db261a2069ddf7dc3a305985f494468b609cf7198f02ca09df9498cfad17a -SIZE (xterm-343.tgz) = 1351326 +TIMESTAMP = 1550039462 +SHA256 (xterm-344.tgz) = ccceb8f6119ae24ab422d7ce7c5713114d304c856daf0d922efc198b56accdf5 +SIZE (xterm-344.tgz) = 1355326 SHA256 (bsd-xterm-icons-1.tgz) = fcf51dce0e23e9911a16ed7f2ce835bb6ff2ada65f023c29fdd8abda2795bf7c SIZE (bsd-xterm-icons-1.tgz) = 22718