From owner-svn-ports-all@freebsd.org Sun Jun 16 02:17:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B35BC15B0986; Sun, 16 Jun 2019 02:17:03 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5907693CD4; Sun, 16 Jun 2019 02:17:03 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 42AD07EE8; Sun, 16 Jun 2019 02:17:03 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G2H3b0019617; Sun, 16 Jun 2019 02:17:03 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G2H34K019616; Sun, 16 Jun 2019 02:17:03 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201906160217.x5G2H34K019616@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Sun, 16 Jun 2019 02:17:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504272 - head/www/chromium/files X-SVN-Group: ports-head X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: head/www/chromium/files X-SVN-Commit-Revision: 504272 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5907693CD4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 02:17:04 -0000 Author: cpm Date: Sun Jun 16 02:17:02 2019 New Revision: 504272 URL: https://svnweb.freebsd.org/changeset/ports/504272 Log: www/chromium: Unbreak build on < 11.3 In file included from gen/base/base_jumbo_17.cc:8: ./../../base/sampling_heap_profiler/sampling_heap_profiler.cc:74:3: error: use of undeclared identifier 'pthread_get_name_np' pthread_get_name_np(pthread_self(), name, kBufferLen); ^ PR: 238563 Reported by: kib@ Modified: head/www/chromium/files/patch-base_sampling__heap__profiler_sampling__heap__profiler.cc Modified: head/www/chromium/files/patch-base_sampling__heap__profiler_sampling__heap__profiler.cc ============================================================================== --- head/www/chromium/files/patch-base_sampling__heap__profiler_sampling__heap__profiler.cc Sat Jun 15 22:25:44 2019 (r504271) +++ head/www/chromium/files/patch-base_sampling__heap__profiler_sampling__heap__profiler.cc Sun Jun 16 02:17:02 2019 (r504272) @@ -1,5 +1,5 @@ ---- base/sampling_heap_profiler/sampling_heap_profiler.cc.orig 2019-06-04 18:55:15 UTC -+++ base/sampling_heap_profiler/sampling_heap_profiler.cc +--- base/sampling_heap_profiler/sampling_heap_profiler.cc.orig 2019-06-13 09:11:51.000000000 +0200 ++++ base/sampling_heap_profiler/sampling_heap_profiler.cc 2019-06-14 21:28:04.089347000 +0200 @@ -30,6 +30,10 @@ #include #endif @@ -11,12 +11,12 @@ #if defined(OS_ANDROID) && BUILDFLAG(CAN_UNWIND_WITH_CFI_TABLE) && \ defined(OFFICIAL_BUILD) #include "base/trace_event/cfi_backtrace_android.h" -@@ -65,6 +69,10 @@ const char* GetAndLeakThreadName() { +@@ -65,6 +69,10 @@ #elif defined(OS_MACOSX) int err = pthread_getname_np(pthread_self(), name, kBufferLen); if (err == 0 && *name != '\0') + return strdup(name); -+#elif defined(OS_BSD) ++#elif defined(OS_BSD) && defined(HAVE_PTHREAD_GET_NAME_NP) + pthread_get_name_np(pthread_self(), name, kBufferLen); + if (*name != '\0') return strdup(name); From owner-svn-ports-all@freebsd.org Sun Jun 16 02:20:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA32315B09FD; Sun, 16 Jun 2019 02:20:35 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F08093EFB; Sun, 16 Jun 2019 02:20:35 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 24C4E7EF0; Sun, 16 Jun 2019 02:20:35 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G2KZHb019912; Sun, 16 Jun 2019 02:20:35 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G2KYdV019911; Sun, 16 Jun 2019 02:20:34 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201906160220.x5G2KYdV019911@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Sun, 16 Jun 2019 02:20:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504273 - head/www/chromium X-SVN-Group: ports-head X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: head/www/chromium X-SVN-Commit-Revision: 504273 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4F08093EFB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 02:20:36 -0000 Author: cpm Date: Sun Jun 16 02:20:34 2019 New Revision: 504273 URL: https://svnweb.freebsd.org/changeset/ports/504273 Log: www/chromium: Update to 75.0.3770.90 Changelog: https://chromium.googlesource.com/chromium/src/+log/75.0.3770.80..75.0.3770.90?pretty=fuller&n=10000 Modified: head/www/chromium/Makefile head/www/chromium/distinfo Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Sun Jun 16 02:17:02 2019 (r504272) +++ head/www/chromium/Makefile Sun Jun 16 02:20:34 2019 (r504273) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 75.0.3770.80 +PORTVERSION= 75.0.3770.90 CATEGORIES?= www MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ \ LOCAL/cpm/chromium/:fonts Modified: head/www/chromium/distinfo ============================================================================== --- head/www/chromium/distinfo Sun Jun 16 02:17:02 2019 (r504272) +++ head/www/chromium/distinfo Sun Jun 16 02:20:34 2019 (r504273) @@ -1,7 +1,7 @@ -TIMESTAMP = 1559766977 -SHA256 (chromium-75.0.3770.80.tar.xz) = da828bc8d887821380b461abfbbd0e17538c211d56f240f03711b918c77a66d6 -SIZE (chromium-75.0.3770.80.tar.xz) = 707985016 -SHA256 (chromium-75.0.3770.80-testdata.tar.xz) = baacaa2e67df853aa4c8550da5e533a6d5c41ad31c6bf2e9588364831791ba4a -SIZE (chromium-75.0.3770.80-testdata.tar.xz) = 351066708 +TIMESTAMP = 1560500971 +SHA256 (chromium-75.0.3770.90.tar.xz) = b1b59abbe19ecb88c17d99fa68f5c1c5585a5d66c100858f944aa3b93b943839 +SIZE (chromium-75.0.3770.90.tar.xz) = 708212580 +SHA256 (chromium-75.0.3770.90-testdata.tar.xz) = 56b3778aa3698c2dd8057fe34ec72e6c0cc845ebaeb1dc6e09d6e8e9aabecd65 +SIZE (chromium-75.0.3770.90-testdata.tar.xz) = 352590588 SHA256 (test_fonts.tar.xz) = cf9cbe3b7f1c4c42d426bddc65ec178d333ad7e205a36fe0a606a3c0c545ece1 SIZE (test_fonts.tar.xz) = 200040 From owner-svn-ports-all@freebsd.org Sun Jun 16 03:04:22 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EF43915B192B; Sun, 16 Jun 2019 03:04:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 92E5A95258; Sun, 16 Jun 2019 03:04:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 53D1987B7; Sun, 16 Jun 2019 03:04:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G34L2R046624; Sun, 16 Jun 2019 03:04:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G34K4o046619; Sun, 16 Jun 2019 03:04:20 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906160304.x5G34K4o046619@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 16 Jun 2019 03:04:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504274 - in head/devel: . py-cymem py-cymem/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-cymem py-cymem/files X-SVN-Commit-Revision: 504274 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 92E5A95258 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 03:04:22 -0000 Author: yuri Date: Sun Jun 16 03:04:20 2019 New Revision: 504274 URL: https://svnweb.freebsd.org/changeset/ports/504274 Log: New port: devel/py-cymem: Cython memory helper Added: head/devel/py-cymem/ head/devel/py-cymem/Makefile (contents, props changed) head/devel/py-cymem/distinfo (contents, props changed) head/devel/py-cymem/files/ head/devel/py-cymem/files/patch-setup.py (contents, props changed) head/devel/py-cymem/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 16 02:20:34 2019 (r504273) +++ head/devel/Makefile Sun Jun 16 03:04:20 2019 (r504274) @@ -4288,6 +4288,7 @@ SUBDIR += py-curtsies SUBDIR += py-cxx SUBDIR += py-cycler + SUBDIR += py-cymem SUBDIR += py-d2to1 SUBDIR += py-daemon SUBDIR += py-daemon-runner Added: head/devel/py-cymem/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cymem/Makefile Sun Jun 16 03:04:20 2019 (r504274) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= cymem +PORTVERSION= 2.0.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Cython memory helper + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/cymem/cymem.so + +.include Added: head/devel/py-cymem/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cymem/distinfo Sun Jun 16 03:04:20 2019 (r504274) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560653563 +SHA256 (cymem-2.0.2.tar.gz) = ab88b1534f06df07262d9bc5efb3ba07948cdbe9a363eb9eaa4ad42fae6c7b5e +SIZE (cymem-2.0.2.tar.gz) = 47797 Added: head/devel/py-cymem/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cymem/files/patch-setup.py Sun Jun 16 03:04:20 2019 (r504274) @@ -0,0 +1,11 @@ +--- setup.py.orig 2019-06-16 03:00:04 UTC ++++ setup.py +@@ -119,7 +119,7 @@ def setup_package(): + url=about['__uri__'], + license=about['__license__'], + ext_modules=ext_modules, +- setup_requires=['wheel>=0.32.0,<0.33.0'], ++ setup_requires=[], + classifiers=[ + 'Environment :: Console', + 'Intended Audience :: Developers', Added: head/devel/py-cymem/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cymem/pkg-descr Sun Jun 16 03:04:20 2019 (r504274) @@ -0,0 +1,3 @@ +Cython memory pool for RAII-style memory management. + +WWW: https://github.com/explosion/cymem From owner-svn-ports-all@freebsd.org Sun Jun 16 03:15:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC3C315B1C3B; Sun, 16 Jun 2019 03:15:48 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7CA2D957EA; Sun, 16 Jun 2019 03:15:48 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5597D896B; Sun, 16 Jun 2019 03:15:48 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G3FmCV052074; Sun, 16 Jun 2019 03:15:48 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G3FlbX052070; Sun, 16 Jun 2019 03:15:47 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906160315.x5G3FlbX052070@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 16 Jun 2019 03:15:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504275 - in head/devel: . py-preshed py-preshed/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-preshed py-preshed/files X-SVN-Commit-Revision: 504275 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7CA2D957EA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 03:15:49 -0000 Author: yuri Date: Sun Jun 16 03:15:47 2019 New Revision: 504275 URL: https://svnweb.freebsd.org/changeset/ports/504275 Log: New port: devel/py-preshed: Cython hash table Added: head/devel/py-preshed/ head/devel/py-preshed/Makefile (contents, props changed) head/devel/py-preshed/distinfo (contents, props changed) head/devel/py-preshed/files/ head/devel/py-preshed/files/patch-setup.py (contents, props changed) head/devel/py-preshed/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 16 03:04:20 2019 (r504274) +++ head/devel/Makefile Sun Jun 16 03:15:47 2019 (r504275) @@ -4722,6 +4722,7 @@ SUBDIR += py-pp SUBDIR += py-pqueue SUBDIR += py-pre-commit + SUBDIR += py-preshed SUBDIR += py-pretend SUBDIR += py-prettyprinter SUBDIR += py-prettytable Added: head/devel/py-preshed/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-preshed/Makefile Sun Jun 16 03:15:47 2019 (r504275) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= preshed +PORTVERSION= 2.0.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Cython hash table + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cymem>0:devel/py-cymem@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/preshed/*.so + +.include Added: head/devel/py-preshed/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-preshed/distinfo Sun Jun 16 03:15:47 2019 (r504275) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560654504 +SHA256 (preshed-2.0.1.tar.gz) = dae01c74313965c487e0ec839e5f28d0c7df9bfd1d978aa5bada3f72ff20a9e5 +SIZE (preshed-2.0.1.tar.gz) = 113656 Added: head/devel/py-preshed/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-preshed/files/patch-setup.py Sun Jun 16 03:15:47 2019 (r504275) @@ -0,0 +1,11 @@ +--- setup.py.orig 2019-06-16 03:11:49 UTC ++++ setup.py +@@ -124,7 +124,7 @@ def setup_package(): + url=about['__uri__'], + license=about['__license__'], + ext_modules=ext_modules, +- setup_requires=['wheel>=0.32.0,<0.33.0'], ++ setup_requires=[], + install_requires=['cymem>=2.0.2,<2.1.0'], + classifiers=[ + 'Environment :: Console', Added: head/devel/py-preshed/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-preshed/pkg-descr Sun Jun 16 03:15:47 2019 (r504275) @@ -0,0 +1,3 @@ +Cython hash tables that assume keys are pre-hashed. + +WWW: https://github.com/explosion/preshed From owner-svn-ports-all@freebsd.org Sun Jun 16 03:31:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A63A15B1EFF; Sun, 16 Jun 2019 03:31:39 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A5A0895CA7; Sun, 16 Jun 2019 03:31:38 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 98DE88B7B; Sun, 16 Jun 2019 03:31:38 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G3Vcrk059256; Sun, 16 Jun 2019 03:31:38 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G3VbB5059252; Sun, 16 Jun 2019 03:31:37 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906160331.x5G3VbB5059252@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 16 Jun 2019 03:31:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504276 - in head/devel: . py-plac X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-plac X-SVN-Commit-Revision: 504276 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A5A0895CA7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 03:31:39 -0000 Author: yuri Date: Sun Jun 16 03:31:37 2019 New Revision: 504276 URL: https://svnweb.freebsd.org/changeset/ports/504276 Log: New port: devel/py-plac: Command line arguments parser for python Added: head/devel/py-plac/ head/devel/py-plac/Makefile (contents, props changed) head/devel/py-plac/distinfo (contents, props changed) head/devel/py-plac/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 16 03:15:47 2019 (r504275) +++ head/devel/Makefile Sun Jun 16 03:31:37 2019 (r504276) @@ -4707,6 +4707,7 @@ SUBDIR += py-pip-tools2 SUBDIR += py-pipenv SUBDIR += py-pkgconfig + SUBDIR += py-plac SUBDIR += py-plan SUBDIR += py-plex SUBDIR += py-pluggy Added: head/devel/py-plac/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-plac/Makefile Sun Jun 16 03:31:37 2019 (r504276) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= plac +PORTVERSION= 1.0.0 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Command line arguments parser for python + +LICENSE= BSD3CLAUSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}argparse>0:devel/py-argparse@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils concurrent autoplist + +NO_ARCH= yes + +.include Added: head/devel/py-plac/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-plac/distinfo Sun Jun 16 03:31:37 2019 (r504276) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560655136 +SHA256 (plac-1.0.0.tar.gz) = b03f967f535b3bf5a71b191fa5eb09872a5cfb1e3b377efc4138995e10ba36d7 +SIZE (plac-1.0.0.tar.gz) = 121912 Added: head/devel/py-plac/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-plac/pkg-descr Sun Jun 16 03:31:37 2019 (r504276) @@ -0,0 +1,3 @@ +Allegedly, the smartest command line arguments parser in the world. + +WWW: https://github.com/micheles/plac From owner-svn-ports-all@freebsd.org Sun Jun 16 03:45:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF2FA15B229B; Sun, 16 Jun 2019 03:45:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5B72B962B2; Sun, 16 Jun 2019 03:45:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 31A228E71; Sun, 16 Jun 2019 03:45:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G3jLiP067754; Sun, 16 Jun 2019 03:45:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G3jL33067748; Sun, 16 Jun 2019 03:45:21 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906160345.x5G3jL33067748@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 16 Jun 2019 03:45:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504277 - in head/devel: . py-murmurhash py-murmurhash/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-murmurhash py-murmurhash/files X-SVN-Commit-Revision: 504277 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5B72B962B2 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 03:45:23 -0000 Author: yuri Date: Sun Jun 16 03:45:20 2019 New Revision: 504277 URL: https://svnweb.freebsd.org/changeset/ports/504277 Log: New port: devel/py-murmurhash: Cython bindings for MurmurHash2 Added: head/devel/py-murmurhash/ head/devel/py-murmurhash/Makefile (contents, props changed) head/devel/py-murmurhash/distinfo (contents, props changed) head/devel/py-murmurhash/files/ head/devel/py-murmurhash/files/patch-setup.py (contents, props changed) head/devel/py-murmurhash/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 16 03:31:37 2019 (r504276) +++ head/devel/Makefile Sun Jun 16 03:45:20 2019 (r504277) @@ -4600,6 +4600,7 @@ SUBDIR += py-multipledispatch SUBDIR += py-multiprocess SUBDIR += py-munch + SUBDIR += py-murmurhash SUBDIR += py-mwlib SUBDIR += py-mwlib.ext SUBDIR += py-mwlib.rl Added: head/devel/py-murmurhash/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-murmurhash/Makefile Sun Jun 16 03:45:20 2019 (r504277) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= murmurhash +PORTVERSION= 1.0.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Cython bindings for MurmurHash2 + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= python +USE_PYTHON= distutils autoplist + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/murmurhash/mrmr.so + +.include Added: head/devel/py-murmurhash/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-murmurhash/distinfo Sun Jun 16 03:45:20 2019 (r504277) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560656317 +SHA256 (murmurhash-1.0.2.tar.gz) = c7a646f6b07b033642b4f52ae2e45efd8b80780b3b90e8092a0cec935fbf81e2 +SIZE (murmurhash-1.0.2.tar.gz) = 35323 Added: head/devel/py-murmurhash/files/patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-murmurhash/files/patch-setup.py Sun Jun 16 03:45:20 2019 (r504277) @@ -0,0 +1,11 @@ +--- setup.py.orig 2019-06-16 03:40:21 UTC ++++ setup.py +@@ -126,7 +126,7 @@ def setup_package(): + url=about['__uri__'], + license=about['__license__'], + ext_modules=ext_modules, +- setup_requires=['wheel>=0.32.0,<0.33.0'], ++ setup_requires=[], + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Console', Added: head/devel/py-murmurhash/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-murmurhash/pkg-descr Sun Jun 16 03:45:20 2019 (r504277) @@ -0,0 +1,3 @@ +Cython bindings for MurmurHash2. + +WWW: https://github.com/explosion/murmurhash From owner-svn-ports-all@freebsd.org Sun Jun 16 03:55:28 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5251715B24F2; Sun, 16 Jun 2019 03:55:28 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D2B96966D5; Sun, 16 Jun 2019 03:55:27 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9C0E9035; Sun, 16 Jun 2019 03:55:27 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G3tR63073059; Sun, 16 Jun 2019 03:55:27 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G3tQvh073055; Sun, 16 Jun 2019 03:55:26 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906160355.x5G3tQvh073055@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 16 Jun 2019 03:55:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504278 - in head/devel: . py-cytoolz X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . py-cytoolz X-SVN-Commit-Revision: 504278 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D2B96966D5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 03:55:28 -0000 Author: yuri Date: Sun Jun 16 03:55:26 2019 New Revision: 504278 URL: https://svnweb.freebsd.org/changeset/ports/504278 Log: New port: devel/py-cytoolz: Cython implementation of Toolz: High performance functional utilities Added: head/devel/py-cytoolz/ head/devel/py-cytoolz/Makefile (contents, props changed) head/devel/py-cytoolz/distinfo (contents, props changed) head/devel/py-cytoolz/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 16 03:45:20 2019 (r504277) +++ head/devel/Makefile Sun Jun 16 03:55:26 2019 (r504278) @@ -4289,6 +4289,7 @@ SUBDIR += py-cxx SUBDIR += py-cycler SUBDIR += py-cymem + SUBDIR += py-cytoolz SUBDIR += py-d2to1 SUBDIR += py-daemon SUBDIR += py-daemon-runner Added: head/devel/py-cytoolz/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cytoolz/Makefile Sun Jun 16 03:55:26 2019 (r504278) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= cytoolz +PORTVERSION= 0.9.0.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Cython implementation of Toolz: High performance functional utilities + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}toolz>=0.8.0:devel/py-toolz@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/${PORTNAME}/*.so + +.include Added: head/devel/py-cytoolz/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cytoolz/distinfo Sun Jun 16 03:55:26 2019 (r504278) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560656861 +SHA256 (cytoolz-0.9.0.1.tar.gz) = 84cc06fa40aa310f2df79dd440fc5f84c3e20f01f9f7783fc9c38d0a11ba00e5 +SIZE (cytoolz-0.9.0.1.tar.gz) = 443434 Added: head/devel/py-cytoolz/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-cytoolz/pkg-descr Sun Jun 16 03:55:26 2019 (r504278) @@ -0,0 +1,4 @@ +Cython implementation of the toolz package, which provides high performance +utility functions for iterables, functions, and dictionaries. + +WWW: https://github.com/pytoolz/cytoolz From owner-svn-ports-all@freebsd.org Sun Jun 16 04:38:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8EE215B332C; Sun, 16 Jun 2019 04:38:12 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 495BF975A8; Sun, 16 Jun 2019 04:38:12 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1905B96D1; Sun, 16 Jun 2019 04:38:12 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G4cBUn094159; Sun, 16 Jun 2019 04:38:11 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G4cBXv094156; Sun, 16 Jun 2019 04:38:11 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201906160438.x5G4cBXv094156@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Sun, 16 Jun 2019 04:38:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504279 - head/lang/julia10 X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: head/lang/julia10 X-SVN-Commit-Revision: 504279 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 495BF975A8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 04:38:13 -0000 Author: lwhsu Date: Sun Jun 16 04:38:11 2019 New Revision: 504279 URL: https://svnweb.freebsd.org/changeset/ports/504279 Log: - Update to 1.0.4 Submitted by: Iblis Lin (maintainer) Deleted: head/lang/julia10/pkg-descr Modified: head/lang/julia10/Makefile head/lang/julia10/distinfo head/lang/julia10/pkg-plist Modified: head/lang/julia10/Makefile ============================================================================== --- head/lang/julia10/Makefile Sun Jun 16 03:55:26 2019 (r504278) +++ head/lang/julia10/Makefile Sun Jun 16 04:38:11 2019 (r504279) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= julia -PORTVERSION= 1.0.3 +PORTVERSION= 1.0.4 DISTVERSIONSUFFIX= -full CATEGORIES= lang math MASTER_SITES= https://github.com/JuliaLang/julia/releases/download/v${PORTVERSION}/ @@ -33,6 +33,8 @@ USES= gmake compiler:c++11-lib fortran python:2.7,bui shebangfix USE_LDCONFIG= yes +DESCR= ${.CURDIR}/../julia/pkg-descr + SHEBANG_GLOB= *.sh WRKSRC= ${WRKDIR}/julia-${PORTVERSION} @@ -133,8 +135,8 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-ui_Makefile .endif post-extract: - ${GMAKE} -C ${WRKSRC}/deps extract - ${GMAKE} -C ${WRKSRC}/stdlib install + ${MAKE_CMD} -C ${WRKSRC}/deps extract + ${MAKE_CMD} -C ${WRKSRC}/stdlib install post-patch: echo "override TAGGED_RELEASE_BANNER=\"FreeBSD port lang/${PORTNAME}${PKGNAMESUFFIX} build\"" >> ${WRKSRC}/Make.user Modified: head/lang/julia10/distinfo ============================================================================== --- head/lang/julia10/distinfo Sun Jun 16 03:55:26 2019 (r504278) +++ head/lang/julia10/distinfo Sun Jun 16 04:38:11 2019 (r504279) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552292755 -SHA256 (julia-1.0.3-full.tar.gz) = 618e6d29f1fba00f5b2bebf14e69a3a536c27c3132e021cf39774e8500dd29fa -SIZE (julia-1.0.3-full.tar.gz) = 95732731 +TIMESTAMP = 1559889707 +SHA256 (julia-1.0.4-full.tar.gz) = bbc5c88a4acfecd3b059a01680926c693b82cf3b41733719c384fb0b371ca581 +SIZE (julia-1.0.4-full.tar.gz) = 95865812 Modified: head/lang/julia10/pkg-plist ============================================================================== --- head/lang/julia10/pkg-plist Sun Jun 16 03:55:26 2019 (r504278) +++ head/lang/julia10/pkg-plist Sun Jun 16 04:38:11 2019 (r504279) @@ -501,6 +501,7 @@ man/man1/julia10.1.gz %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/NastyGenerator.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/api.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/pkg.jl +%%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/project/good/pkg.toml %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/repl.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/resolve.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/resolvedata1.jl @@ -526,6 +527,10 @@ man/man1/julia10.1.gz %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BigProject/test/LibFoo.jl/test/runtests.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BigProject/test/REQUIRE %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BigProject/test/runtests.jl +%%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BuildProjectFixedDeps/Manifest.toml +%%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BuildProjectFixedDeps/Project.toml +%%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BuildProjectFixedDeps/deps/build.jl +%%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BuildProjectFixedDeps/src/BuildProjectFixedDeps.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/PackageWithBuildSpecificTestDeps/src/PackageWithBuildSpecificTestDeps.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/PackageWithBuildSpecificTestDeps/test/REQUIRE %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/PackageWithBuildSpecificTestDeps/test/runtests.jl @@ -686,6 +691,7 @@ man/man1/julia10.1.gz %%JULIA%%/share/julia/test/codegen.jl %%JULIA%%/share/julia/test/combinatorics.jl %%JULIA%%/share/julia/test/compiler/compiler.jl +%%JULIA%%/share/julia/test/compiler/irpasses.jl %%JULIA%%/share/julia/test/compiler/ssair.jl %%JULIA%%/share/julia/test/compiler/validation.jl %%JULIA%%/share/julia/test/complex.jl From owner-svn-ports-all@freebsd.org Sun Jun 16 04:38:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 415D015B3369; Sun, 16 Jun 2019 04:38:48 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D85CB9767C; Sun, 16 Jun 2019 04:38:47 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AF22596D2; Sun, 16 Jun 2019 04:38:47 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G4clws094329; Sun, 16 Jun 2019 04:38:47 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G4clap094324; Sun, 16 Jun 2019 04:38:47 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201906160438.x5G4clap094324@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Sun, 16 Jun 2019 04:38:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504280 - head/lang/julia11 X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: head/lang/julia11 X-SVN-Commit-Revision: 504280 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D85CB9767C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 04:38:48 -0000 Author: lwhsu Date: Sun Jun 16 04:38:46 2019 New Revision: 504280 URL: https://svnweb.freebsd.org/changeset/ports/504280 Log: - Update to 1.1.1 Submitted by: Iblis Lin (maintainer) Deleted: head/lang/julia11/pkg-descr Modified: head/lang/julia11/Makefile head/lang/julia11/distinfo head/lang/julia11/pkg-plist Modified: head/lang/julia11/Makefile ============================================================================== --- head/lang/julia11/Makefile Sun Jun 16 04:38:11 2019 (r504279) +++ head/lang/julia11/Makefile Sun Jun 16 04:38:46 2019 (r504280) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= julia -PORTVERSION= 1.1.0 +PORTVERSION= 1.1.1 DISTVERSIONSUFFIX= -full CATEGORIES= lang math MASTER_SITES= https://github.com/JuliaLang/julia/releases/download/v${PORTVERSION}/ @@ -33,6 +33,8 @@ USES= gmake compiler:c++11-lib fortran python:2.7,bui shebangfix USE_LDCONFIG= yes +DESCR= ${.CURDIR}/../julia/pkg-descr + SHEBANG_GLOB= *.sh WRKSRC= ${WRKDIR}/julia-${PORTVERSION} @@ -133,8 +135,8 @@ EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-ui_Makefile .endif post-extract: - ${GMAKE} -C ${WRKSRC}/deps extract - ${GMAKE} -C ${WRKSRC}/stdlib install + ${MAKE_CMD} -C ${WRKSRC}/deps extract + ${MAKE_CMD} -C ${WRKSRC}/stdlib install post-patch: echo "override TAGGED_RELEASE_BANNER=\"FreeBSD port lang/${PORTNAME}${PKGNAMESUFFIX} build\"" >> ${WRKSRC}/Make.user Modified: head/lang/julia11/distinfo ============================================================================== --- head/lang/julia11/distinfo Sun Jun 16 04:38:11 2019 (r504279) +++ head/lang/julia11/distinfo Sun Jun 16 04:38:46 2019 (r504280) @@ -1,3 +1,3 @@ -TIMESTAMP = 1549112572 -SHA256 (julia-1.1.0-full.tar.gz) = a62c40922a368e303051c007a32e616862340d6ae5f3fac851a9e1b7c7bed0a7 -SIZE (julia-1.1.0-full.tar.gz) = 96039254 +TIMESTAMP = 1559889751 +SHA256 (julia-1.1.1-full.tar.gz) = 3c5395dd3419ebb82d57bcc49dc729df3b225b9094e74376f8c649ee35ed79c2 +SIZE (julia-1.1.1-full.tar.gz) = 96079453 Modified: head/lang/julia11/pkg-plist ============================================================================== --- head/lang/julia11/pkg-plist Sun Jun 16 04:38:11 2019 (r504279) +++ head/lang/julia11/pkg-plist Sun Jun 16 04:38:46 2019 (r504280) @@ -478,6 +478,7 @@ man/man1/julia11.1.gz %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/bin/update.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/bin/utils.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/docs/Project.toml +%%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/docs/generate.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/docs/make.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/docs/src/api.md %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/docs/src/assets/custom.css @@ -557,6 +558,10 @@ man/man1/julia11.1.gz %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BigProject/test/LibFoo.jl/test/runtests.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BigProject/test/REQUIRE %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BigProject/test/runtests.jl +%%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BuildProjectFixedDeps/Manifest.toml +%%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BuildProjectFixedDeps/Project.toml +%%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BuildProjectFixedDeps/deps/build.jl +%%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/BuildProjectFixedDeps/src/BuildProjectFixedDeps.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/PackageWithBuildSpecificTestDeps/src/PackageWithBuildSpecificTestDeps.jl %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/PackageWithBuildSpecificTestDeps/test/REQUIRE %%JULIA%%/share/julia/stdlib/v%%VERSION%%/Pkg/test/test_packages/PackageWithBuildSpecificTestDeps/test/runtests.jl From owner-svn-ports-all@freebsd.org Sun Jun 16 06:01:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B5EE615B49EB; Sun, 16 Jun 2019 06:01:48 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FC136A718; Sun, 16 Jun 2019 06:01:48 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 13BCDA578; Sun, 16 Jun 2019 06:01:48 +0000 (UTC) (envelope-from ashish@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G61ln0038149; Sun, 16 Jun 2019 06:01:47 GMT (envelope-from ashish@FreeBSD.org) Received: (from ashish@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G61lmd038146; Sun, 16 Jun 2019 06:01:47 GMT (envelope-from ashish@FreeBSD.org) Message-Id: <201906160601.x5G61lmd038146@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ashish set sender to ashish@FreeBSD.org using -f From: Ashish SHUKLA Date: Sun, 16 Jun 2019 06:01:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504281 - head/editors/emacs-devel X-SVN-Group: ports-head X-SVN-Commit-Author: ashish X-SVN-Commit-Paths: head/editors/emacs-devel X-SVN-Commit-Revision: 504281 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4FC136A718 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 06:01:49 -0000 Author: ashish Date: Sun Jun 16 06:01:47 2019 New Revision: 504281 URL: https://svnweb.freebsd.org/changeset/ports/504281 Log: - Update to git snapshot 83095a8 - Track git revision information in build Modified: head/editors/emacs-devel/Makefile head/editors/emacs-devel/distinfo head/editors/emacs-devel/pkg-plist Modified: head/editors/emacs-devel/Makefile ============================================================================== --- head/editors/emacs-devel/Makefile Sun Jun 16 04:38:46 2019 (r504280) +++ head/editors/emacs-devel/Makefile Sun Jun 16 06:01:47 2019 (r504281) @@ -32,7 +32,7 @@ USE_XORG= ice sm x11 xcb xext xfixes xinerama xmu xran CPE_VENDOR= gnu USE_GITHUB= yes GH_ACCOUNT= emacs-mirror -GH_TAGNAME= ec4b2c8 +GH_TAGNAME= 83095a8 CONFIGURE_ARGS= --disable-build-details \ --localstatedir=/var @@ -195,7 +195,7 @@ XWIDGETS_LIB_DEPENDS= libwebkit2gtk-4.0.so:www/webkit2 XWIDGETS_IMPLIES= GTK3 EMACS_VER= 27.0.50 -EMACS_REV= 20190525 +EMACS_REV= 20190616 .include @@ -211,6 +211,10 @@ CONFIGURE_ARGS+= --with-x-toolkit=no pre-configure: @(cd ${WRKSRC} && ./autogen.sh all) + @${REINPLACE_CMD} \ + -e '/emacs-repository-version/s/^.*$$/(setq emacs-repository-version "${GH_TAGNAME}")/' \ + -e '/emacs-repository-branch/s/^.*$$/(setq emacs-repository-branch "master")/' \ + ${WRKSRC}/lisp/loadup.el .if ${FLAVOR} == nox # With a desktop entry stage-qa will give a warning about requiring Modified: head/editors/emacs-devel/distinfo ============================================================================== --- head/editors/emacs-devel/distinfo Sun Jun 16 04:38:46 2019 (r504280) +++ head/editors/emacs-devel/distinfo Sun Jun 16 06:01:47 2019 (r504281) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558806987 -SHA256 (emacs-mirror-emacs-27.0.50.20190525-ec4b2c8_GH0.tar.gz) = 3907a79ff758c154af282068082968d454dd86afd1172b18f387c2b3e29c632b -SIZE (emacs-mirror-emacs-27.0.50.20190525-ec4b2c8_GH0.tar.gz) = 40640979 +TIMESTAMP = 1560661854 +SHA256 (emacs-mirror-emacs-27.0.50.20190616-83095a8_GH0.tar.gz) = 5c25006d31e1997cc76b773881e3ce75b32f8f91f012f1a03b4bc3da6e4a1323 +SIZE (emacs-mirror-emacs-27.0.50.20190616-83095a8_GH0.tar.gz) = 40696376 Modified: head/editors/emacs-devel/pkg-plist ============================================================================== --- head/editors/emacs-devel/pkg-plist Sun Jun 16 04:38:46 2019 (r504280) +++ head/editors/emacs-devel/pkg-plist Sun Jun 16 06:01:47 2019 (r504281) @@ -3991,6 +3991,7 @@ share/metainfo/emacs.appdata.xml %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/gnutls.h %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/gtkutil.c %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/gtkutil.h +%%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/hbfont.c %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/image.c %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/indent.c %%SOURCES%%%%DATADIR%%/%%EMACS_VER%%/src/indent.h From owner-svn-ports-all@freebsd.org Sun Jun 16 07:33:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 78AAF15B60FF; Sun, 16 Jun 2019 07:33:51 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C9AB6CA8A; Sun, 16 Jun 2019 07:33:51 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DCE3EB490; Sun, 16 Jun 2019 07:33:50 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G7Xo5s087205; Sun, 16 Jun 2019 07:33:50 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G7XoA7087204; Sun, 16 Jun 2019 07:33:50 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201906160733.x5G7XoA7087204@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sun, 16 Jun 2019 07:33:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504282 - head/lang/gcc8-devel X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: head/lang/gcc8-devel X-SVN-Commit-Revision: 504282 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1C9AB6CA8A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.94)[-0.942,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 07:33:51 -0000 Author: gerald Date: Sun Jun 16 07:33:50 2019 New Revision: 504282 URL: https://svnweb.freebsd.org/changeset/ports/504282 Log: Update to the 20180614 snapshot of GCC 8.3.1. Modified: head/lang/gcc8-devel/Makefile head/lang/gcc8-devel/distinfo Modified: head/lang/gcc8-devel/Makefile ============================================================================== --- head/lang/gcc8-devel/Makefile Sun Jun 16 06:01:47 2019 (r504281) +++ head/lang/gcc8-devel/Makefile Sun Jun 16 07:33:50 2019 (r504282) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 8.3.1.s20190607 +PORTVERSION= 8.3.1.s20190614 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel Modified: head/lang/gcc8-devel/distinfo ============================================================================== --- head/lang/gcc8-devel/distinfo Sun Jun 16 06:01:47 2019 (r504281) +++ head/lang/gcc8-devel/distinfo Sun Jun 16 07:33:50 2019 (r504282) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559974297 -SHA256 (gcc-8-20190607.tar.xz) = 803aaa866f63411f46d1f41eab7b61bff6175279c22407a6af609a35651f53a8 -SIZE (gcc-8-20190607.tar.xz) = 61890748 +TIMESTAMP = 1560590161 +SHA256 (gcc-8-20190614.tar.xz) = 7626bfb25fc42ef636404b8a33b5a06eb367d569f06934efec29103394378f6d +SIZE (gcc-8-20190614.tar.xz) = 61895160 From owner-svn-ports-all@freebsd.org Sun Jun 16 08:43:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 786BF15B7609; Sun, 16 Jun 2019 08:43:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 167A46E1FD; Sun, 16 Jun 2019 08:43:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E0092C1BD; Sun, 16 Jun 2019 08:43:25 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G8hP2q023789; Sun, 16 Jun 2019 08:43:25 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G8hNVq023775; Sun, 16 Jun 2019 08:43:23 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906160843.x5G8hNVq023775@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 16 Jun 2019 08:43:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504283 - in head/devel: . folly folly/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . folly folly/files X-SVN-Commit-Revision: 504283 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 167A46E1FD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 08:43:26 -0000 Author: yuri Date: Sun Jun 16 08:43:22 2019 New Revision: 504283 URL: https://svnweb.freebsd.org/changeset/ports/504283 Log: New port: devel/folly: C++ library developed and used at Facebook Added: head/devel/folly/ head/devel/folly/Makefile (contents, props changed) head/devel/folly/distinfo (contents, props changed) head/devel/folly/files/ head/devel/folly/files/patch-folly_Memory.h (contents, props changed) head/devel/folly/files/patch-folly_Subprocess.cpp (contents, props changed) head/devel/folly/files/patch-folly_Subprocess.h (contents, props changed) head/devel/folly/files/patch-folly_experimental_EnvUtil.cpp (contents, props changed) head/devel/folly/files/patch-folly_lang_UncaughtExceptions.h (contents, props changed) head/devel/folly/files/patch-folly_memory_Malloc.h (contents, props changed) head/devel/folly/files/patch-folly_portability_Malloc.h (contents, props changed) head/devel/folly/files/patch-folly_portability_Stdlib.cpp (contents, props changed) head/devel/folly/files/patch-folly_portability_SysSyscall.h (contents, props changed) head/devel/folly/pkg-descr (contents, props changed) head/devel/folly/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 16 07:33:50 2019 (r504282) +++ head/devel/Makefile Sun Jun 16 08:43:22 2019 (r504283) @@ -654,6 +654,7 @@ SUBDIR += fmake SUBDIR += fnccheck SUBDIR += fnorb + SUBDIR += folly SUBDIR += fortran-utils SUBDIR += fortytwo-encore SUBDIR += fossil Added: head/devel/folly/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/Makefile Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,34 @@ +# $FreeBSD$ + +PORTNAME= folly +DISTVERSIONPREFIX= v +DISTVERSION= 2019.06.10.00 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C++ library developed and used at Facebook + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libboost_atomic.so:devel/boost-libs \ + libdouble-conversion.so:devel/double-conversion \ + libevent.so:devel/libevent \ + libgflags.so:devel/gflags \ + libglog.so:devel/glog \ + liblz4.so:archivers/liblz4 \ + libsnappy.so:archivers/snappy \ + libsodium.so:security/libsodium \ + libunwind.so:devel/libunwind \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++17-lang ssl +USE_GITHUB= yes +GH_ACCOUNT= facebook +USE_LDCONFIG= yes + +CMAKE_ON= BUILD_SHARED_LIBS + +CXXFLAGS+= -fPIC + +.include Added: head/devel/folly/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/distinfo Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560670033 +SHA256 (facebook-folly-v2019.06.10.00_GH0.tar.gz) = afecd68815a83865d95a3a6b861abe8096beefae45c89566e0d510279b631b57 +SIZE (facebook-folly-v2019.06.10.00_GH0.tar.gz) = 2941638 Added: head/devel/folly/files/patch-folly_Memory.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/files/patch-folly_Memory.h Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,12 @@ +--- folly/Memory.h.orig 2019-06-16 07:33:44 UTC ++++ folly/Memory.h +@@ -57,7 +57,8 @@ inline void deallocateBytes(void* p, size_t n) { + (defined(__ANDROID__) && (__ANDROID_API__ > 16)) || \ + (defined(__APPLE__) && \ + (__MAC_OS_X_VERSION_MIN_REQUIRED >= __MAC_10_6 || \ +- __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_3_0)) ++ __IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_3_0)) || \ ++ defined(__FreeBSD__) + + inline void* aligned_malloc(size_t size, size_t align) { + // use posix_memalign, but mimic the behaviour of memalign Added: head/devel/folly/files/patch-folly_Subprocess.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/files/patch-folly_Subprocess.cpp Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,27 @@ +--- folly/Subprocess.cpp.orig 2019-06-16 07:47:17 UTC ++++ folly/Subprocess.cpp +@@ -24,6 +24,7 @@ + #include + #endif + #include ++#include + + #include + #include +@@ -394,6 +395,7 @@ void Subprocess::spawnInternal( + envHolder = cloneStrings(*env); + envVec = const_cast(envHolder.get()); + } else { ++ extern char **environ; + envVec = environ; + } + +@@ -557,7 +559,7 @@ int Subprocess::prepareChild( + #endif + + if (options.processGroupLeader_) { +- if (setpgrp() == -1) { ++ if (setpgrp(0, 0) == -1) { + return errno; + } + } Added: head/devel/folly/files/patch-folly_Subprocess.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/files/patch-folly_Subprocess.h Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,11 @@ +--- folly/Subprocess.h.orig 2019-06-16 07:46:12 UTC ++++ folly/Subprocess.h +@@ -95,7 +95,7 @@ + #include + #include + +-#if __APPLE__ ++#if defined(__APPLE__) || defined(__FreeBSD__) + #include + #else + #include Added: head/devel/folly/files/patch-folly_experimental_EnvUtil.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/files/patch-folly_experimental_EnvUtil.cpp Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,10 @@ +--- folly/experimental/EnvUtil.cpp.orig 2019-06-16 07:49:05 UTC ++++ folly/experimental/EnvUtil.cpp +@@ -27,6 +27,7 @@ using namespace folly::experimental; + + EnvironmentState EnvironmentState::fromCurrentEnvironment() { + std::unordered_map data; ++ extern char **environ; + for (auto it = environ; it && *it; ++it) { + std::string key, value; + folly::StringPiece entry(*it); Added: head/devel/folly/files/patch-folly_lang_UncaughtExceptions.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/files/patch-folly_lang_UncaughtExceptions.h Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,13 @@ +--- folly/lang/UncaughtExceptions.h.orig 2019-06-16 07:37:04 UTC ++++ folly/lang/UncaughtExceptions.h +@@ -24,7 +24,9 @@ namespace __cxxabiv1 { + // forward declaration (originally defined in unwind-cxx.h from from libstdc++) + struct __cxa_eh_globals; + // declared in cxxabi.h from libstdc++-v3 +-extern "C" __cxa_eh_globals* __cxa_get_globals() noexcept; ++extern "C" { ++__cxa_eh_globals *__cxa_get_globals(void); ++}; + } // namespace __cxxabiv1 + #elif defined(FOLLY_FORCE_EXCEPTION_COUNT_USE_STD) || defined(_MSC_VER) + #define FOLLY_EXCEPTION_COUNT_USE_STD Added: head/devel/folly/files/patch-folly_memory_Malloc.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/files/patch-folly_memory_Malloc.h Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,18 @@ +--- folly/memory/Malloc.h.orig 2019-06-16 07:28:42 UTC ++++ folly/memory/Malloc.h +@@ -96,11 +96,11 @@ mallctlbymib(const size_t*, size_t, void*, size_t*, vo + // for malloc_usable_size + // NOTE: FreeBSD 9 doesn't have malloc.h. Its definitions + // are found in stdlib.h. +-#if __has_include() +-#include +-#else ++//#if __has_include() ++//#include ++//#else + #include +-#endif ++//#endif + + #include + #include Added: head/devel/folly/files/patch-folly_portability_Malloc.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/files/patch-folly_portability_Malloc.h Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,11 @@ +--- folly/portability/Malloc.h.orig 2019-06-16 07:29:29 UTC ++++ folly/portability/Malloc.h +@@ -26,7 +26,7 @@ + // malloc_usable_size, and that's what we should be using. + #include // @manual + #else +-#ifndef __APPLE__ ++#if !defined(__APPLE__) && !defined(__FreeBSD__) + #include + #endif + Added: head/devel/folly/files/patch-folly_portability_Stdlib.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/files/patch-folly_portability_Stdlib.cpp Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,10 @@ +--- folly/portability/Stdlib.cpp.orig 2019-06-16 07:44:30 UTC ++++ folly/portability/Stdlib.cpp +@@ -149,6 +149,7 @@ int unsetenv(const char* name) { + + extern "C" int clearenv() { + std::vector data; ++ extern char **environ; + for (auto it = environ; it && *it; ++it) { + std::string entry(*it); + auto equalsPosition = entry.find('='); Added: head/devel/folly/files/patch-folly_portability_SysSyscall.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/files/patch-folly_portability_SysSyscall.h Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,11 @@ +--- folly/portability/SysSyscall.h.orig 2019-06-16 07:32:11 UTC ++++ folly/portability/SysSyscall.h +@@ -21,6 +21,8 @@ + + #if defined(__APPLE__) + #define FOLLY_SYS_gettid SYS_thread_selfid ++#elif defined(__FreeBSD__) ++#define FOLLY_SYS_gettid SYS_thr_self + #elif defined(SYS_gettid) + #define FOLLY_SYS_gettid SYS_gettid + #else Added: head/devel/folly/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/pkg-descr Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,18 @@ +Folly (acronymed loosely after Facebook Open Source Library) is a library of +C++14 components designed with practicality and efficiency in mind. Folly +contains a variety of core library components used extensively at Facebook. In +particular, it's often a dependency of Facebook's other open source C++ efforts +and place where those projects can share code. + +It complements (as opposed to competing against) offerings such as Boost and of +course std. In fact, we embark on defining our own component only when something +we need is either not available, or does not meet the needed performance +profile. We endeavor to remove things from folly if or when std or Boost +obsoletes them. + +Performance concerns permeate much of Folly, sometimes leading to designs that +are more idiosyncratic than they would otherwise be (see e.g. PackedSyncPtr.h, +SmallLocks.h). Good performance at large scale is a unifying theme in all of +Folly. + +WWW: https://github.com/facebook/folly Added: head/devel/folly/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/folly/pkg-plist Sun Jun 16 08:43:22 2019 (r504283) @@ -0,0 +1,623 @@ +include/folly/AtomicBitSet.h +include/folly/AtomicHashArray-inl.h +include/folly/AtomicHashArray.h +include/folly/AtomicHashMap-inl.h +include/folly/AtomicHashMap.h +include/folly/AtomicIntrusiveLinkedList.h +include/folly/AtomicLinkedList.h +include/folly/AtomicUnorderedMap.h +include/folly/Benchmark.h +include/folly/Bits.h +include/folly/CPortability.h +include/folly/CachelinePadded.h +include/folly/CancellationToken-inl.h +include/folly/CancellationToken.h +include/folly/Chrono.h +include/folly/ClockGettimeWrappers.h +include/folly/ConcurrentSkipList-inl.h +include/folly/ConcurrentSkipList.h +include/folly/ConstexprMath.h +include/folly/Conv.h +include/folly/CppAttributes.h +include/folly/CpuId.h +include/folly/DefaultKeepAliveExecutor.h +include/folly/Demangle.h +include/folly/DiscriminatedPtr.h +include/folly/DynamicConverter.h +include/folly/Exception.h +include/folly/ExceptionString.h +include/folly/ExceptionWrapper-inl.h +include/folly/ExceptionWrapper.h +include/folly/Executor.h +include/folly/Expected.h +include/folly/FBString.h +include/folly/FBVector.h +include/folly/File.h +include/folly/FileUtil.h +include/folly/Fingerprint.h +include/folly/FixedString.h +include/folly/Format-inl.h +include/folly/Format.h +include/folly/FormatArg.h +include/folly/FormatTraits.h +include/folly/Function.h +include/folly/GLog.h +include/folly/GroupVarint.h +include/folly/Hash.h +include/folly/IPAddress.h +include/folly/IPAddressException.h +include/folly/IPAddressV4.h +include/folly/IPAddressV6.h +include/folly/Indestructible.h +include/folly/IndexedMemPool.h +include/folly/IntrusiveList.h +include/folly/Lazy.h +include/folly/Likely.h +include/folly/LockTraits.h +include/folly/LockTraitsBoost.h +include/folly/MPMCPipeline.h +include/folly/MPMCQueue.h +include/folly/MacAddress.h +include/folly/MapUtil.h +include/folly/Math.h +include/folly/Memory.h +include/folly/MicroLock.h +include/folly/MicroSpinLock.h +include/folly/MoveWrapper.h +include/folly/Optional.h +include/folly/Overload.h +include/folly/PackedSyncPtr.h +include/folly/Padded.h +include/folly/Poly-inl.h +include/folly/Poly.h +include/folly/PolyException.h +include/folly/Portability.h +include/folly/Preprocessor.h +include/folly/PriorityMPMCQueue.h +include/folly/ProducerConsumerQueue.h +include/folly/RWSpinLock.h +include/folly/Random-inl.h +include/folly/Random.h +include/folly/Range.h +include/folly/Replaceable.h +include/folly/ScopeGuard.h +include/folly/SharedMutex.h +include/folly/Singleton-inl.h +include/folly/Singleton.h +include/folly/SingletonThreadLocal.h +include/folly/SocketAddress.h +include/folly/SpinLock.h +include/folly/String-inl.h +include/folly/String.h +include/folly/Subprocess.h +include/folly/Synchronized.h +include/folly/SynchronizedPtr.h +include/folly/ThreadCachedInt.h +include/folly/ThreadLocal.h +include/folly/TimeoutQueue.h +include/folly/TokenBucket.h +include/folly/Traits.h +include/folly/Try-inl.h +include/folly/Try.h +include/folly/UTF8String.h +include/folly/Unicode.h +include/folly/Unit.h +include/folly/Uri-inl.h +include/folly/Uri.h +include/folly/Utility.h +include/folly/Varint.h +include/folly/VirtualExecutor.h +include/folly/chrono/Conv.h +include/folly/chrono/Hardware.h +include/folly/compression/Compression.h +include/folly/compression/Counters.h +include/folly/compression/Utils.h +include/folly/compression/Zlib.h +include/folly/compression/Zstd.h +include/folly/concurrency/AtomicSharedPtr.h +include/folly/concurrency/CacheLocality.h +include/folly/concurrency/ConcurrentHashMap.h +include/folly/concurrency/CoreCachedSharedPtr.h +include/folly/concurrency/DynamicBoundedQueue.h +include/folly/concurrency/PriorityUnboundedQueueSet.h +include/folly/concurrency/UnboundedQueue.h +include/folly/concurrency/detail/AtomicSharedPtr-detail.h +include/folly/concurrency/detail/ConcurrentHashMap-detail.h +include/folly/container/Access.h +include/folly/container/Array.h +include/folly/container/BitIterator.h +include/folly/container/Enumerate.h +include/folly/container/EvictingCacheMap.h +include/folly/container/F14Map-fwd.h +include/folly/container/F14Map.h +include/folly/container/F14Set-fwd.h +include/folly/container/F14Set.h +include/folly/container/Foreach-inl.h +include/folly/container/Foreach.h +include/folly/container/HeterogeneousAccess-fwd.h +include/folly/container/HeterogeneousAccess.h +include/folly/container/Iterator.h +include/folly/container/Merge.h +include/folly/container/SparseByteSet.h +include/folly/container/detail/BitIteratorDetail.h +include/folly/container/detail/F14Defaults.h +include/folly/container/detail/F14IntrinsicsAvailability.h +include/folly/container/detail/F14Mask.h +include/folly/container/detail/F14Policy.h +include/folly/container/detail/F14Table.h +include/folly/detail/AtFork.h +include/folly/detail/AtomicHashUtils.h +include/folly/detail/AtomicUnorderedMapUtils.h +include/folly/detail/Demangle.h +include/folly/detail/DiscriminatedPtrDetail.h +include/folly/detail/FileUtilDetail.h +include/folly/detail/FingerprintPolynomial.h +include/folly/detail/Futex-inl.h +include/folly/detail/Futex.h +include/folly/detail/GroupVarintDetail.h +include/folly/detail/IPAddress.h +include/folly/detail/IPAddressSource.h +include/folly/detail/Iterators.h +include/folly/detail/MPMCPipelineDetail.h +include/folly/detail/MemoryIdler.h +include/folly/detail/PolyDetail.h +include/folly/detail/RangeCommon.h +include/folly/detail/RangeSse42.h +include/folly/detail/Singleton.h +include/folly/detail/SingletonStackTrace.h +include/folly/detail/SlowFingerprint.h +include/folly/detail/SocketFastOpen.h +include/folly/detail/Sse.h +include/folly/detail/StaticSingletonManager.h +include/folly/detail/ThreadLocalDetail.h +include/folly/detail/TurnSequencer.h +include/folly/detail/TypeList.h +include/folly/detail/UniqueInstance.h +include/folly/dynamic-inl.h +include/folly/dynamic.h +include/folly/executors/Async.h +include/folly/executors/CPUThreadPoolExecutor.h +include/folly/executors/Codel.h +include/folly/executors/DrivableExecutor.h +include/folly/executors/EDFThreadPoolExecutor.h +include/folly/executors/ExecutorWithPriority.h +include/folly/executors/FiberIOExecutor.h +include/folly/executors/FutureExecutor.h +include/folly/executors/GlobalExecutor.h +include/folly/executors/GlobalThreadPoolList.h +include/folly/executors/IOExecutor.h +include/folly/executors/IOObjectCache.h +include/folly/executors/IOThreadPoolExecutor.h +include/folly/executors/InlineExecutor.h +include/folly/executors/ManualExecutor.h +include/folly/executors/QueuedImmediateExecutor.h +include/folly/executors/ScheduledExecutor.h +include/folly/executors/SequencedExecutor.h +include/folly/executors/SerialExecutor.h +include/folly/executors/SoftRealTimeExecutor.h +include/folly/executors/ThreadPoolExecutor.h +include/folly/executors/ThreadedExecutor.h +include/folly/executors/TimedDrivableExecutor.h +include/folly/executors/TimekeeperScheduledExecutor.h +include/folly/executors/task_queue/BlockingQueue.h +include/folly/executors/task_queue/LifoSemMPMCQueue.h +include/folly/executors/task_queue/PriorityLifoSemMPMCQueue.h +include/folly/executors/task_queue/PriorityUnboundedBlockingQueue.h +include/folly/executors/task_queue/UnboundedBlockingQueue.h +include/folly/executors/thread_factory/InitThreadFactory.h +include/folly/executors/thread_factory/NamedThreadFactory.h +include/folly/executors/thread_factory/PriorityThreadFactory.h +include/folly/executors/thread_factory/ThreadFactory.h +include/folly/experimental/AtomicReadMostlyMainPtr.h +include/folly/experimental/AutoTimer.h +include/folly/experimental/BitVectorCoding.h +include/folly/experimental/Bits.h +include/folly/experimental/CodingDetail.h +include/folly/experimental/DynamicParser-inl.h +include/folly/experimental/DynamicParser.h +include/folly/experimental/EliasFanoCoding.h +include/folly/experimental/EnvUtil.h +include/folly/experimental/EventCount.h +include/folly/experimental/ExecutionObserver.h +include/folly/experimental/FlatCombiningPriorityQueue.h +include/folly/experimental/FunctionScheduler.h +include/folly/experimental/FutureDAG.h +include/folly/experimental/Instructions.h +include/folly/experimental/JSONSchema.h +include/folly/experimental/JemallocHugePageAllocator.h +include/folly/experimental/JemallocNodumpAllocator.h +include/folly/experimental/LockFreeRingBuffer.h +include/folly/experimental/NestedCommandLineApp.h +include/folly/experimental/ProgramOptions.h +include/folly/experimental/ReadMostlySharedPtr.h +include/folly/experimental/RelaxedConcurrentPriorityQueue.h +include/folly/experimental/STTimerFDTimeoutManager.h +include/folly/experimental/Select64.h +include/folly/experimental/SingletonRelaxedCounter.h +include/folly/experimental/StampedPtr.h +include/folly/experimental/StringKeyedCommon.h +include/folly/experimental/StringKeyedMap.h +include/folly/experimental/StringKeyedSet.h +include/folly/experimental/StringKeyedUnorderedMap.h +include/folly/experimental/StringKeyedUnorderedSet.h +include/folly/experimental/TLRefCount.h +include/folly/experimental/TestUtil.h +include/folly/experimental/ThreadedRepeatingFunctionRunner.h +include/folly/experimental/TimerFD.h +include/folly/experimental/TimerFDTimeoutManager.h +include/folly/experimental/TupleOps.h +include/folly/experimental/bser/Bser.h +include/folly/experimental/coro/AsyncGenerator.h +include/folly/experimental/coro/Baton.h +include/folly/experimental/coro/BlockingWait.h +include/folly/experimental/coro/Collect-inl.h +include/folly/experimental/coro/Collect.h +include/folly/experimental/coro/CurrentExecutor.h +include/folly/experimental/coro/Generator.h +include/folly/experimental/coro/Mutex.h +include/folly/experimental/coro/SharedLock.h +include/folly/experimental/coro/SharedMutex.h +include/folly/experimental/coro/Task.h +include/folly/experimental/coro/TimedWait.h +include/folly/experimental/coro/Traits.h +include/folly/experimental/coro/Utils.h +include/folly/experimental/coro/ViaIfAsync.h +include/folly/experimental/coro/Wait.h +include/folly/experimental/coro/detail/Barrier.h +include/folly/experimental/coro/detail/BarrierTask.h +include/folly/experimental/coro/detail/Helpers.h +include/folly/experimental/coro/detail/InlineTask.h +include/folly/experimental/coro/detail/ManualLifetime.h +include/folly/experimental/coro/detail/Traits.h +include/folly/experimental/crypto/Blake2xb.h +include/folly/experimental/crypto/LtHash-inl.h +include/folly/experimental/crypto/LtHash.h +include/folly/experimental/crypto/detail/LtHashInternal.h +include/folly/experimental/flat_combining/FlatCombining.h +include/folly/experimental/io/FsUtil.h +include/folly/experimental/io/HugePages.h +include/folly/experimental/observer/Observable-inl.h +include/folly/experimental/observer/Observable.h +include/folly/experimental/observer/Observer-inl.h +include/folly/experimental/observer/Observer-pre.h +include/folly/experimental/observer/Observer.h +include/folly/experimental/observer/SimpleObservable-inl.h +include/folly/experimental/observer/SimpleObservable.h +include/folly/experimental/observer/detail/Core.h +include/folly/experimental/observer/detail/GraphCycleDetector.h +include/folly/experimental/observer/detail/ObserverManager.h +include/folly/experimental/settings/Settings.h +include/folly/experimental/settings/SettingsMetadata.h +include/folly/experimental/settings/detail/SettingsImpl.h +include/folly/external/farmhash/farmhash.h +include/folly/fibers/AddTasks-inl.h +include/folly/fibers/AddTasks.h +include/folly/fibers/AtomicBatchDispatcher-inl.h +include/folly/fibers/AtomicBatchDispatcher.h +include/folly/fibers/BatchDispatcher.h +include/folly/fibers/Baton-inl.h +include/folly/fibers/Baton.h +include/folly/fibers/BoostContextCompatibility.h +include/folly/fibers/CallOnce.h +include/folly/fibers/EventBaseLoopController-inl.h +include/folly/fibers/EventBaseLoopController.h +include/folly/fibers/ExecutorLoopController-inl.h +include/folly/fibers/ExecutorLoopController.h +include/folly/fibers/Fiber-inl.h +include/folly/fibers/Fiber.h +include/folly/fibers/FiberManager-inl.h +include/folly/fibers/FiberManager.h +include/folly/fibers/FiberManagerInternal-inl.h +include/folly/fibers/FiberManagerInternal.h +include/folly/fibers/FiberManagerMap.h +include/folly/fibers/ForEach-inl.h +include/folly/fibers/ForEach.h +include/folly/fibers/GenericBaton.h +include/folly/fibers/GuardPageAllocator.h +include/folly/fibers/LoopController.h +include/folly/fibers/Promise-inl.h +include/folly/fibers/Promise.h +include/folly/fibers/Semaphore.h +include/folly/fibers/SimpleLoopController.h +include/folly/fibers/TimedMutex-inl.h +include/folly/fibers/TimedMutex.h +include/folly/fibers/WhenN-inl.h +include/folly/fibers/WhenN.h +include/folly/fibers/detail/AtomicBatchDispatcher.h +include/folly/fibers/traits.h +include/folly/folly-config.h +include/folly/functional/ApplyTuple.h +include/folly/functional/Invoke.h +include/folly/functional/Partial.h +include/folly/futures/Barrier.h +include/folly/futures/Future-inl.h +include/folly/futures/Future-pre.h +include/folly/futures/Future.h +include/folly/futures/FutureSplitter.h +include/folly/futures/Portability.h +include/folly/futures/Promise-inl.h +include/folly/futures/Promise.h +include/folly/futures/Retrying.h +include/folly/futures/SharedPromise-inl.h +include/folly/futures/SharedPromise.h +include/folly/futures/ThreadWheelTimekeeper.h +include/folly/futures/detail/Core.h +include/folly/futures/detail/Types.h +include/folly/gen/Base-inl.h +include/folly/gen/Base.h +include/folly/gen/Combine-inl.h +include/folly/gen/Combine.h +include/folly/gen/Core-inl.h +include/folly/gen/Core.h +include/folly/gen/File-inl.h +include/folly/gen/File.h +include/folly/gen/IStream.h +include/folly/gen/Parallel-inl.h +include/folly/gen/Parallel.h +include/folly/gen/ParallelMap-inl.h +include/folly/gen/ParallelMap.h +include/folly/gen/String-inl.h +include/folly/gen/String.h +include/folly/hash/Checksum.h +include/folly/hash/FarmHash.h +include/folly/hash/Hash.h +include/folly/hash/SpookyHashV1.h +include/folly/hash/SpookyHashV2.h +include/folly/hash/detail/ChecksumDetail.h +include/folly/init/Init.h +include/folly/io/Cursor-inl.h +include/folly/io/Cursor.h +include/folly/io/GlobalShutdownSocketSet.h +include/folly/io/IOBuf.h +include/folly/io/IOBufQueue.h +include/folly/io/RecordIO-inl.h +include/folly/io/RecordIO.h +include/folly/io/ShutdownSocketSet.h +include/folly/io/TypedIOBuf.h +include/folly/io/async/AsyncPipe.h +include/folly/io/async/AsyncSSLSocket.h +include/folly/io/async/AsyncServerSocket.h +include/folly/io/async/AsyncSignalHandler.h +include/folly/io/async/AsyncSocket.h +include/folly/io/async/AsyncSocketBase.h +include/folly/io/async/AsyncSocketException.h +include/folly/io/async/AsyncTimeout.h +include/folly/io/async/AsyncTransport.h +include/folly/io/async/AsyncTransportCertificate.h +include/folly/io/async/AsyncUDPServerSocket.h +include/folly/io/async/AsyncUDPSocket.h +include/folly/io/async/DecoratedAsyncTransportWrapper.h +include/folly/io/async/DelayedDestruction.h +include/folly/io/async/DelayedDestructionBase.h +include/folly/io/async/DestructorCheck.h +include/folly/io/async/EventBase.h +include/folly/io/async/EventBaseLocal.h +include/folly/io/async/EventBaseManager.h +include/folly/io/async/EventBaseThread.h +include/folly/io/async/EventFDWrapper.h +include/folly/io/async/EventHandler.h +include/folly/io/async/EventUtil.h +include/folly/io/async/HHWheelTimer-fwd.h +include/folly/io/async/HHWheelTimer.h +include/folly/io/async/NotificationQueue.h +include/folly/io/async/PasswordInFile.h +include/folly/io/async/Request.h +include/folly/io/async/SSLContext.h +include/folly/io/async/SSLOptions.h +include/folly/io/async/ScopedEventBaseThread.h +include/folly/io/async/TimeoutManager.h +include/folly/io/async/VirtualEventBase.h +include/folly/io/async/WriteChainAsyncTransportWrapper.h +include/folly/io/async/ssl/BasicTransportCertificate.h +include/folly/io/async/ssl/OpenSSLUtils.h +include/folly/io/async/ssl/SSLErrors.h +include/folly/io/async/ssl/TLSDefinitions.h +include/folly/io/async/test/AsyncSSLSocketTest.h +include/folly/io/async/test/AsyncSocketTest.h +include/folly/io/async/test/AsyncSocketTest2.h +include/folly/io/async/test/BlockingSocket.h +include/folly/io/async/test/MockAsyncSSLSocket.h +include/folly/io/async/test/MockAsyncServerSocket.h +include/folly/io/async/test/MockAsyncSocket.h +include/folly/io/async/test/MockAsyncTransport.h +include/folly/io/async/test/MockAsyncUDPSocket.h +include/folly/io/async/test/MockTimeoutManager.h +include/folly/io/async/test/ScopedBoundPort.h +include/folly/io/async/test/SocketPair.h +include/folly/io/async/test/TestSSLServer.h +include/folly/io/async/test/TimeUtil.h +include/folly/io/async/test/UndelayedDestruction.h +include/folly/io/async/test/Util.h +include/folly/json.h +include/folly/json_patch.h +include/folly/json_pointer.h +include/folly/lang/Align.h +include/folly/lang/Assume.h +include/folly/lang/Bits.h +include/folly/lang/CheckedMath.h +include/folly/lang/ColdClass.h +include/folly/lang/CustomizationPoint.h +include/folly/lang/Exception.h +include/folly/lang/Launder.h +include/folly/lang/Ordering.h +include/folly/lang/Pretty.h +include/folly/lang/PropagateConst.h +include/folly/lang/RValueReferenceWrapper.h +include/folly/lang/SafeAssert.h +include/folly/lang/StaticConst.h +include/folly/lang/TypeInfo.h +include/folly/lang/UncaughtExceptions.h +include/folly/logging/AsyncFileWriter.h +include/folly/logging/CustomLogFormatter.h +include/folly/logging/FileHandlerFactory.h +include/folly/logging/FileWriterFactory.h +include/folly/logging/GlogStyleFormatter.h +include/folly/logging/ImmediateFileWriter.h +include/folly/logging/Init.h +include/folly/logging/LogCategory.h +include/folly/logging/LogCategoryConfig.h +include/folly/logging/LogConfig.h +include/folly/logging/LogConfigParser.h +include/folly/logging/LogFormatter.h +include/folly/logging/LogHandler.h +include/folly/logging/LogHandlerConfig.h +include/folly/logging/LogHandlerFactory.h +include/folly/logging/LogLevel.h +include/folly/logging/LogMessage.h +include/folly/logging/LogName.h +include/folly/logging/LogStream.h +include/folly/logging/LogStreamProcessor.h +include/folly/logging/LogWriter.h +include/folly/logging/Logger.h +include/folly/logging/LoggerDB.h +include/folly/logging/ObjectToString.h +include/folly/logging/RateLimiter.h +include/folly/logging/StandardLogHandler.h +include/folly/logging/StandardLogHandlerFactory.h +include/folly/logging/StreamHandlerFactory.h +include/folly/logging/xlog.h +include/folly/memory/Arena-inl.h +include/folly/memory/Arena.h +include/folly/memory/EnableSharedFromThis.h +include/folly/memory/MallctlHelper.h +include/folly/memory/Malloc.h +include/folly/memory/ThreadCachedArena.h +include/folly/memory/UninitializedMemoryHacks.h +include/folly/memory/detail/MallocImpl.h +include/folly/net/NetOps.h +include/folly/net/NetworkSocket.h +include/folly/net/detail/SocketFileDescriptorMap.h +include/folly/poly/Nullable.h +include/folly/poly/Regular.h +include/folly/portability/Asm.h +include/folly/portability/Atomic.h +include/folly/portability/Builtins.h +include/folly/portability/Config.h +include/folly/portability/Constexpr.h +include/folly/portability/Dirent.h +include/folly/portability/Event.h +include/folly/portability/Fcntl.h +include/folly/portability/GFlags.h +include/folly/portability/GMock.h +include/folly/portability/GTest.h +include/folly/portability/IOVec.h +include/folly/portability/Libgen.h +include/folly/portability/Malloc.h +include/folly/portability/Math.h +include/folly/portability/Memory.h +include/folly/portability/OpenSSL.h +include/folly/portability/PThread.h +include/folly/portability/Sched.h +include/folly/portability/Semaphore.h +include/folly/portability/Sockets.h +include/folly/portability/Stdio.h +include/folly/portability/Stdlib.h +include/folly/portability/String.h +include/folly/portability/SysFile.h +include/folly/portability/SysMembarrier.h +include/folly/portability/SysMman.h +include/folly/portability/SysResource.h +include/folly/portability/SysStat.h +include/folly/portability/SysSyscall.h +include/folly/portability/SysTime.h +include/folly/portability/SysTypes.h +include/folly/portability/SysUio.h +include/folly/portability/Syslog.h +include/folly/portability/Time.h +include/folly/portability/Unistd.h +include/folly/portability/Windows.h +include/folly/python/AsyncioExecutor.h +include/folly/python/futures.h +include/folly/small_vector.h +include/folly/sorted_vector_types.h +include/folly/ssl/Init.h +include/folly/ssl/OpenSSLCertUtils.h +include/folly/ssl/OpenSSLHash.h +include/folly/ssl/OpenSSLLockTypes.h +include/folly/ssl/OpenSSLPtrTypes.h +include/folly/ssl/OpenSSLVersionFinder.h +include/folly/ssl/SSLSession.h +include/folly/ssl/detail/OpenSSLThreading.h +include/folly/ssl/detail/SSLSessionImpl.h +include/folly/stats/BucketedTimeSeries-defs.h +include/folly/stats/BucketedTimeSeries.h +include/folly/stats/Histogram-defs.h +include/folly/stats/Histogram.h +include/folly/stats/MultiLevelTimeSeries-defs.h +include/folly/stats/MultiLevelTimeSeries.h +include/folly/stats/QuantileEstimator-defs.h +include/folly/stats/QuantileEstimator.h +include/folly/stats/TDigest.h +include/folly/stats/TimeseriesHistogram-defs.h +include/folly/stats/TimeseriesHistogram.h +include/folly/stats/detail/Bucket.h +include/folly/stats/detail/BufferedStat-defs.h +include/folly/stats/detail/BufferedStat.h +include/folly/stats/detail/BufferedStatTDigest.h +include/folly/stats/detail/DigestBuilder-defs.h +include/folly/stats/detail/DigestBuilder.h +include/folly/stats/detail/DoubleRadixSort.h +include/folly/stats/detail/SlidingWindow-defs.h +include/folly/stats/detail/SlidingWindow.h +include/folly/stop_watch.h +include/folly/synchronization/AsymmetricMemoryBarrier.h +include/folly/synchronization/AtomicNotification-inl.h +include/folly/synchronization/AtomicNotification.h +include/folly/synchronization/AtomicStruct.h +include/folly/synchronization/AtomicUtil-inl.h +include/folly/synchronization/AtomicUtil.h +include/folly/synchronization/Baton.h +include/folly/synchronization/CallOnce.h +include/folly/synchronization/DistributedMutex-inl.h +include/folly/synchronization/DistributedMutex.h +include/folly/synchronization/DistributedMutexSpecializations.h +include/folly/synchronization/Hazptr-fwd.h +include/folly/synchronization/Hazptr.h +include/folly/synchronization/HazptrDomain.h +include/folly/synchronization/HazptrHolder.h +include/folly/synchronization/HazptrObj.h +include/folly/synchronization/HazptrObjLinked.h +include/folly/synchronization/HazptrRec.h +include/folly/synchronization/HazptrThrLocal.h +include/folly/synchronization/LifoSem.h +include/folly/synchronization/MicroSpinLock.h +include/folly/synchronization/ParkingLot.h +include/folly/synchronization/PicoSpinLock.h +include/folly/synchronization/RWSpinLock.h +include/folly/synchronization/Rcu-inl.h +include/folly/synchronization/Rcu.h +include/folly/synchronization/SanitizeThread.h +include/folly/synchronization/SaturatingSemaphore.h +include/folly/synchronization/SmallLocks.h +include/folly/synchronization/Tearable.h +include/folly/synchronization/Utility.h +include/folly/synchronization/WaitOptions.h +include/folly/synchronization/detail/AtomicUtils.h +include/folly/synchronization/detail/HazptrUtils.h +include/folly/synchronization/detail/InlineFunctionRef.h +include/folly/synchronization/detail/ProxyLockable-inl.h +include/folly/synchronization/detail/ProxyLockable.h +include/folly/synchronization/detail/Sleeper.h +include/folly/synchronization/detail/Spin.h +include/folly/synchronization/detail/ThreadCachedInts.h +include/folly/synchronization/detail/ThreadCachedLists.h +include/folly/synchronization/example/HazptrLockFreeLIFO.h +include/folly/synchronization/example/HazptrSWMRSet.h +include/folly/synchronization/example/HazptrWideCAS.h +include/folly/system/MemoryMapping.h +include/folly/system/Shell.h +include/folly/system/ThreadId.h +include/folly/system/ThreadName.h +include/folly/test/DeterministicSchedule.h +include/folly/test/JsonTestUtil.h +include/folly/test/TestUtils.h +include/folly/tracing/ScopedTraceSection.h +include/folly/tracing/StaticTracepoint-ELFx86.h +include/folly/tracing/StaticTracepoint.h +lib/cmake/folly/folly-config.cmake +lib/cmake/folly/folly-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/folly/folly-targets.cmake +lib/libfolly.so +lib/libfolly_test_util.so +lib/libfollybenchmark.so +libdata/pkgconfig/libfolly.pc From owner-svn-ports-all@freebsd.org Sun Jun 16 08:56:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 29FE915B7C3B; Sun, 16 Jun 2019 08:56:04 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C0CC26E75A; Sun, 16 Jun 2019 08:56:03 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 99F8DC35D; Sun, 16 Jun 2019 08:56:03 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G8u3vw028955; Sun, 16 Jun 2019 08:56:03 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G8u3db028954; Sun, 16 Jun 2019 08:56:03 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201906160856.x5G8u3db028954@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 16 Jun 2019 08:56:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504284 - head/databases/spatialite X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: head/databases/spatialite X-SVN-Commit-Revision: 504284 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C0CC26E75A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 08:56:04 -0000 Author: rene Date: Sun Jun 16 08:56:03 2019 New Revision: 504284 URL: https://svnweb.freebsd.org/changeset/ports/504284 Log: databases/spatialite: bump optional PostGIS dependency from expired 2.1 to 2.3 Event: Berlin hackathon 2019 Modified: head/databases/spatialite/Makefile Modified: head/databases/spatialite/Makefile ============================================================================== --- head/databases/spatialite/Makefile Sun Jun 16 08:43:22 2019 (r504283) +++ head/databases/spatialite/Makefile Sun Jun 16 08:56:03 2019 (r504284) @@ -29,7 +29,7 @@ USE_LDCONFIG= yes OPTIONS_DEFINE=LWGEOM LWGEOM_DESC=Enable lwgeom (PostGIS) functions LWGEOM_CONFIGURE_ENABLE= lwgeom -LWGEOM_LIB_DEPENDS= liblwgeom.so:databases/postgis21 +LWGEOM_LIB_DEPENDS= liblwgeom.so:databases/postgis23 post-patch: @${REINPLACE_CMD} -e 's|-ldl| |' ${WRKSRC}/src/Makefile.am From owner-svn-ports-all@freebsd.org Sun Jun 16 08:57:28 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1191315B7D12; Sun, 16 Jun 2019 08:57:28 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A69736E839; Sun, 16 Jun 2019 08:57:27 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7DB54C35E; Sun, 16 Jun 2019 08:57:27 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G8vRVB029142; Sun, 16 Jun 2019 08:57:27 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G8vReH029141; Sun, 16 Jun 2019 08:57:27 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201906160857.x5G8vReH029141@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Sun, 16 Jun 2019 08:57:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504285 - head/graphics/linux-c7-glx-utils X-SVN-Group: ports-head X-SVN-Commit-Author: tijl X-SVN-Commit-Paths: head/graphics/linux-c7-glx-utils X-SVN-Commit-Revision: 504285 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A69736E839 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 08:57:28 -0000 Author: tijl Date: Sun Jun 16 08:57:26 2019 New Revision: 504285 URL: https://svnweb.freebsd.org/changeset/ports/504285 Log: Also install glxinfo32 on amd64 so information can be obtained about the 32-bit graphics stack. Modified: head/graphics/linux-c7-glx-utils/Makefile head/graphics/linux-c7-glx-utils/pkg-plist.amd64 Modified: head/graphics/linux-c7-glx-utils/Makefile ============================================================================== --- head/graphics/linux-c7-glx-utils/Makefile Sun Jun 16 08:56:03 2019 (r504284) +++ head/graphics/linux-c7-glx-utils/Makefile Sun Jun 16 08:57:26 2019 (r504285) @@ -4,6 +4,7 @@ PORTNAME= glx-utils PORTVERSION= 8.3.0 DISTVERSIONSUFFIX= -10.el7 +PORTREVISION= 1 CATEGORIES= graphics linux MAINTAINER= emulation@FreeBSD.org @@ -12,7 +13,7 @@ COMMENT= Mesa GLX utilities (Linux CentOS ${LINUX_DIST USES= linux:c7 USE_LDCONFIG= yes USE_LINUX= dri xorglibs -USE_LINUX_RPM= nolib +USE_LINUX_RPM= yes SRC_DISTFILES= mesa-demos-${DISTVERSIONFULL}${SRC_SUFX}:SOURCE Modified: head/graphics/linux-c7-glx-utils/pkg-plist.amd64 ============================================================================== --- head/graphics/linux-c7-glx-utils/pkg-plist.amd64 Sun Jun 16 08:56:03 2019 (r504284) +++ head/graphics/linux-c7-glx-utils/pkg-plist.amd64 Sun Jun 16 08:57:26 2019 (r504285) @@ -1,5 +1,6 @@ usr/bin/glxgears usr/bin/glxinfo +usr/bin/glxinfo32 usr/bin/glxinfo64 usr/bin/xdriinfo usr/share/man/man1/xdriinfo.1.gz From owner-svn-ports-all@freebsd.org Sun Jun 16 08:57:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B175015B7D50; Sun, 16 Jun 2019 08:57:45 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 55B066E90B; Sun, 16 Jun 2019 08:57:45 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 26E39C35F; Sun, 16 Jun 2019 08:57:45 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G8viT7029345; Sun, 16 Jun 2019 08:57:44 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G8vimP029341; Sun, 16 Jun 2019 08:57:44 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201906160857.x5G8vimP029341@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 16 Jun 2019 08:57:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504286 - in head: . databases databases/dbconnect databases/postgis20 databases/postgis21 databases/postgis22 ftp ftp/ncftpd X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head: . databases databases/dbconnect databases/postgis20 databases/postgis21 databases/postgis22 ftp ftp/ncftpd X-SVN-Commit-Revision: 504286 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 55B066E90B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 08:57:45 -0000 Author: rene Date: Sun Jun 16 08:57:43 2019 New Revision: 504286 URL: https://svnweb.freebsd.org/changeset/ports/504286 Log: Remove expired ports: 2019-06-15 ftp/ncftpd: binary only abandoned trialware 2019-06-15 databases/dbconnect: Abandonware and unused in the tree 2019-06-15 databases/postgis21: Upstream no longer maintained 2019-06-15 databases/postgis20: Upstream no longer maintained 2019-06-15 databases/postgis22: Upstream no longer maintained Deleted: head/databases/dbconnect/ head/databases/postgis20/ head/databases/postgis21/ head/databases/postgis22/ head/ftp/ncftpd/ Modified: head/LEGAL head/MOVED head/databases/Makefile head/ftp/Makefile Modified: head/LEGAL ============================================================================== --- head/LEGAL Sun Jun 16 08:57:26 2019 (r504285) +++ head/LEGAL Sun Jun 16 08:57:43 2019 (r504286) @@ -152,7 +152,6 @@ mindfocus-* games/mindfocus Contains commercial char mindterm-* security/mindterm-binary Do not sell for profit mist64-cbmbasic-* lang/cbmbasic Based on decompiled C64 KERNAL binary; not really sure about the legal status molden* biology/molden Free for academic, non-profit usage; do not redistribute source and executable -ncftpd-* ftp/ncftpd 30 day evaluation license nero2_linux_* games/linux-nerogame Freeware, but license terms are unclear NetComponents-* java/netcomponents No redistribution except as part of a substantially different product nntpcache-* news/nntpcache Free for individuals and non-military, non-profit organisations only Modified: head/MOVED ============================================================================== --- head/MOVED Sun Jun 16 08:57:26 2019 (r504285) +++ head/MOVED Sun Jun 16 08:57:43 2019 (r504286) @@ -12797,3 +12797,8 @@ archivers/nulib||2019-06-12|Abandonware shells/rssh||2019-06-13|Has expired: Abandoned by upstream multimedia/mpeg4ip||2019-06-15|Has expired: old, unmaintained version; superseded by multimedia/ffmpeg multimedia/ffmpeg0||2019-06-15|Has expired: vulnerable and old version; use multimedia/ffmpeg instead +ftp/ncftpd||2019-06-16|Has expired: binary only abandoned trialware +databases/dbconnect||2019-06-16|Has expired: Abandonware and unused in the tree +databases/postgis21|databases/postgis23|2019-06-16|Has expired: Upstream no longer maintained +databases/postgis20|databases/postgis23|2019-06-16|Has expired: Upstream no longer maintained +databases/postgis22|databases/postgis23|2019-06-16|Has expired: Upstream no longer maintained Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Sun Jun 16 08:57:26 2019 (r504285) +++ head/databases/Makefile Sun Jun 16 08:57:43 2019 (r504286) @@ -51,7 +51,6 @@ SUBDIR += db48 SUBDIR += db5 SUBDIR += db6 - SUBDIR += dbconnect SUBDIR += dbf SUBDIR += dbh SUBDIR += dbixx @@ -661,9 +660,6 @@ SUBDIR += plpgsql_check SUBDIR += pointcloud SUBDIR += postgis-jdbc - SUBDIR += postgis20 - SUBDIR += postgis21 - SUBDIR += postgis22 SUBDIR += postgis23 SUBDIR += postgis24 SUBDIR += postgis25 Modified: head/ftp/Makefile ============================================================================== --- head/ftp/Makefile Sun Jun 16 08:57:26 2019 (r504285) +++ head/ftp/Makefile Sun Jun 16 08:57:43 2019 (r504286) @@ -43,7 +43,6 @@ SUBDIR += mirror SUBDIR += multiget SUBDIR += ncftp3 - SUBDIR += ncftpd SUBDIR += net2ftp SUBDIR += netdumpd SUBDIR += ocaml-ocurl From owner-svn-ports-all@freebsd.org Sun Jun 16 09:01:58 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DF8B15B8138; Sun, 16 Jun 2019 09:01:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F28A46EC5B; Sun, 16 Jun 2019 09:01:57 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C6328C3D1; Sun, 16 Jun 2019 09:01:57 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G91vRH033592; Sun, 16 Jun 2019 09:01:57 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G91vSc033591; Sun, 16 Jun 2019 09:01:57 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906160901.x5G91vSc033591@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sun, 16 Jun 2019 09:01:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504287 - head/comms/sms_client X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/comms/sms_client X-SVN-Commit-Revision: 504287 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F28A46EC5B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 09:01:58 -0000 Author: amdmi3 Date: Sun Jun 16 09:01:57 2019 New Revision: 504287 URL: https://svnweb.freebsd.org/changeset/ports/504287 Log: - Fix license - Update WWW Approved by: portmgr blanket Modified: head/comms/sms_client/Makefile head/comms/sms_client/pkg-descr Modified: head/comms/sms_client/Makefile ============================================================================== --- head/comms/sms_client/Makefile Sun Jun 16 08:57:43 2019 (r504286) +++ head/comms/sms_client/Makefile Sun Jun 16 09:01:57 2019 (r504287) @@ -10,7 +10,7 @@ MASTER_SITES= http://bsdforge.com/projects/source/comm MAINTAINER= portmaster@bsdforge.com COMMENT= Simple UNIX SMS client to send messages to phones or pagers -LICENSE= BSD3CLAUSE +LICENSE= LGPL20+ USES= tar:xz HAS_CONFIGURE= yes Modified: head/comms/sms_client/pkg-descr ============================================================================== --- head/comms/sms_client/pkg-descr Sun Jun 16 08:57:43 2019 (r504286) +++ head/comms/sms_client/pkg-descr Sun Jun 16 09:01:57 2019 (r504287) @@ -11,4 +11,4 @@ with a modem. For several UK based services such as th written, note that providers often offer more that one service and as such you may require a different driver for each one. -WWW: http://bsdforge.com/projects/comms/sms_client/ +WWW: https://bsdforge.com/projects/comms/sms_client/ From owner-svn-ports-all@freebsd.org Sun Jun 16 09:17:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DCE415B8564; Sun, 16 Jun 2019 09:17:01 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 21DD76F1C0; Sun, 16 Jun 2019 09:17:01 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 06906C6AB; Sun, 16 Jun 2019 09:17:01 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G9H0Me039775; Sun, 16 Jun 2019 09:17:00 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G9H0tH039773; Sun, 16 Jun 2019 09:17:00 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906160917.x5G9H0tH039773@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 16 Jun 2019 09:17:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504288 - head/misc/veles X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/veles X-SVN-Commit-Revision: 504288 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 21DD76F1C0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 09:17:01 -0000 Author: yuri Date: Sun Jun 16 09:17:00 2019 New Revision: 504288 URL: https://svnweb.freebsd.org/changeset/ports/504288 Log: misc/veles: Fix the limitation of 1MB on the data size that veles can show by back-porting my GitHub PR Modified: head/misc/veles/Makefile head/misc/veles/distinfo Modified: head/misc/veles/Makefile ============================================================================== --- head/misc/veles/Makefile Sun Jun 16 09:01:57 2019 (r504287) +++ head/misc/veles/Makefile Sun Jun 16 09:17:00 2019 (r504288) @@ -2,7 +2,11 @@ PORTNAME= veles DISTVERSION= 2018.05.0 +PORTREVISION= 1 CATEGORIES= misc + +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/commit/ +PATCHFILES= f9125454bfb2cd28d78544ba41d92c028be6a277.patch:-p1 # Lift the default size limit of 1MB that msgpack imposes on binary data: https://github.com/root-project/root/pull/2218/commits MAINTAINER= yuri@FreeBSD.org COMMENT= Tool for binary data visualization and analysis Modified: head/misc/veles/distinfo ============================================================================== --- head/misc/veles/distinfo Sun Jun 16 09:01:57 2019 (r504287) +++ head/misc/veles/distinfo Sun Jun 16 09:17:00 2019 (r504288) @@ -1,3 +1,5 @@ -TIMESTAMP = 1560472326 +TIMESTAMP = 1560676316 SHA256 (codilime-veles-2018.05.0_GH0.tar.gz) = da0047b7a42eece27aa83dd675f17df1fabeb765316a915bb9a2f22c7e1fb998 SIZE (codilime-veles-2018.05.0_GH0.tar.gz) = 2107744 +SHA256 (f9125454bfb2cd28d78544ba41d92c028be6a277.patch) = ea1fbd979c1eb1e4391e608d44d26c0c5a92db3b750a5d5fd8ac73d52de554d5 +SIZE (f9125454bfb2cd28d78544ba41d92c028be6a277.patch) = 1054 From owner-svn-ports-all@freebsd.org Sun Jun 16 09:20:14 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38FE815B8707; Sun, 16 Jun 2019 09:20:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D267B6F50F; Sun, 16 Jun 2019 09:20:13 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AA68DC6B4; Sun, 16 Jun 2019 09:20:13 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G9KDxh040095; Sun, 16 Jun 2019 09:20:13 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G9KDWh040094; Sun, 16 Jun 2019 09:20:13 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906160920.x5G9KDWh040094@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 16 Jun 2019 09:20:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504289 - head/misc/veles X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/veles X-SVN-Commit-Revision: 504289 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D267B6F50F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 09:20:14 -0000 Author: yuri Date: Sun Jun 16 09:20:13 2019 New Revision: 504289 URL: https://svnweb.freebsd.org/changeset/ports/504289 Log: misc/veles: Correct the comment Modified: head/misc/veles/Makefile Modified: head/misc/veles/Makefile ============================================================================== --- head/misc/veles/Makefile Sun Jun 16 09:17:00 2019 (r504288) +++ head/misc/veles/Makefile Sun Jun 16 09:20:13 2019 (r504289) @@ -6,7 +6,7 @@ PORTREVISION= 1 CATEGORIES= misc PATCH_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/commit/ -PATCHFILES= f9125454bfb2cd28d78544ba41d92c028be6a277.patch:-p1 # Lift the default size limit of 1MB that msgpack imposes on binary data: https://github.com/root-project/root/pull/2218/commits +PATCHFILES= f9125454bfb2cd28d78544ba41d92c028be6a277.patch:-p1 # Lift the default size limit of 1MB that msgpack imposes on binary data: https://github.com/codilime/veles/pull/447 MAINTAINER= yuri@FreeBSD.org COMMENT= Tool for binary data visualization and analysis From owner-svn-ports-all@freebsd.org Sun Jun 16 09:25:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4C59015B89B7; Sun, 16 Jun 2019 09:25:48 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DF34B6F953; Sun, 16 Jun 2019 09:25:47 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B96BBC888; Sun, 16 Jun 2019 09:25:47 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G9PlOV045378; Sun, 16 Jun 2019 09:25:47 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G9PlYl045377; Sun, 16 Jun 2019 09:25:47 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201906160925.x5G9PlYl045377@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 16 Jun 2019 09:25:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504290 - head/devel/py-setproctitle X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: head/devel/py-setproctitle X-SVN-Commit-Revision: 504290 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DF34B6F953 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 09:25:48 -0000 Author: koobs Date: Sun Jun 16 09:25:47 2019 New Revision: 504290 URL: https://svnweb.freebsd.org/changeset/ports/504290 Log: devel/py-setproctitle: Fix conflict with concurrent Python flavors Since devel/py-setproctitle installs HISTORY.rst and README.rst in a fixed location, pkg won't allow multiple flavors installed at the same time and concurrent ports conflict on install with each other. This change adds USE_PYTHON=concurrent which compensates for files in DOCSDIR automatically, by using a different directory for each Python version. PR: 238601 Submitted by: Ralf van der Enden Approved by: portmgr (blanket(s): just fix it, ports (python) compliance) MFH: 2019Q2 (blanket: bugfix) Modified: head/devel/py-setproctitle/Makefile Modified: head/devel/py-setproctitle/Makefile ============================================================================== --- head/devel/py-setproctitle/Makefile Sun Jun 16 09:20:13 2019 (r504289) +++ head/devel/py-setproctitle/Makefile Sun Jun 16 09:25:47 2019 (r504290) @@ -3,6 +3,7 @@ PORTNAME= setproctitle PORTVERSION= 1.1.10 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +15,7 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYRIGHT USES= python -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist concurrent distutils PORTDOCS= HISTORY.rst README.rst From owner-svn-ports-all@freebsd.org Sun Jun 16 09:47:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 189A315B9350; Sun, 16 Jun 2019 09:47:37 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B193470519; Sun, 16 Jun 2019 09:47:36 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8A667CBE0; Sun, 16 Jun 2019 09:47:36 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G9laa5055809; Sun, 16 Jun 2019 09:47:36 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G9lapc055808; Sun, 16 Jun 2019 09:47:36 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906160947.x5G9lapc055808@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 16 Jun 2019 09:47:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504291 - head/devel/allegro-devel X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/devel/allegro-devel X-SVN-Commit-Revision: 504291 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B193470519 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 09:47:37 -0000 Author: linimon Date: Sun Jun 16 09:47:35 2019 New Revision: 504291 URL: https://svnweb.freebsd.org/changeset/ports/504291 Log: Fix build on GCC-based systems by adding compiler:c++11-lang to USES: /usr/local/lib/libgraphite2.so.3: undefined reference to `__cxa_throw_bad_array_new_length@CXXABI_1.3.8' While here, unmute install command to pacify portlint. Approved by: portmgr (tier-2 blanket) Modified: head/devel/allegro-devel/Makefile Modified: head/devel/allegro-devel/Makefile ============================================================================== --- head/devel/allegro-devel/Makefile Sun Jun 16 09:25:47 2019 (r504290) +++ head/devel/allegro-devel/Makefile Sun Jun 16 09:47:35 2019 (r504291) @@ -23,7 +23,7 @@ LIB_DEPENDS+= libjack.so:audio/jack \ libFLAC.so:audio/flac \ libphysfs.so:devel/physfs -USES= cmake:insource jpeg openal:soft pkgconfig +USES= cmake:insource compiler:c++11-lang jpeg openal:soft pkgconfig USE_XORG= x11 xpm xext xcursor xxf86vm xxf86dga USE_GL= glu USE_GNOME= gtk20 @@ -93,7 +93,7 @@ post-patch: ${WRKSRC}/addons/audio/pulseaudio.c post-install: - @${INSTALL_MAN} ${WRKSRC}/docs/man/* ${STAGEDIR}${MAN3PREFIX}/man/man3/ + ${INSTALL_MAN} ${WRKSRC}/docs/man/* ${STAGEDIR}${MAN3PREFIX}/man/man3/ @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${DOC_FILES1:S|^|${DOCSRCDIR1}/|} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-all@freebsd.org Sun Jun 16 09:50:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6184C15B93F8; Sun, 16 Jun 2019 09:50:01 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E7E3470631; Sun, 16 Jun 2019 09:50:00 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C0160CBE5; Sun, 16 Jun 2019 09:50:00 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G9o09d056027; Sun, 16 Jun 2019 09:50:00 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G9o0ns056025; Sun, 16 Jun 2019 09:50:00 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201906160950.x5G9o0ns056025@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 16 Jun 2019 09:50:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504292 - in head/news/nntpbtr: . files X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head/news/nntpbtr: . files X-SVN-Commit-Revision: 504292 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E7E3470631 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 09:50:01 -0000 Author: rene Date: Sun Jun 16 09:50:00 2019 New Revision: 504292 URL: https://svnweb.freebsd.org/changeset/ports/504292 Log: news/nntpbtr: update to use sys/dirent.h instead of sys/dir.h It looks like the only MASTER_SITE is down, so mark it broken. This port has only seen mechanical updates for the last 15+ years. Hat: portmgr Event: Berlin hackathon 2019 Modified: head/news/nntpbtr/Makefile head/news/nntpbtr/files/patch-conf.h Modified: head/news/nntpbtr/Makefile ============================================================================== --- head/news/nntpbtr/Makefile Sun Jun 16 09:47:35 2019 (r504291) +++ head/news/nntpbtr/Makefile Sun Jun 16 09:50:00 2019 (r504292) @@ -9,6 +9,8 @@ MASTER_SITES= ftp://ftp.kiarchive.ru/pub/unix/news/ MAINTAINER= dk@farm.org COMMENT= NNTP bulk transfer +BROKEN= No more public distfiles + USES= tar:Z PLIST_FILES= sbin/${PORTNAME} man/man1/${PORTNAME}.1.gz Modified: head/news/nntpbtr/files/patch-conf.h ============================================================================== --- head/news/nntpbtr/files/patch-conf.h Sun Jun 16 09:47:35 2019 (r504291) +++ head/news/nntpbtr/files/patch-conf.h Sun Jun 16 09:50:00 2019 (r504292) @@ -1,5 +1,5 @@ ---- conf.h 1995/06/11 13:16:09 1.6 -+++ conf.h 1996/07/02 06:08:08 +--- conf.h.orig 1995-06-11 09:16:14 UTC ++++ conf.h @@ -4,16 +4,16 @@ */ @@ -50,3 +50,12 @@ /* wait time slot to re-check disk space (-m) or batch process (-I) if not define, when exit(2) without wait */ /* #define MINFTIME 60*10 /* time to sleep between new check */ +@@ -70,7 +72,7 @@ + #include + #include + #include +-#include ++#include + + #define DFREE_OK 0 + #define DFREE_INODES 1 From owner-svn-ports-all@freebsd.org Sun Jun 16 09:54:56 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F2EE515B9679; Sun, 16 Jun 2019 09:54:55 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 96A4270A09; Sun, 16 Jun 2019 09:54:55 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 83763CD96; Sun, 16 Jun 2019 09:54:55 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5G9stC8061340; Sun, 16 Jun 2019 09:54:55 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5G9ssEH061335; Sun, 16 Jun 2019 09:54:54 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906160954.x5G9ssEH061335@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Sun, 16 Jun 2019 09:54:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504293 - in head/net-im/telegram-purple: . files X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: in head/net-im/telegram-purple: . files X-SVN-Commit-Revision: 504293 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 96A4270A09 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 09:54:56 -0000 Author: joneum Date: Sun Jun 16 09:54:54 2019 New Revision: 504293 URL: https://svnweb.freebsd.org/changeset/ports/504293 Log: Update to 1.4.1 * Give Maintainership to Submitter * New dependency to graphics/png * Add porlint suggestions * libxml2 and tlparser are no longer required * server.tglpub file is no longer required. As consequence, etc directory is not required to being installed and Makefile.in file is not required to being patched either * strip telegram-purple.so library PR: 238125 Submitted by: jjuanino@gmail.com Sponsored by: Netzkommune GmbH Deleted: head/net-im/telegram-purple/files/patch-Makefile.in Modified: head/net-im/telegram-purple/Makefile head/net-im/telegram-purple/distinfo head/net-im/telegram-purple/files/patch-commit.h.gen head/net-im/telegram-purple/files/patch-tgl_tl-parser_portable__endian.h head/net-im/telegram-purple/pkg-plist Modified: head/net-im/telegram-purple/Makefile ============================================================================== --- head/net-im/telegram-purple/Makefile Sun Jun 16 09:50:00 2019 (r504292) +++ head/net-im/telegram-purple/Makefile Sun Jun 16 09:54:54 2019 (r504293) @@ -2,42 +2,42 @@ # $FreeBSD$ PORTNAME= telegram-purple -PORTVERSION= 1.3.1 +PORTVERSION= 1.4.1 DISTVERSIONPREFIX= v -PORTREVISION= 4 CATEGORIES= net-im -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jjuanino@gmail.com COMMENT= Libpurple plugin for Telegram messenger LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN_armv6= fails to link: undefined reference to 'backtrace' +BROKEN_sparc64= fails to compile: assertion fails + BUILD_DEPENDS= pidgin:net-im/pidgin RUN_DEPENDS= pidgin:net-im/pidgin LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libwebp.so:graphics/webp \ - libpurple.so:net-im/libpurple + libpurple.so:net-im/libpurple \ + libpng16.so:graphics/png -BROKEN_armv6= fails to link: undefined reference to 'backtrace' -BROKEN_sparc64= fails to compile: assertion fails +USES= gettext gmake gnome pkgconfig +USE_GNOME= glib20 OPTIONS_DEFINE= NLS OPTIONS_SUB= yes -USES= gettext gmake pkgconfig -USE_GNOME= glib20 libxml2 GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib USE_GITHUB= yes -GH_ACCOUNT= majn vysheng:tlparser -GH_PROJECT= tgl:tgl tl-parser:tlparser -GH_TAGNAME?= 624cf5a:tgl 36bf190:tlparser -GH_SUBDIR= tgl:tgl tgl/tl-parser:tlparser +GH_ACCOUNT= majn +GH_PROJECT= tgl:tgl +GH_TAGNAME?= bec2e6d:tgl +GH_SUBDIR= tgl:tgl -pre-configure: - @${REINPLACE_CMD} -e 's|/etc/telegram-purple/server.tglpub|${PREFIX}/etc/telegram-purple/server.tglpub|g' \ - ${WRKSRC}/telegram-purple.c +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/purple-2/telegram-purple.so .include Modified: head/net-im/telegram-purple/distinfo ============================================================================== --- head/net-im/telegram-purple/distinfo Sun Jun 16 09:50:00 2019 (r504292) +++ head/net-im/telegram-purple/distinfo Sun Jun 16 09:54:54 2019 (r504293) @@ -1,7 +1,5 @@ -TIMESTAMP = 1491967872 -SHA256 (majn-telegram-purple-v1.3.1_GH0.tar.gz) = b46b7988a22cd384cefd1af82919e80761a3b688285fc5b2ccd2c9a9dab7a020 -SIZE (majn-telegram-purple-v1.3.1_GH0.tar.gz) = 200308 -SHA256 (majn-tgl-624cf5a_GH0.tar.gz) = 4b15fb4140d3c4b0c2caf954636b0579e1ddde4dfe84705688f9aae996feb149 -SIZE (majn-tgl-624cf5a_GH0.tar.gz) = 242452 -SHA256 (vysheng-tl-parser-36bf190_GH0.tar.gz) = 9c4222cfc39f1f58061678c2a22dac5d2391e2594d4ec00e5ab9a7c12e606789 -SIZE (vysheng-tl-parser-36bf190_GH0.tar.gz) = 66898 +TIMESTAMP = 1558825174 +SHA256 (majn-telegram-purple-v1.4.1_GH0.tar.gz) = 2f5238f119bda71be2413854cd1f0242377d029b94a34456427a1cb7b37c6d24 +SIZE (majn-telegram-purple-v1.4.1_GH0.tar.gz) = 213171 +SHA256 (majn-tgl-bec2e6d_GH0.tar.gz) = 490559e80a6299b2ffc3da190e5af1cbcf08824c68e26c18f349654f04727d95 +SIZE (majn-tgl-bec2e6d_GH0.tar.gz) = 270087 Modified: head/net-im/telegram-purple/files/patch-commit.h.gen ============================================================================== --- head/net-im/telegram-purple/files/patch-commit.h.gen Sun Jun 16 09:50:00 2019 (r504292) +++ head/net-im/telegram-purple/files/patch-commit.h.gen Sun Jun 16 09:54:54 2019 (r504293) @@ -17,7 +17,7 @@ -fi - -GIT_COMMIT=`git rev-parse HEAD | cut -c1-10` -+GIT_COMMIT="0340e4f14b" ++GIT_COMMIT="d3d090917d" if grep -scq "${GIT_COMMIT}" commit.h then Modified: head/net-im/telegram-purple/files/patch-tgl_tl-parser_portable__endian.h ============================================================================== --- head/net-im/telegram-purple/files/patch-tgl_tl-parser_portable__endian.h Sun Jun 16 09:50:00 2019 (r504292) +++ head/net-im/telegram-purple/files/patch-tgl_tl-parser_portable__endian.h Sun Jun 16 09:54:54 2019 (r504293) @@ -1,6 +1,6 @@ ---- tgl/tl-parser/portable_endian.h.orig 2016-08-11 06:34:54 UTC +--- tgl/tl-parser/portable_endian.h.orig 2019-02-22 22:36:12 UTC +++ tgl/tl-parser/portable_endian.h -@@ -53,15 +53,6 @@ +@@ -71,15 +71,6 @@ # include Modified: head/net-im/telegram-purple/pkg-plist ============================================================================== --- head/net-im/telegram-purple/pkg-plist Sun Jun 16 09:50:00 2019 (r504292) +++ head/net-im/telegram-purple/pkg-plist Sun Jun 16 09:54:54 2019 (r504293) @@ -1,15 +1,17 @@ -%%ETCDIR%%/server.tglpub +@dir /%%ETCDIR%% lib/purple-2/telegram-purple.so share/appdata/telegram-purple.metainfo.xml %%NLS%%share/locale/bg/LC_MESSAGES/telegram-purple.mo %%NLS%%share/locale/cs_CZ/LC_MESSAGES/telegram-purple.mo -%%NLS%%share/locale/de_DE/LC_MESSAGES/telegram-purple.mo +%%NLS%%share/locale/de/LC_MESSAGES/telegram-purple.mo +%%NLS%%share/locale/es/LC_MESSAGES/telegram-purple.mo %%NLS%%share/locale/es_AR/LC_MESSAGES/telegram-purple.mo %%NLS%%share/locale/fr/LC_MESSAGES/telegram-purple.mo -%%NLS%%share/locale/it_IT/LC_MESSAGES/telegram-purple.mo +%%NLS%%share/locale/it/LC_MESSAGES/telegram-purple.mo %%NLS%%share/locale/nl/LC_MESSAGES/telegram-purple.mo -%%NLS%%share/locale/pl_PL/LC_MESSAGES/telegram-purple.mo -%%NLS%%share/locale/ru_RU/LC_MESSAGES/telegram-purple.mo +%%NLS%%share/locale/pl/LC_MESSAGES/telegram-purple.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/telegram-purple.mo +%%NLS%%share/locale/ru/LC_MESSAGES/telegram-purple.mo %%NLS%%share/locale/sq/LC_MESSAGES/telegram-purple.mo %%NLS%%share/locale/uk/LC_MESSAGES/telegram-purple.mo share/pixmaps/pidgin/protocols/16/telegram.png From owner-svn-ports-all@freebsd.org Sun Jun 16 10:14:22 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3949615B9CD5; Sun, 16 Jun 2019 10:14:22 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B476D711F1; Sun, 16 Jun 2019 10:14:21 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 89A48D0E4; Sun, 16 Jun 2019 10:14:21 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAELlG071669; Sun, 16 Jun 2019 10:14:21 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAELFc071668; Sun, 16 Jun 2019 10:14:21 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906161014.x5GAELFc071668@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Sun, 16 Jun 2019 10:14:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504294 - head/security/py-fail2ban X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/security/py-fail2ban X-SVN-Commit-Revision: 504294 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B476D711F1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:14:22 -0000 Author: kai Date: Sun Jun 16 10:14:21 2019 New Revision: 504294 URL: https://svnweb.freebsd.org/changeset/ports/504294 Log: security/py-fail2ban: Add support for devel/py-pyinotify * Enable support for devel/py-pyinotify that itself uses devel/libinotify to monitor changes in the filesystem. [1] * Also introduce the new dependency as an additional default option INOTIFY while I'm here because it's not a hard requirement for runtime. [2] PR: 238427 Submitted by: Dmitry Wagin [1] Approved by: theis@gmx.at (maintainer) [1] [2] Modified: head/security/py-fail2ban/Makefile Modified: head/security/py-fail2ban/Makefile ============================================================================== --- head/security/py-fail2ban/Makefile Sun Jun 16 09:54:54 2019 (r504293) +++ head/security/py-fail2ban/Makefile Sun Jun 16 10:14:21 2019 (r504294) @@ -2,7 +2,7 @@ PORTNAME= fail2ban PORTVERSION= 0.10.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= security python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,8 +14,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} -OPTIONS_DEFINE= DOCS - USES= python:patch shebangfix USE_GITHUB= yes USE_PYTHON= autoplist distutils @@ -31,6 +29,13 @@ SUB_LIST+= PYTHON_CMD=${PYTHON_CMD} PYDISTUTILS_INSTALLARGS+= --install-data=${ETCDIR} PORTDOCS= README.md DEVELOP + +OPTIONS_DEFINE= DOCS INOTIFY +OPTIONS_DEFAULT=INOTIFY + +INOTIFY_DESC= Support for (lib)inotify to monitor filesystem changes + +INOTIFY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyinotify>=0.8.3:devel/py-pyinotify@${PY_FLAVOR} FILES= ${WRKSRC}/bin/fail2ban-client \ ${WRKSRC}/fail2ban/client/configreader.py \ From owner-svn-ports-all@freebsd.org Sun Jun 16 10:34:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3FBB15BA239; Sun, 16 Jun 2019 10:34:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7C8747192D; Sun, 16 Jun 2019 10:34:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4F5A6D43A; Sun, 16 Jun 2019 10:34:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAYQRY082204; Sun, 16 Jun 2019 10:34:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAYOLL082195; Sun, 16 Jun 2019 10:34:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161034.x5GAYOLL082195@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:34:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504295 - in head/databases/tarantool: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/databases/tarantool: . files X-SVN-Commit-Revision: 504295 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7C8747192D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:34:27 -0000 Author: sunpoet Date: Sun Jun 16 10:34:23 2019 New Revision: 504295 URL: https://svnweb.freebsd.org/changeset/ports/504295 Log: Update to 2.1.2 - Fix linking: change from libmsgpuck.a to libmsgpuck.so Changes: https://github.com/tarantool/tarantool/releases Added: head/databases/tarantool/files/patch-src-box-tuple_format.c (contents, props changed) head/databases/tarantool/files/patch-src-box-vy_stmt.c (contents, props changed) head/databases/tarantool/files/patch-src-lib-swim-swim_io.h (contents, props changed) head/databases/tarantool/files/patch-src-lib-swim-swim_proto.c (contents, props changed) head/databases/tarantool/files/patch-src-lib-swim-swim_proto.h (contents, props changed) head/databases/tarantool/files/patch-src-lib-swim-swim_transport.h (contents, props changed) head/databases/tarantool/files/patch-test-unit-swim_test_transport.c (contents, props changed) Modified: head/databases/tarantool/Makefile head/databases/tarantool/distinfo Modified: head/databases/tarantool/Makefile ============================================================================== --- head/databases/tarantool/Makefile Sun Jun 16 10:14:21 2019 (r504294) +++ head/databases/tarantool/Makefile Sun Jun 16 10:34:23 2019 (r504295) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tarantool -PORTVERSION= 1.10.3 -PORTREVISION= 1 +PORTVERSION= 2.1.2 CATEGORIES= databases MAINTAINER= sunpoet@FreeBSD.org @@ -37,11 +36,11 @@ PLIST_SUB= TT_DATADIR=${TT_DATADIR} \ TT_LOGDIR=${TT_LOGDIR} SUB_FILES= pkg-message -GH_TUPLE= rtsisyk:luafun:e248e00:luafun/third_party/luafun \ - tarantool:luajit:d92380f:luajit/third_party/luajit \ +GH_TUPLE= luafun:luafun:e248e00:luafun/third_party/luafun \ + tarantool:luajit:5f0a43a:luajit/third_party/luajit \ tarantool:luarocks:05312b5:luarocks/third_party/luarocks \ - tarantool:small:cdf7d4a:small/src/lib/small \ - tarantool:test-run:8ed7445:test_run/test-run + tarantool:small:020716d:small/src/lib/small \ + tarantool:test-run:27aebd9:test_run/test-run USE_GITHUB= yes USERS= tarantool @@ -58,6 +57,7 @@ DEBUG_CMAKE_BOOL= ENABLE_BACKTRACE post-patch: @${ECHO_CMD} ${PORTVERSION}-0 > ${WRKSRC}/VERSION @${GREP} -lr 'msgpuck/msgpuck.h' ${WRKSRC}/ | ${XARGS} ${REINPLACE_CMD} -e 's|msgpuck/msgpuck.h|msgpuck.h|' + @${REINPLACE_CMD} -e 's|libmsgpuck.a|libmsgpuck.so|' ${WRKSRC}/cmake/FindMsgPuck.cmake post-install: @${RMDIR} ${STAGEDIR}${PREFIX}/lib/tarantool/ Modified: head/databases/tarantool/distinfo ============================================================================== --- head/databases/tarantool/distinfo Sun Jun 16 10:14:21 2019 (r504294) +++ head/databases/tarantool/distinfo Sun Jun 16 10:34:23 2019 (r504295) @@ -1,13 +1,13 @@ -TIMESTAMP = 1554489603 -SHA256 (tarantool-tarantool-1.10.3_GH0.tar.gz) = f07448e8f06e40370ef0d9c3681121e39769299e4b6afad3cefdc956c1f7d50e -SIZE (tarantool-tarantool-1.10.3_GH0.tar.gz) = 2542792 -SHA256 (rtsisyk-luafun-e248e00_GH0.tar.gz) = 9978dd21c0688d5c6206846697be17363a4be446851c1c1d60e2427fe200b7f2 -SIZE (rtsisyk-luafun-e248e00_GH0.tar.gz) = 67323 -SHA256 (tarantool-luajit-d92380f_GH0.tar.gz) = 41597564b3fc11ce96f3f49044fc39745d39b80abd33ad72483614566a3bad74 -SIZE (tarantool-luajit-d92380f_GH0.tar.gz) = 1027807 +TIMESTAMP = 1560671633 +SHA256 (tarantool-tarantool-2.1.2_GH0.tar.gz) = bc8ec0e3e060ca620159179fff169a505aaa0eec5942bf86999897e2087f9596 +SIZE (tarantool-tarantool-2.1.2_GH0.tar.gz) = 4206520 +SHA256 (luafun-luafun-e248e00_GH0.tar.gz) = 9978dd21c0688d5c6206846697be17363a4be446851c1c1d60e2427fe200b7f2 +SIZE (luafun-luafun-e248e00_GH0.tar.gz) = 67323 +SHA256 (tarantool-luajit-5f0a43a_GH0.tar.gz) = 4b0bb2b8c1c87defbef24664c784d98b8aa531263d461117271f2f4adf38329d +SIZE (tarantool-luajit-5f0a43a_GH0.tar.gz) = 1028458 SHA256 (tarantool-luarocks-05312b5_GH0.tar.gz) = 4ee5ef77b67f2e5eed41aba8e4682aa7dd2516618c1d38caf781d38a7e19818f SIZE (tarantool-luarocks-05312b5_GH0.tar.gz) = 4027574 -SHA256 (tarantool-small-cdf7d4a_GH0.tar.gz) = 7b3e37d2bcc4dfbc4924785cc27bc2bddaa81393044826956470ff8eebd5c7bf -SIZE (tarantool-small-cdf7d4a_GH0.tar.gz) = 108844 -SHA256 (tarantool-test-run-8ed7445_GH0.tar.gz) = 501e84dd15e2d00910a5f95488cf6c96981cce1f4a45b642be04dd6cf57e8cc4 -SIZE (tarantool-test-run-8ed7445_GH0.tar.gz) = 60641 +SHA256 (tarantool-small-020716d_GH0.tar.gz) = f30115f7d07f0f333f6b933aa635aad9795586a7adcbc37ef851eab70907f750 +SIZE (tarantool-small-020716d_GH0.tar.gz) = 113841 +SHA256 (tarantool-test-run-27aebd9_GH0.tar.gz) = 19a41fce7120106b7c91b27eee7f99fb605ec11f16b0669bda5604bd23b9ebbe +SIZE (tarantool-test-run-27aebd9_GH0.tar.gz) = 62051 Added: head/databases/tarantool/files/patch-src-box-tuple_format.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/tarantool/files/patch-src-box-tuple_format.c Sun Jun 16 10:34:23 2019 (r504295) @@ -0,0 +1,36 @@ +Obtained from: https://github.com/tarantool/tarantool/commit/518557963250fd30b22005376feb4e0e2a6786a1 + +--- src/box/tuple_format.c.orig ++++ src/box/tuple_format.c +@@ -850,8 +850,8 @@ tuple_field_map_create(struct tuple_format *format, const char *tuple, + struct tuple_field *field; + struct json_token *parent = &format->fields.root; + while (true) { +- int idx; +- while ((idx = mp_stack_advance(&stack)) == -1) { ++ struct mp_frame *frame = mp_stack_top(&stack); ++ while (!mp_frame_advance(frame)) { + /* + * If the elements of the current frame + * are over, pop this frame out of stack +@@ -863,6 +863,7 @@ tuple_field_map_create(struct tuple_format *format, const char *tuple, + mp_stack_pop(&stack); + if (mp_stack_is_empty(&stack)) + goto finish; ++ frame = mp_stack_top(&stack); + parent = parent->parent; + } + /* +@@ -871,10 +872,10 @@ tuple_field_map_create(struct tuple_format *format, const char *tuple, + * for the subsequent format::fields lookup. + */ + struct json_token token; +- switch (mp_stack_type(&stack)) { ++ switch (frame->type) { + case MP_ARRAY: + token.type = JSON_TOKEN_NUM; +- token.num = idx; ++ token.num = frame->idx; + break; + case MP_MAP: + if (mp_typeof(*pos) != MP_STR) { Added: head/databases/tarantool/files/patch-src-box-vy_stmt.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/tarantool/files/patch-src-box-vy_stmt.c Sun Jun 16 10:34:23 2019 (r504295) @@ -0,0 +1,28 @@ +Obtained from: https://github.com/tarantool/tarantool/commit/518557963250fd30b22005376feb4e0e2a6786a1 + +--- src/box/vy_stmt.c.orig ++++ src/box/vy_stmt.c +@@ -447,18 +447,19 @@ vy_stmt_new_surrogate_delete_raw(struct tuple_format *format, + struct tuple_field *field; + struct json_token *parent = &format->fields.root; + while (true) { +- int idx; +- while ((idx = mp_stack_advance(&stack)) == -1) { ++ struct mp_frame *frame = mp_stack_top(&stack); ++ while (!mp_frame_advance(frame)) { + mp_stack_pop(&stack); + if (mp_stack_is_empty(&stack)) + goto finish; ++ frame = mp_stack_top(&stack); + parent = parent->parent; + } + struct json_token token; +- switch (mp_stack_type(&stack)) { ++ switch (frame->type) { + case MP_ARRAY: + token.type = JSON_TOKEN_NUM; +- token.num = idx; ++ token.num = frame->idx; + break; + case MP_MAP: + if (mp_typeof(*src_pos) != MP_STR) { Added: head/databases/tarantool/files/patch-src-lib-swim-swim_io.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/tarantool/files/patch-src-lib-swim-swim_io.h Sun Jun 16 10:34:23 2019 (r504295) @@ -0,0 +1,12 @@ +Obtained from: https://github.com/tarantool/tarantool/commit/67d33761ceaf07564a156dc8252b5edb857808ed + +--- src/lib/swim/swim_io.h.orig ++++ src/lib/swim/swim_io.h +@@ -37,6 +37,7 @@ + #include "tarantool_ev.h" + #include + #include ++#include + + /** + * SWIM protocol transport level. Added: head/databases/tarantool/files/patch-src-lib-swim-swim_proto.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/tarantool/files/patch-src-lib-swim-swim_proto.c Sun Jun 16 10:34:23 2019 (r504295) @@ -0,0 +1,12 @@ +Obtained from: https://github.com/tarantool/tarantool/commit/67d33761ceaf07564a156dc8252b5edb857808ed + +--- src/lib/swim/swim_proto.c.orig ++++ src/lib/swim/swim_proto.c +@@ -33,6 +33,7 @@ + #include "say.h" + #include "version.h" + #include "diag.h" ++#include /* AF_INET for FreeBSD. */ + + const char *swim_member_status_strs[] = { + "alive", Added: head/databases/tarantool/files/patch-src-lib-swim-swim_proto.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/tarantool/files/patch-src-lib-swim-swim_proto.h Sun Jun 16 10:34:23 2019 (r504295) @@ -0,0 +1,13 @@ +Obtained from: https://github.com/tarantool/tarantool/commit/67d33761ceaf07564a156dc8252b5edb857808ed + +--- src/lib/swim/swim_proto.h.orig 2019-04-05 11:27:32 UTC ++++ src/lib/swim/swim_proto.h +@@ -33,6 +33,8 @@ + #include "trivia/util.h" + #include "uuid/tt_uuid.h" + #include ++#include ++#include + #include + + /** Added: head/databases/tarantool/files/patch-src-lib-swim-swim_transport.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/tarantool/files/patch-src-lib-swim-swim_transport.h Sun Jun 16 10:34:23 2019 (r504295) @@ -0,0 +1,15 @@ +Obtained from: https://github.com/tarantool/tarantool/commit/67d33761ceaf07564a156dc8252b5edb857808ed + https://github.com/tarantool/tarantool/commit/03e114b91a55dbb89ea9b0b5f134dd6a19ea6a81 + +--- src/lib/swim/swim_transport.h.orig 2019-04-05 11:27:32 UTC ++++ src/lib/swim/swim_transport.h +@@ -31,7 +31,9 @@ + * SUCH DAMAGE. + */ + #include "trivia/util.h" ++#include + #include ++#include + + /** Transport implementation. */ + struct swim_transport { Added: head/databases/tarantool/files/patch-test-unit-swim_test_transport.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/tarantool/files/patch-test-unit-swim_test_transport.c Sun Jun 16 10:34:23 2019 (r504295) @@ -0,0 +1,12 @@ +Obtained from: https://github.com/tarantool/tarantool/commit/67d33761ceaf07564a156dc8252b5edb857808ed + +--- test/unit/swim_test_transport.c.orig ++++ test/unit/swim_test_transport.c +@@ -33,6 +33,7 @@ + #include "swim/swim_io.h" + #include "fiber.h" + #include ++#include + + enum { + /** From owner-svn-ports-all@freebsd.org Sun Jun 16 10:34:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6615415BA26A; Sun, 16 Jun 2019 10:34:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 34462719CB; Sun, 16 Jun 2019 10:34:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 262ADD43B; Sun, 16 Jun 2019 10:34:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAYVET082329; Sun, 16 Jun 2019 10:34:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAYVOY082327; Sun, 16 Jun 2019 10:34:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161034.x5GAYVOY082327@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:34:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504296 - head/databases/tarantool-c X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/databases/tarantool-c X-SVN-Commit-Revision: 504296 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 34462719CB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:34:37 -0000 Author: sunpoet Date: Sun Jun 16 10:34:31 2019 New Revision: 504296 URL: https://svnweb.freebsd.org/changeset/ports/504296 Log: Update to latest snapshot - Add LICENSE_FILE - Fix linking: change from libmsgpuck.a to libmsgpuck.so - Bump PORTREVISION for package change Changes: https://github.com/tarantool/tarantool-c/commits/master Modified: head/databases/tarantool-c/Makefile head/databases/tarantool-c/distinfo Modified: head/databases/tarantool-c/Makefile ============================================================================== --- head/databases/tarantool-c/Makefile Sun Jun 16 10:34:23 2019 (r504295) +++ head/databases/tarantool-c/Makefile Sun Jun 16 10:34:31 2019 (r504296) @@ -2,13 +2,14 @@ PORTNAME= tarantool-c PORTVERSION= 1.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MAINTAINER= sunpoet@FreeBSD.org COMMENT= C client for Tarantool 1.6+ LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libmsgpuck.so:devel/msgpuck @@ -18,10 +19,11 @@ CMAKE_OFF= ENABLE_BUNDLED_DOCS ENABLE_BUNDLED_MSGPUCK USE_GITHUB= yes GH_ACCOUNT= tarantool -GH_TAGNAME= d93096a +GH_TAGNAME= 0df3623 post-patch: @${GREP} -lr 'msgpuck/msgpuck.h' ${WRKSRC}/ | ${XARGS} ${REINPLACE_CMD} -e 's|msgpuck/msgpuck.h|msgpuck.h|' + @${REINPLACE_CMD} -e 's|libmsgpuck.a|libmsgpuck.so|' ${WRKSRC}/cmake/FindMsgPuck.cmake .include Modified: head/databases/tarantool-c/distinfo ============================================================================== --- head/databases/tarantool-c/distinfo Sun Jun 16 10:34:23 2019 (r504295) +++ head/databases/tarantool-c/distinfo Sun Jun 16 10:34:31 2019 (r504296) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554563575 -SHA256 (tarantool-tarantool-c-1.0.1-d93096a_GH0.tar.gz) = cb0e3794535b7e7e5871f243a53c8d0086cf0256f041f0e8f34493f67ddea74c -SIZE (tarantool-tarantool-c-1.0.1-d93096a_GH0.tar.gz) = 140415 +TIMESTAMP = 1560671635 +SHA256 (tarantool-tarantool-c-1.0.1-0df3623_GH0.tar.gz) = c66c079ce3ef0cf63b4a85e7ccf3088f1238f60f0f6af3d1a5cdef56bc13c2bd +SIZE (tarantool-tarantool-c-1.0.1-0df3623_GH0.tar.gz) = 140487 From owner-svn-ports-all@freebsd.org Sun Jun 16 10:34:38 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89D1015BA26F; Sun, 16 Jun 2019 10:34:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1B44E719FB; Sun, 16 Jun 2019 10:34:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E9C40D43C; Sun, 16 Jun 2019 10:34:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAYbNV082438; Sun, 16 Jun 2019 10:34:37 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAYbEW082437; Sun, 16 Jun 2019 10:34:37 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161034.x5GAYbEW082437@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:34:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504297 - head/devel/byacc X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/byacc X-SVN-Commit-Revision: 504297 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1B44E719FB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:34:38 -0000 Author: sunpoet Date: Sun Jun 16 10:34:37 2019 New Revision: 504297 URL: https://svnweb.freebsd.org/changeset/ports/504297 Log: Cosmetic change Modified: head/devel/byacc/Makefile Modified: head/devel/byacc/Makefile ============================================================================== --- head/devel/byacc/Makefile Sun Jun 16 10:34:31 2019 (r504296) +++ head/devel/byacc/Makefile Sun Jun 16 10:34:37 2019 (r504297) @@ -11,11 +11,12 @@ COMMENT= Best yacc variant available LICENSE= PD +USES= tar:tgz + GNU_CONFIGURE= yes MAKE_ARGS= DEFINES="-DMAXTABLE=INT_MAX" MAKEFILE= makefile TEST_TARGET= check -USES= tar:tgz PLIST_FILES= bin/yacc \ man/man1/yacc.1.gz From owner-svn-ports-all@freebsd.org Sun Jun 16 10:34:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4D63D15BA2C0; Sun, 16 Jun 2019 10:34:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E2B0171ABD; Sun, 16 Jun 2019 10:34:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5C5B3D43D; Sun, 16 Jun 2019 10:34:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAYil2082563; Sun, 16 Jun 2019 10:34:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAYi7p082562; Sun, 16 Jun 2019 10:34:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161034.x5GAYi7p082562@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:34:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504298 - head/devel/msgpuck X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/msgpuck X-SVN-Commit-Revision: 504298 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E2B0171ABD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:34:46 -0000 Author: sunpoet Date: Sun Jun 16 10:34:43 2019 New Revision: 504298 URL: https://svnweb.freebsd.org/changeset/ports/504298 Log: Update to latest snapshot - Bump PORTREVISION for package change Changes: https://github.com/tarantool/msgpuck/commits/master Modified: head/devel/msgpuck/Makefile head/devel/msgpuck/distinfo Modified: head/devel/msgpuck/Makefile ============================================================================== --- head/devel/msgpuck/Makefile Sun Jun 16 10:34:37 2019 (r504297) +++ head/devel/msgpuck/Makefile Sun Jun 16 10:34:43 2019 (r504298) @@ -2,6 +2,7 @@ PORTNAME= msgpuck PORTVERSION= 2.0 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= sunpoet@FreeBSD.org @@ -15,5 +16,6 @@ USE_LDCONFIG= yes USE_GITHUB= yes GH_ACCOUNT= tarantool +GH_TAGNAME= 8ae606a .include Modified: head/devel/msgpuck/distinfo ============================================================================== --- head/devel/msgpuck/distinfo Sun Jun 16 10:34:37 2019 (r504297) +++ head/devel/msgpuck/distinfo Sun Jun 16 10:34:43 2019 (r504298) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519663819 -SHA256 (tarantool-msgpuck-2.0_GH0.tar.gz) = 01e6aa55d4d52a5b19f7ce9a9845506d9ab3f5abcf844a75e880b8378150a63d -SIZE (tarantool-msgpuck-2.0_GH0.tar.gz) = 51548 +TIMESTAMP = 1560671637 +SHA256 (tarantool-msgpuck-2.0-8ae606a_GH0.tar.gz) = 9bdd88a67aed8f50e2faaef9dfb9dff65fce4c2fb6e026a24661458a032114a5 +SIZE (tarantool-msgpuck-2.0-8ae606a_GH0.tar.gz) = 56336 From owner-svn-ports-all@freebsd.org Sun Jun 16 10:34:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B9C415BA300; Sun, 16 Jun 2019 10:34:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8F03E71B89; Sun, 16 Jun 2019 10:34:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 86364D43E; Sun, 16 Jun 2019 10:34:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAYpCR082706; Sun, 16 Jun 2019 10:34:51 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAYo22082704; Sun, 16 Jun 2019 10:34:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161034.x5GAYo22082704@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:34:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504299 - head/graphics/GraphicsMagick X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/graphics/GraphicsMagick X-SVN-Commit-Revision: 504299 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8F03E71B89 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:34:54 -0000 Author: sunpoet Date: Sun Jun 16 10:34:50 2019 New Revision: 504299 URL: https://svnweb.freebsd.org/changeset/ports/504299 Log: Update to 1.3.32 Changes: http://www.graphicsmagick.org/NEWS.html Security: 82c07dfa-9016-11e9-af2f-712c38aa3e4c MFH: 2019Q2 Modified: head/graphics/GraphicsMagick/Makefile head/graphics/GraphicsMagick/distinfo head/graphics/GraphicsMagick/pkg-plist Modified: head/graphics/GraphicsMagick/Makefile ============================================================================== --- head/graphics/GraphicsMagick/Makefile Sun Jun 16 10:34:43 2019 (r504298) +++ head/graphics/GraphicsMagick/Makefile Sun Jun 16 10:34:50 2019 (r504299) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= GraphicsMagick -PORTVERSION= 1.3.31 -PORTREVISION= 3 +PORTVERSION= 1.3.32 PORTEPOCH= 1 CATEGORIES= graphics MASTER_SITES= SF \ Modified: head/graphics/GraphicsMagick/distinfo ============================================================================== --- head/graphics/GraphicsMagick/distinfo Sun Jun 16 10:34:43 2019 (r504298) +++ head/graphics/GraphicsMagick/distinfo Sun Jun 16 10:34:50 2019 (r504299) @@ -1,3 +1,3 @@ -TIMESTAMP = 1542527626 -SHA256 (GraphicsMagick-1.3.31.tar.bz2) = 69ee4ac6a49a818098f47f51c4f430ca9bb2493cb3594f322eb211b8aeb71f41 -SIZE (GraphicsMagick-1.3.31.tar.bz2) = 7897215 +TIMESTAMP = 1560671639 +SHA256 (GraphicsMagick-1.3.32.tar.bz2) = d1f70bc6d41de922199ce6b0a04af7b3492b2fc4a2be6ee24e0af4e15250db0a +SIZE (GraphicsMagick-1.3.32.tar.bz2) = 7958067 Modified: head/graphics/GraphicsMagick/pkg-plist ============================================================================== --- head/graphics/GraphicsMagick/pkg-plist Sun Jun 16 10:34:43 2019 (r504298) +++ head/graphics/GraphicsMagick/pkg-plist Sun Jun 16 10:34:50 2019 (r504299) @@ -94,15 +94,15 @@ lib/GraphicsMagick/config/type.mgk lib/libGraphicsMagick++.a lib/libGraphicsMagick++.so lib/libGraphicsMagick++.so.12 -lib/libGraphicsMagick++.so.12.4.0 +lib/libGraphicsMagick++.so.12.4.1 lib/libGraphicsMagick.a lib/libGraphicsMagick.so lib/libGraphicsMagick.so.3 -lib/libGraphicsMagick.so.3.19.0 +lib/libGraphicsMagick.so.3.20.0 lib/libGraphicsMagickWand.a lib/libGraphicsMagickWand.so lib/libGraphicsMagickWand.so.2 -lib/libGraphicsMagickWand.so.2.9.1 +lib/libGraphicsMagickWand.so.2.9.2 libdata/pkgconfig/GraphicsMagick++.pc libdata/pkgconfig/GraphicsMagick.pc libdata/pkgconfig/GraphicsMagickWand.pc @@ -133,6 +133,7 @@ man/man5/quantize.5.gz %%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2015 %%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2016 %%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2017 +%%PORTDOCS%%%%DOCSDIR%%/ChangeLog.2018 %%PORTDOCS%%%%DOCSDIR%%/Copyright.txt %%PORTDOCS%%%%DOCSDIR%%/NEWS.txt %%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2001.html @@ -152,6 +153,7 @@ man/man5/quantize.5.gz %%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2015.html %%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2016.html %%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2017.html +%%PORTDOCS%%%%DOCSDIR%%/www/ChangeLog-2018.html %%PORTDOCS%%%%DOCSDIR%%/www/Changelog.html %%PORTDOCS%%%%DOCSDIR%%/www/Changes.html %%PORTDOCS%%%%DOCSDIR%%/www/Copyright.html From owner-svn-ports-all@freebsd.org Sun Jun 16 10:35:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0158A15BA35B; Sun, 16 Jun 2019 10:35:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 938DA71C59; Sun, 16 Jun 2019 10:35:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 20CC1D440; Sun, 16 Jun 2019 10:34:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAYwG9082826; Sun, 16 Jun 2019 10:34:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAYw6F082825; Sun, 16 Jun 2019 10:34:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161034.x5GAYw6F082825@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:34:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504300 - head/devel/lua51-bitop X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/lua51-bitop X-SVN-Commit-Revision: 504300 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 938DA71C59 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:35:01 -0000 Author: sunpoet Date: Sun Jun 16 10:34:57 2019 New Revision: 504300 URL: https://svnweb.freebsd.org/changeset/ports/504300 Log: Remove no-op SLAVE_PORT Modified: head/devel/lua51-bitop/Makefile Modified: head/devel/lua51-bitop/Makefile ============================================================================== --- head/devel/lua51-bitop/Makefile Sun Jun 16 10:34:50 2019 (r504299) +++ head/devel/lua51-bitop/Makefile Sun Jun 16 10:34:57 2019 (r504300) @@ -3,11 +3,10 @@ COMMENT= lua-bitop for Lua 5.1 -SLAVE_PORT= lua-bitop +USES= gmake lua:51 -USES= gmake lua:51 - MASTERDIR= ${.CURDIR}/../lua-bitop -PLIST= ${MASTERDIR}/pkg-plist + +PLIST= ${MASTERDIR}/pkg-plist .include "${MASTERDIR}/Makefile" From owner-svn-ports-all@freebsd.org Sun Jun 16 10:35:07 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 508E215BA38B; Sun, 16 Jun 2019 10:35:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E035671D05; Sun, 16 Jun 2019 10:35:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AFD21D441; Sun, 16 Jun 2019 10:35:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAZ3vC082965; Sun, 16 Jun 2019 10:35:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAZ3jw082963; Sun, 16 Jun 2019 10:35:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161035.x5GAZ3jw082963@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:35:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504301 - head/devel/p5-Devel-PatchPerl X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-Devel-PatchPerl X-SVN-Commit-Revision: 504301 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E035671D05 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:35:07 -0000 Author: sunpoet Date: Sun Jun 16 10:35:03 2019 New Revision: 504301 URL: https://svnweb.freebsd.org/changeset/ports/504301 Log: Update to 1.64 Changes: https://metacpan.org/changes/distribution/Devel-PatchPerl Modified: head/devel/p5-Devel-PatchPerl/Makefile head/devel/p5-Devel-PatchPerl/distinfo Modified: head/devel/p5-Devel-PatchPerl/Makefile ============================================================================== --- head/devel/p5-Devel-PatchPerl/Makefile Sun Jun 16 10:34:57 2019 (r504300) +++ head/devel/p5-Devel-PatchPerl/Makefile Sun Jun 16 10:35:03 2019 (r504301) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Devel-PatchPerl -PORTVERSION= 1.62 +PORTVERSION= 1.64 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Devel-PatchPerl/distinfo ============================================================================== --- head/devel/p5-Devel-PatchPerl/distinfo Sun Jun 16 10:34:57 2019 (r504300) +++ head/devel/p5-Devel-PatchPerl/distinfo Sun Jun 16 10:35:03 2019 (r504301) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559661218 -SHA256 (Devel-PatchPerl-1.62.tar.gz) = d9d74278a930db1b7e044ddea07aa05898b5406546f15ab9cc8b8bf28b72e72b -SIZE (Devel-PatchPerl-1.62.tar.gz) = 130282 +TIMESTAMP = 1560671641 +SHA256 (Devel-PatchPerl-1.64.tar.gz) = 9b2c5d26e0068306309d058f384adf916c0d8d54be1e0806664ca6052a01d499 +SIZE (Devel-PatchPerl-1.64.tar.gz) = 130408 From owner-svn-ports-all@freebsd.org Sun Jun 16 10:35:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A589815BA3C8; Sun, 16 Jun 2019 10:35:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 37F2B71D8B; Sun, 16 Jun 2019 10:35:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D31ECD442; Sun, 16 Jun 2019 10:35:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAZ97p083123; Sun, 16 Jun 2019 10:35:09 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAZ9Yc083119; Sun, 16 Jun 2019 10:35:09 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161035.x5GAZ9Yc083119@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:35:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504302 - head/devel/p5-Proc-ProcessTable X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-Proc-ProcessTable X-SVN-Commit-Revision: 504302 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 37F2B71D8B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:35:11 -0000 Author: sunpoet Date: Sun Jun 16 10:35:08 2019 New Revision: 504302 URL: https://svnweb.freebsd.org/changeset/ports/504302 Log: Update to 0.58 - Reformat pkg-descr - Take maintainership Changes: https://metacpan.org/changes/distribution/Proc-ProcessTable Modified: head/devel/p5-Proc-ProcessTable/Makefile head/devel/p5-Proc-ProcessTable/distinfo head/devel/p5-Proc-ProcessTable/pkg-descr head/devel/p5-Proc-ProcessTable/pkg-plist Modified: head/devel/p5-Proc-ProcessTable/Makefile ============================================================================== --- head/devel/p5-Proc-ProcessTable/Makefile Sun Jun 16 10:35:03 2019 (r504301) +++ head/devel/p5-Proc-ProcessTable/Makefile Sun Jun 16 10:35:08 2019 (r504302) @@ -2,34 +2,30 @@ # $FreeBSD$ PORTNAME= Proc-ProcessTable -PORTVERSION= 0.56 +PORTVERSION= 0.58 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:JWB PKGNAMEPREFIX= p5- -MAINTAINER= perl@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Perl interface to the unix process table LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +USES= perl5 +USE_PERL5= configure + OPTIONS_DEFINE= DOCS PORTSCOUT= limit:^[0-9\.]*$$ -USES= perl5 shebangfix -USE_PERL5= configure - -PORTDOCS= README README.freebsd-kvm README.freebsd-procfs - -SHEBANG_FILES= example.pl - post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Proc/ProcessTable/ProcessTable.so post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} - (cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}) + ${INSTALL_DATA} ${WRKSRC}/README ${WRKSRC}/README.freebsd-* ${STAGEDIR}${DOCSDIR} .include Modified: head/devel/p5-Proc-ProcessTable/distinfo ============================================================================== --- head/devel/p5-Proc-ProcessTable/distinfo Sun Jun 16 10:35:03 2019 (r504301) +++ head/devel/p5-Proc-ProcessTable/distinfo Sun Jun 16 10:35:08 2019 (r504302) @@ -1,3 +1,3 @@ -TIMESTAMP = 1549638068 -SHA256 (Proc-ProcessTable-0.56.tar.gz) = 99fb8fd11e4e438399dd362d95b5b2073f1f340e9b3a7f04e76b6c7428170660 -SIZE (Proc-ProcessTable-0.56.tar.gz) = 72944 +TIMESTAMP = 1560671643 +SHA256 (Proc-ProcessTable-0.58.tar.gz) = 8d4215d9c60b42e646c525ebfc63f65386dc0a014fbcc33baf43078668b68260 +SIZE (Proc-ProcessTable-0.58.tar.gz) = 75853 Modified: head/devel/p5-Proc-ProcessTable/pkg-descr ============================================================================== --- head/devel/p5-Proc-ProcessTable/pkg-descr Sun Jun 16 10:35:03 2019 (r504301) +++ head/devel/p5-Proc-ProcessTable/pkg-descr Sun Jun 16 10:35:08 2019 (r504302) @@ -1,23 +1,22 @@ -This module is a first crack at providing a consistent interface to -Unix (and maybe other multitasking OS's) process table information. -The impetus for this came about with my frustration at having to parse -the output of various systems' ps commands to check whether specific -processes were running on different boxes at a large mixed Unix site. -The output format of ps was different on each OS, and sometimes -changed with each new release of an OS. Also, running a ps subprocess -from within a perl or shell script and parsing the output was not a +This module is a first crack at providing a consistent interface to Unix (and +maybe other multitasking OS's) process table information. The impetus for this +came about with my frustration at having to parse the output of various systems' +ps commands to check whether specific processes were running on different boxes +at a larged mixed Unix site. The output format of ps was different on each OS, +and sometimes changed with each new release of an OS. Also, running a ps +subprocess from within a perl or shell script and parsing the output was not a very efficient or aesthetic way to do things. With this module, you can do things like this: - # kill memory pigs - use Proc::ProcessTable; + # kill memory pigs + use Proc::ProcessTable; - $t = new Proc::ProcessTable; - foreach $p ( @{$t->table} ){ - if( $p->pctmem > 95 ){ - $p->kill(9); - } + my $t = Proc::ProcessTable->new; + foreach my $p ( @{$t->table} ) { + if( $p->pctmem > 95 ){ + $p->kill(9); } + } WWW: https://metacpan.org/release/Proc-ProcessTable Modified: head/devel/p5-Proc-ProcessTable/pkg-plist ============================================================================== --- head/devel/p5-Proc-ProcessTable/pkg-plist Sun Jun 16 10:35:03 2019 (r504301) +++ head/devel/p5-Proc-ProcessTable/pkg-plist Sun Jun 16 10:35:08 2019 (r504302) @@ -2,10 +2,12 @@ %%SITE_ARCH%%/Proc/Killfam.pm %%SITE_ARCH%%/Proc/ProcessTable.pm %%SITE_ARCH%%/Proc/ProcessTable/Process.pm -%%SITE_ARCH%%/Proc/example.pl %%SITE_ARCH%%/auto/Proc/ProcessTable/Process/autosplit.ix %%SITE_ARCH%%/auto/Proc/ProcessTable/ProcessTable.so %%PERL5_MAN3%%/Proc::Killall.3.gz %%PERL5_MAN3%%/Proc::Killfam.3.gz %%PERL5_MAN3%%/Proc::ProcessTable.3.gz %%PERL5_MAN3%%/Proc::ProcessTable::Process.3.gz +%%PORTDOCS%%%%DOCSDIR%%/README +%%PORTDOCS%%%%DOCSDIR%%/README.freebsd-kvm +%%PORTDOCS%%%%DOCSDIR%%/README.freebsd-procfs From owner-svn-ports-all@freebsd.org Sun Jun 16 10:35:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7239A15BA3F5; Sun, 16 Jun 2019 10:35:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1235571E3F; Sun, 16 Jun 2019 10:35:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B506DD444; Sun, 16 Jun 2019 10:35:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAZFdd083248; Sun, 16 Jun 2019 10:35:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAZFlQ083247; Sun, 16 Jun 2019 10:35:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161035.x5GAZFlQ083247@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:35:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504303 - head/databases/py-marshmallow-sqlalchemy X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/databases/py-marshmallow-sqlalchemy X-SVN-Commit-Revision: 504303 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1235571E3F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:35:18 -0000 Author: sunpoet Date: Sun Jun 16 10:35:15 2019 New Revision: 504303 URL: https://svnweb.freebsd.org/changeset/ports/504303 Log: Update to 0.16.4 Changes: https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/dev/CHANGELOG.rst Modified: head/databases/py-marshmallow-sqlalchemy/Makefile head/databases/py-marshmallow-sqlalchemy/distinfo Modified: head/databases/py-marshmallow-sqlalchemy/Makefile ============================================================================== --- head/databases/py-marshmallow-sqlalchemy/Makefile Sun Jun 16 10:35:08 2019 (r504302) +++ head/databases/py-marshmallow-sqlalchemy/Makefile Sun Jun 16 10:35:15 2019 (r504303) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= marshmallow-sqlalchemy -PORTVERSION= 0.16.3 +PORTVERSION= 0.16.4 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/databases/py-marshmallow-sqlalchemy/distinfo ============================================================================== --- head/databases/py-marshmallow-sqlalchemy/distinfo Sun Jun 16 10:35:08 2019 (r504302) +++ head/databases/py-marshmallow-sqlalchemy/distinfo Sun Jun 16 10:35:15 2019 (r504303) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557679659 -SHA256 (marshmallow-sqlalchemy-0.16.3.tar.gz) = 24d85d85262dad2efdfc26ec4064e5914e6958312310cb9018d3a19247a1f763 -SIZE (marshmallow-sqlalchemy-0.16.3.tar.gz) = 44984 +TIMESTAMP = 1560671645 +SHA256 (marshmallow-sqlalchemy-0.16.4.tar.gz) = 9b258becf07afa8499512bb35e37fbb54b625d6b70677165764996ba5a88e9f9 +SIZE (marshmallow-sqlalchemy-0.16.4.tar.gz) = 45109 From owner-svn-ports-all@freebsd.org Sun Jun 16 10:35:25 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 62CF715BA435; Sun, 16 Jun 2019 10:35:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 03F4D71F07; Sun, 16 Jun 2019 10:35:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AAC2CD445; Sun, 16 Jun 2019 10:35:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAZLJq083357; Sun, 16 Jun 2019 10:35:21 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAZLgU083356; Sun, 16 Jun 2019 10:35:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161035.x5GAZLgU083356@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:35:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504304 - head/devel/py-msgpack05 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-msgpack05 X-SVN-Commit-Revision: 504304 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 03F4D71F07 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:35:25 -0000 Author: sunpoet Date: Sun Jun 16 10:35:21 2019 New Revision: 504304 URL: https://svnweb.freebsd.org/changeset/ports/504304 Log: Mark DEPRECATED and set EXPIRATION_DATE to 2019-06-30 Modified: head/devel/py-msgpack05/Makefile Modified: head/devel/py-msgpack05/Makefile ============================================================================== --- head/devel/py-msgpack05/Makefile Sun Jun 16 10:35:15 2019 (r504303) +++ head/devel/py-msgpack05/Makefile Sun Jun 16 10:35:21 2019 (r504304) @@ -14,6 +14,9 @@ COMMENT= MessagePack (de)serializer for Python LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/COPYING +DEPRECATED= Use devel/py-msgpack instead +EXPIRATION_DATE=2019-06-30 + USES= python USE_PYTHON= autoplist distutils From owner-svn-ports-all@freebsd.org Sun Jun 16 10:35:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 022EC15BA461; Sun, 16 Jun 2019 10:35:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 976FE71F9F; Sun, 16 Jun 2019 10:35:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2BABBD446; Sun, 16 Jun 2019 10:35:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAZR7C083482; Sun, 16 Jun 2019 10:35:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAZQx3083480; Sun, 16 Jun 2019 10:35:26 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161035.x5GAZQx3083480@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:35:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504305 - head/www/py-arxiv X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/py-arxiv X-SVN-Commit-Revision: 504305 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 976FE71F9F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:35:31 -0000 Author: sunpoet Date: Sun Jun 16 10:35:26 2019 New Revision: 504305 URL: https://svnweb.freebsd.org/changeset/ports/504305 Log: Update to 0.5.0 Changes: https://github.com/lukasschwab/arxiv.py/releases https://github.com/lukasschwab/arxiv.py/commits/master Modified: head/www/py-arxiv/Makefile head/www/py-arxiv/distinfo Modified: head/www/py-arxiv/Makefile ============================================================================== --- head/www/py-arxiv/Makefile Sun Jun 16 10:35:21 2019 (r504304) +++ head/www/py-arxiv/Makefile Sun Jun 16 10:35:26 2019 (r504305) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= arxiv -PORTVERSION= 0.4.0 +PORTVERSION= 0.5.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-arxiv/distinfo ============================================================================== --- head/www/py-arxiv/distinfo Sun Jun 16 10:35:21 2019 (r504304) +++ head/www/py-arxiv/distinfo Sun Jun 16 10:35:26 2019 (r504305) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558292567 -SHA256 (arxiv-0.4.0.tar.gz) = 0d625d05a274804776d2182f0caa4a56129b067f2e8e9f9ef191451779727a80 -SIZE (arxiv-0.4.0.tar.gz) = 5246 +TIMESTAMP = 1560671647 +SHA256 (arxiv-0.5.0.tar.gz) = 07493207ea3f9998dd67f34389947f8d1228e178ca315239c693231ddf5a339c +SIZE (arxiv-0.5.0.tar.gz) = 5279 From owner-svn-ports-all@freebsd.org Sun Jun 16 10:35:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67CA715BA497; Sun, 16 Jun 2019 10:35:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F3C0D72014; Sun, 16 Jun 2019 10:35:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 91CBED447; Sun, 16 Jun 2019 10:35:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAZWFA083608; Sun, 16 Jun 2019 10:35:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAZWMs083606; Sun, 16 Jun 2019 10:35:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161035.x5GAZWMs083606@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:35:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504306 - head/devel/rubygem-tty-platform X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-tty-platform X-SVN-Commit-Revision: 504306 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F3C0D72014 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:35:35 -0000 Author: sunpoet Date: Sun Jun 16 10:35:31 2019 New Revision: 504306 URL: https://svnweb.freebsd.org/changeset/ports/504306 Log: Update to 0.2.1 Changes: https://github.com/piotrmurach/tty-platform/blob/master/CHANGELOG.md Modified: head/devel/rubygem-tty-platform/Makefile head/devel/rubygem-tty-platform/distinfo Modified: head/devel/rubygem-tty-platform/Makefile ============================================================================== --- head/devel/rubygem-tty-platform/Makefile Sun Jun 16 10:35:26 2019 (r504305) +++ head/devel/rubygem-tty-platform/Makefile Sun Jun 16 10:35:31 2019 (r504306) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tty-platform -PORTVERSION= 0.2.0 +PORTVERSION= 0.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-tty-platform/distinfo ============================================================================== --- head/devel/rubygem-tty-platform/distinfo Sun Jun 16 10:35:26 2019 (r504305) +++ head/devel/rubygem-tty-platform/distinfo Sun Jun 16 10:35:31 2019 (r504306) @@ -1,3 +1,3 @@ -TIMESTAMP = 1543863745 -SHA256 (rubygem/tty-platform-0.2.0.gem) = 15d548df3d138a25c5cdc7662e85ba7918fdd66daff35a3f868e4b4a9e22d044 -SIZE (rubygem/tty-platform-0.2.0.gem) = 10240 +TIMESTAMP = 1560671649 +SHA256 (rubygem/tty-platform-0.2.1.gem) = 88d5a45e2a98ee025a438e2a681e04c00155e9e2b68f0a8d1cdc9a899277faca +SIZE (rubygem/tty-platform-0.2.1.gem) = 10240 From owner-svn-ports-all@freebsd.org Sun Jun 16 10:35:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F60615BA4D6; Sun, 16 Jun 2019 10:35:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7220F720C8; Sun, 16 Jun 2019 10:35:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 87D7BD448; Sun, 16 Jun 2019 10:35:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAZcJZ083733; Sun, 16 Jun 2019 10:35:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAZc1x083732; Sun, 16 Jun 2019 10:35:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161035.x5GAZc1x083732@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:35:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504307 - head/security/rubygem-airbrussh X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/rubygem-airbrussh X-SVN-Commit-Revision: 504307 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7220F720C8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:35:42 -0000 Author: sunpoet Date: Sun Jun 16 10:35:37 2019 New Revision: 504307 URL: https://svnweb.freebsd.org/changeset/ports/504307 Log: Update to 1.3.2 Changes: https://github.com/mattbrictson/airbrussh/releases Modified: head/security/rubygem-airbrussh/Makefile head/security/rubygem-airbrussh/distinfo Modified: head/security/rubygem-airbrussh/Makefile ============================================================================== --- head/security/rubygem-airbrussh/Makefile Sun Jun 16 10:35:31 2019 (r504306) +++ head/security/rubygem-airbrussh/Makefile Sun Jun 16 10:35:37 2019 (r504307) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= airbrussh -PORTVERSION= 1.3.1 +PORTVERSION= 1.3.2 CATEGORIES= security rubygems MASTER_SITES= RG Modified: head/security/rubygem-airbrussh/distinfo ============================================================================== --- head/security/rubygem-airbrussh/distinfo Sun Jun 16 10:35:31 2019 (r504306) +++ head/security/rubygem-airbrussh/distinfo Sun Jun 16 10:35:37 2019 (r504307) @@ -1,3 +1,3 @@ -TIMESTAMP = 1541430788 -SHA256 (rubygem/airbrussh-1.3.1.gem) = 7168f7c2b7461e7e192bd7fa9257fbdd32d200c68e90ac7ea584379a35300ed2 -SIZE (rubygem/airbrussh-1.3.1.gem) = 22528 +TIMESTAMP = 1560671651 +SHA256 (rubygem/airbrussh-1.3.2.gem) = 87ffbc6403e77d97e8448cc915a19aa967111c35ed15d5cae7fa30c3b235a436 +SIZE (rubygem/airbrussh-1.3.2.gem) = 22528 From owner-svn-ports-all@freebsd.org Sun Jun 16 10:35:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9D18515BA51B; Sun, 16 Jun 2019 10:35:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0A1E77217B; Sun, 16 Jun 2019 10:35:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 86705D449; Sun, 16 Jun 2019 10:35:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAZiqU083870; Sun, 16 Jun 2019 10:35:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAZilt083869; Sun, 16 Jun 2019 10:35:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161035.x5GAZilt083869@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:35:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504308 - in head/security/rubygem-omniauth: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/security/rubygem-omniauth: . files X-SVN-Commit-Revision: 504308 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0A1E77217B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:35:48 -0000 Author: sunpoet Date: Sun Jun 16 10:35:43 2019 New Revision: 504308 URL: https://svnweb.freebsd.org/changeset/ports/504308 Log: Update to 1.9.0 Changes: https://github.com/omniauth/omniauth/commits/master Deleted: head/security/rubygem-omniauth/files/ Modified: head/security/rubygem-omniauth/Makefile head/security/rubygem-omniauth/distinfo Modified: head/security/rubygem-omniauth/Makefile ============================================================================== --- head/security/rubygem-omniauth/Makefile Sun Jun 16 10:35:37 2019 (r504307) +++ head/security/rubygem-omniauth/Makefile Sun Jun 16 10:35:43 2019 (r504308) @@ -1,12 +1,11 @@ # $FreeBSD$ PORTNAME= omniauth -PORTVERSION= 1.8.1 -PORTREVISION= 1 +PORTVERSION= 1.9.0 CATEGORIES= security rubygems MASTER_SITES= RG -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generalized Rack framework for multiple-provider authentication LICENSE= MIT @@ -15,8 +14,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-hashie>=3.4.6:devel/rubygem-hashie \ rubygem-rack>=1.6.2:www/rubygem-rack -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes .include Modified: head/security/rubygem-omniauth/distinfo ============================================================================== --- head/security/rubygem-omniauth/distinfo Sun Jun 16 10:35:37 2019 (r504307) +++ head/security/rubygem-omniauth/distinfo Sun Jun 16 10:35:43 2019 (r504308) @@ -1,3 +1,3 @@ -TIMESTAMP = 1514652809 -SHA256 (rubygem/omniauth-1.8.1.gem) = afbee730b76811af34884fc82b372ca9ecac631225a19707ddcdd58331c958d7 -SIZE (rubygem/omniauth-1.8.1.gem) = 20992 +TIMESTAMP = 1560671653 +SHA256 (rubygem/omniauth-1.9.0.gem) = 3dacae5daf73081b36553dc88ad16cc05cfea0ec2770f7d02cc02f74738026dc +SIZE (rubygem/omniauth-1.9.0.gem) = 20992 From owner-svn-ports-all@freebsd.org Sun Jun 16 10:35:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BEAFE15BA555; Sun, 16 Jun 2019 10:35:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 55C7B72213; Sun, 16 Jun 2019 10:35:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B7449D44A; Sun, 16 Jun 2019 10:35:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAZnPX083974; Sun, 16 Jun 2019 10:35:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAZntD083973; Sun, 16 Jun 2019 10:35:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161035.x5GAZntD083973@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:35:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504309 - head/devel/p5-DateTime-Calendar-Christian X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Calendar-Christian X-SVN-Commit-Revision: 504309 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 55C7B72213 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:35:53 -0000 Author: sunpoet Date: Sun Jun 16 10:35:49 2019 New Revision: 504309 URL: https://svnweb.freebsd.org/changeset/ports/504309 Log: Update WWW Modified: head/devel/p5-DateTime-Calendar-Christian/pkg-descr Modified: head/devel/p5-DateTime-Calendar-Christian/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Calendar-Christian/pkg-descr Sun Jun 16 10:35:43 2019 (r504308) +++ head/devel/p5-DateTime-Calendar-Christian/pkg-descr Sun Jun 16 10:35:49 2019 (r504309) @@ -3,4 +3,4 @@ Gregorian calendar. See DateTime for information about most of the methods. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Calendar-Christian From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6C06015BA597; Sun, 16 Jun 2019 10:36:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ED6CF722D4; Sun, 16 Jun 2019 10:35:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 58BC7D44B; Sun, 16 Jun 2019 10:35:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAZt3R084079; Sun, 16 Jun 2019 10:35:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAZtSC084078; Sun, 16 Jun 2019 10:35:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161035.x5GAZtSC084078@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:35:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504310 - head/devel/p5-DateTime-Calendar-Hebrew X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Calendar-Hebrew X-SVN-Commit-Revision: 504310 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: ED6CF722D4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:00 -0000 Author: sunpoet Date: Sun Jun 16 10:35:54 2019 New Revision: 504310 URL: https://svnweb.freebsd.org/changeset/ports/504310 Log: Update WWW Modified: head/devel/p5-DateTime-Calendar-Hebrew/pkg-descr Modified: head/devel/p5-DateTime-Calendar-Hebrew/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Calendar-Hebrew/pkg-descr Sun Jun 16 10:35:49 2019 (r504309) +++ head/devel/p5-DateTime-Calendar-Hebrew/pkg-descr Sun Jun 16 10:35:54 2019 (r504310) @@ -8,4 +8,4 @@ in the bibliography for more info). The Torah also man holidays must occur in certain seasons. Seasons are solar, so a calendar that can work with lunar & solar events is needed. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Calendar-Hebrew From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8C4915BA5DA; Sun, 16 Jun 2019 10:36:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5CE3072351; Sun, 16 Jun 2019 10:36:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5514AD44C; Sun, 16 Jun 2019 10:36:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAa0ZR084191; Sun, 16 Jun 2019 10:36:00 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAa07C084190; Sun, 16 Jun 2019 10:36:00 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161036.x5GAa07C084190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:36:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504311 - head/devel/p5-DateTime-Calendar-Julian X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Calendar-Julian X-SVN-Commit-Revision: 504311 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5CE3072351 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:04 -0000 Author: sunpoet Date: Sun Jun 16 10:35:59 2019 New Revision: 504311 URL: https://svnweb.freebsd.org/changeset/ports/504311 Log: Update WWW Modified: head/devel/p5-DateTime-Calendar-Julian/pkg-descr Modified: head/devel/p5-DateTime-Calendar-Julian/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Calendar-Julian/pkg-descr Sun Jun 16 10:35:54 2019 (r504310) +++ head/devel/p5-DateTime-Calendar-Julian/pkg-descr Sun Jun 16 10:35:59 2019 (r504311) @@ -2,4 +2,4 @@ DateTime::Calendar::Julian implements the Julian Calen implements all methods of DateTime; see the DateTime(3) man page for all methods. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Calendar-Julian From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E0EC15BA62E; Sun, 16 Jun 2019 10:36:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DAA5D723F1; Sun, 16 Jun 2019 10:36:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8C847D44D; Sun, 16 Jun 2019 10:36:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAa5BB084296; Sun, 16 Jun 2019 10:36:05 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAa5Ip084295; Sun, 16 Jun 2019 10:36:05 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161036.x5GAa5Ip084295@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:36:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504312 - head/devel/p5-DateTime-Calendar-Mayan X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Calendar-Mayan X-SVN-Commit-Revision: 504312 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DAA5D723F1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:10 -0000 Author: sunpoet Date: Sun Jun 16 10:36:05 2019 New Revision: 504312 URL: https://svnweb.freebsd.org/changeset/ports/504312 Log: Update WWW Modified: head/devel/p5-DateTime-Calendar-Mayan/pkg-descr Modified: head/devel/p5-DateTime-Calendar-Mayan/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Calendar-Mayan/pkg-descr Sun Jun 16 10:35:59 2019 (r504311) +++ head/devel/p5-DateTime-Calendar-Mayan/pkg-descr Sun Jun 16 10:36:05 2019 (r504312) @@ -2,4 +2,4 @@ An implementation of the Mayan Long Count, Haab, and T defined in "Calendrical Calculations The Millennium Edition". Supplemented by "Frequently Asked Questions about Calendars". -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Calendar-Mayan From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B76D615BA66C; Sun, 16 Jun 2019 10:36:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3D7D9724D8; Sun, 16 Jun 2019 10:36:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 466BAD44E; Sun, 16 Jun 2019 10:36:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAaBm2084409; Sun, 16 Jun 2019 10:36:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAaBPZ084408; Sun, 16 Jun 2019 10:36:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161036.x5GAaBPZ084408@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:36:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504313 - head/devel/p5-DateTime-Calendar-Pataphysical X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Calendar-Pataphysical X-SVN-Commit-Revision: 504313 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3D7D9724D8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:18 -0000 Author: sunpoet Date: Sun Jun 16 10:36:10 2019 New Revision: 504313 URL: https://svnweb.freebsd.org/changeset/ports/504313 Log: Update WWW Modified: head/devel/p5-DateTime-Calendar-Pataphysical/pkg-descr Modified: head/devel/p5-DateTime-Calendar-Pataphysical/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Calendar-Pataphysical/pkg-descr Sun Jun 16 10:36:05 2019 (r504312) +++ head/devel/p5-DateTime-Calendar-Pataphysical/pkg-descr Sun Jun 16 10:36:10 2019 (r504313) @@ -3,4 +3,4 @@ calendar. Each year in this calendar contains 13 month regularity makes this a convenient alternative for the irregular Gregorian calendar. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Calendar-Pataphysical From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:21 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D55515BA691; Sun, 16 Jun 2019 10:36:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D249972528; Sun, 16 Jun 2019 10:36:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6FC29D44F; Sun, 16 Jun 2019 10:36:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAaGBW084512; Sun, 16 Jun 2019 10:36:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAaGkG084511; Sun, 16 Jun 2019 10:36:16 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161036.x5GAaGkG084511@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:36:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504314 - head/devel/p5-DateTime-Event-Cron X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Event-Cron X-SVN-Commit-Revision: 504314 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D249972528 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:21 -0000 Author: sunpoet Date: Sun Jun 16 10:36:15 2019 New Revision: 504314 URL: https://svnweb.freebsd.org/changeset/ports/504314 Log: Update WWW Modified: head/devel/p5-DateTime-Event-Cron/pkg-descr Modified: head/devel/p5-DateTime-Event-Cron/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Event-Cron/pkg-descr Sun Jun 16 10:36:10 2019 (r504313) +++ head/devel/p5-DateTime-Event-Cron/pkg-descr Sun Jun 16 10:36:15 2019 (r504314) @@ -1,4 +1,4 @@ DateTime::Event::Cron generated DateTime events or DateTime::Set objects based on crontab-style entries. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Event-Cron From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4597A15BA6D3; Sun, 16 Jun 2019 10:36:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BFE1A725C8; Sun, 16 Jun 2019 10:36:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 54347D450; Sun, 16 Jun 2019 10:36:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAaM6g084615; Sun, 16 Jun 2019 10:36:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAaMVr084614; Sun, 16 Jun 2019 10:36:22 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161036.x5GAaMVr084614@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:36:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504315 - head/devel/p5-DateTime-Event-Easter X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Event-Easter X-SVN-Commit-Revision: 504315 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BFE1A725C8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:27 -0000 Author: sunpoet Date: Sun Jun 16 10:36:21 2019 New Revision: 504315 URL: https://svnweb.freebsd.org/changeset/ports/504315 Log: Update WWW Modified: head/devel/p5-DateTime-Event-Easter/pkg-descr Modified: head/devel/p5-DateTime-Event-Easter/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Event-Easter/pkg-descr Sun Jun 16 10:36:15 2019 (r504314) +++ head/devel/p5-DateTime-Event-Easter/pkg-descr Sun Jun 16 10:36:21 2019 (r504315) @@ -8,4 +8,4 @@ and Easter Sunday. If that's not enough, the module wi so you can get the date for Pentecost (49 days after Easter Sunday) by passing 49. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Event-Easter From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92F9A15BA708; Sun, 16 Jun 2019 10:36:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2574272678; Sun, 16 Jun 2019 10:36:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7D3FAD451; Sun, 16 Jun 2019 10:36:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAaR3T084718; Sun, 16 Jun 2019 10:36:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAaRbw084717; Sun, 16 Jun 2019 10:36:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161036.x5GAaRbw084717@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:36:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504316 - head/devel/p5-DateTime-Event-ICal X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Event-ICal X-SVN-Commit-Revision: 504316 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2574272678 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:33 -0000 Author: sunpoet Date: Sun Jun 16 10:36:27 2019 New Revision: 504316 URL: https://svnweb.freebsd.org/changeset/ports/504316 Log: Update WWW Modified: head/devel/p5-DateTime-Event-ICal/pkg-descr Modified: head/devel/p5-DateTime-Event-ICal/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Event-ICal/pkg-descr Sun Jun 16 10:36:21 2019 (r504315) +++ head/devel/p5-DateTime-Event-ICal/pkg-descr Sun Jun 16 10:36:27 2019 (r504316) @@ -1,4 +1,4 @@ This module provides convenience methods that let you easily create DateTime::Set objects for rfc2445 style recurrences. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Event-ICal From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4A9915BA73C; Sun, 16 Jun 2019 10:36:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3BF36726F7; Sun, 16 Jun 2019 10:36:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1FDD3D452; Sun, 16 Jun 2019 10:36:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAaWNe084821; Sun, 16 Jun 2019 10:36:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAaW9b084820; Sun, 16 Jun 2019 10:36:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161036.x5GAaW9b084820@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:36:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504317 - head/devel/p5-DateTime-Event-NameDay X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Event-NameDay X-SVN-Commit-Revision: 504317 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3BF36726F7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:37 -0000 Author: sunpoet Date: Sun Jun 16 10:36:32 2019 New Revision: 504317 URL: https://svnweb.freebsd.org/changeset/ports/504317 Log: Update WWW Modified: head/devel/p5-DateTime-Event-NameDay/pkg-descr Modified: head/devel/p5-DateTime-Event-NameDay/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Event-NameDay/pkg-descr Sun Jun 16 10:36:27 2019 (r504316) +++ head/devel/p5-DateTime-Event-NameDay/pkg-descr Sun Jun 16 10:36:32 2019 (r504317) @@ -2,4 +2,4 @@ DateTime::Event::NameDay is a class that knows the nam countries. In some countries a person's nameday is more important than their birthday and gifts may be exchanged. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Event-NameDay From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0CB4315BA76B; Sun, 16 Jun 2019 10:36:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7004D72789; Sun, 16 Jun 2019 10:36:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 62EFAD453; Sun, 16 Jun 2019 10:36:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAac5r084921; Sun, 16 Jun 2019 10:36:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAacf0084920; Sun, 16 Jun 2019 10:36:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161036.x5GAacf0084920@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:36:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504318 - head/devel/p5-DateTime-Event-Random X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Event-Random X-SVN-Commit-Revision: 504318 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7004D72789 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:43 -0000 Author: sunpoet Date: Sun Jun 16 10:36:37 2019 New Revision: 504318 URL: https://svnweb.freebsd.org/changeset/ports/504318 Log: Update WWW Modified: head/devel/p5-DateTime-Event-Random/pkg-descr Modified: head/devel/p5-DateTime-Event-Random/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Event-Random/pkg-descr Sun Jun 16 10:36:32 2019 (r504317) +++ head/devel/p5-DateTime-Event-Random/pkg-descr Sun Jun 16 10:36:37 2019 (r504318) @@ -1,4 +1,4 @@ This module provides convenience methods that let you easily create DateTime::Set, DateTime, or DateTime::Duration objects with random values. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Event-Random From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8DC6A15BA79A; Sun, 16 Jun 2019 10:36:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 154FD7280B; Sun, 16 Jun 2019 10:36:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5B79DD454; Sun, 16 Jun 2019 10:36:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAahOo085024; Sun, 16 Jun 2019 10:36:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAahOi085023; Sun, 16 Jun 2019 10:36:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161036.x5GAahOi085023@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:36:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504319 - head/devel/p5-DateTime-Event-Recurrence X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Event-Recurrence X-SVN-Commit-Revision: 504319 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 154FD7280B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:47 -0000 Author: sunpoet Date: Sun Jun 16 10:36:42 2019 New Revision: 504319 URL: https://svnweb.freebsd.org/changeset/ports/504319 Log: Update WWW Modified: head/devel/p5-DateTime-Event-Recurrence/pkg-descr Modified: head/devel/p5-DateTime-Event-Recurrence/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Event-Recurrence/pkg-descr Sun Jun 16 10:36:37 2019 (r504318) +++ head/devel/p5-DateTime-Event-Recurrence/pkg-descr Sun Jun 16 10:36:42 2019 (r504319) @@ -1,4 +1,4 @@ This module provides convenience methods that let you easily create DateTime::Set objects for common recurrences, such as "monthly" or "daily". -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Event-Recurrence From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 39C5D15BA7E6; Sun, 16 Jun 2019 10:36:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CB715728C4; Sun, 16 Jun 2019 10:36:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 35740D455; Sun, 16 Jun 2019 10:36:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAanvL085127; Sun, 16 Jun 2019 10:36:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAanaR085126; Sun, 16 Jun 2019 10:36:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161036.x5GAanaR085126@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:36:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504320 - head/devel/p5-DateTime-Fiscal-Year X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Fiscal-Year X-SVN-Commit-Revision: 504320 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CB715728C4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:54 -0000 Author: sunpoet Date: Sun Jun 16 10:36:48 2019 New Revision: 504320 URL: https://svnweb.freebsd.org/changeset/ports/504320 Log: Update WWW Modified: head/devel/p5-DateTime-Fiscal-Year/pkg-descr Modified: head/devel/p5-DateTime-Fiscal-Year/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Fiscal-Year/pkg-descr Sun Jun 16 10:36:42 2019 (r504319) +++ head/devel/p5-DateTime-Fiscal-Year/pkg-descr Sun Jun 16 10:36:48 2019 (r504320) @@ -6,4 +6,4 @@ based on the Gregorian calendar. Using other DT calend results, but the behavior is unpredictable for calendars that have more than 365 or 366 days. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Fiscal-Year From owner-svn-ports-all@freebsd.org Sun Jun 16 10:36:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BBCA915BA83B; Sun, 16 Jun 2019 10:36:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 65C9B7296A; Sun, 16 Jun 2019 10:36:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3A26ED456; Sun, 16 Jun 2019 10:36:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAatd1085230; Sun, 16 Jun 2019 10:36:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAatg1085229; Sun, 16 Jun 2019 10:36:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161036.x5GAatg1085229@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:36:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504321 - head/devel/p5-DateTime-Format-Baby X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Format-Baby X-SVN-Commit-Revision: 504321 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 65C9B7296A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:36:59 -0000 Author: sunpoet Date: Sun Jun 16 10:36:54 2019 New Revision: 504321 URL: https://svnweb.freebsd.org/changeset/ports/504321 Log: Update WWW Modified: head/devel/p5-DateTime-Format-Baby/pkg-descr Modified: head/devel/p5-DateTime-Format-Baby/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Format-Baby/pkg-descr Sun Jun 16 10:36:48 2019 (r504320) +++ head/devel/p5-DateTime-Format-Baby/pkg-descr Sun Jun 16 10:36:54 2019 (r504321) @@ -1,3 +1,3 @@ This module understands baby talk in a variety of languages. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Format-Baby From owner-svn-ports-all@freebsd.org Sun Jun 16 10:37:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CFD0415BA86F; Sun, 16 Jun 2019 10:37:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6B796729F5; Sun, 16 Jun 2019 10:37:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 588F3D457; Sun, 16 Jun 2019 10:37:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAb0nc085337; Sun, 16 Jun 2019 10:37:00 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAb0Hq085336; Sun, 16 Jun 2019 10:37:00 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161037.x5GAb0Hq085336@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:37:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504322 - head/devel/p5-DateTime-Format-Bork X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Format-Bork X-SVN-Commit-Revision: 504322 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6B796729F5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:37:05 -0000 Author: sunpoet Date: Sun Jun 16 10:36:59 2019 New Revision: 504322 URL: https://svnweb.freebsd.org/changeset/ports/504322 Log: Update WWW Modified: head/devel/p5-DateTime-Format-Bork/pkg-descr Modified: head/devel/p5-DateTime-Format-Bork/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Format-Bork/pkg-descr Sun Jun 16 10:36:54 2019 (r504321) +++ head/devel/p5-DateTime-Format-Bork/pkg-descr Sun Jun 16 10:36:59 2019 (r504322) @@ -1,3 +1,3 @@ Bork debork, bork bork bork. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Format-Bork From owner-svn-ports-all@freebsd.org Sun Jun 16 10:37:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A4CF15BA8A4; Sun, 16 Jun 2019 10:37:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 006EC72A9B; Sun, 16 Jun 2019 10:37:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 38F82D458; Sun, 16 Jun 2019 10:37:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAb6wc085440; Sun, 16 Jun 2019 10:37:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAb60j085439; Sun, 16 Jun 2019 10:37:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161037.x5GAb60j085439@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:37:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504323 - head/devel/p5-DateTime-Format-Duration X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Format-Duration X-SVN-Commit-Revision: 504323 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 006EC72A9B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:37:10 -0000 Author: sunpoet Date: Sun Jun 16 10:37:05 2019 New Revision: 504323 URL: https://svnweb.freebsd.org/changeset/ports/504323 Log: Update WWW Modified: head/devel/p5-DateTime-Format-Duration/pkg-descr Modified: head/devel/p5-DateTime-Format-Duration/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Format-Duration/pkg-descr Sun Jun 16 10:36:59 2019 (r504322) +++ head/devel/p5-DateTime-Format-Duration/pkg-descr Sun Jun 16 10:37:05 2019 (r504323) @@ -1,4 +1,4 @@ This module formats and parses DateTime::Duration objects as well as other durations representations. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Format-Duration From owner-svn-ports-all@freebsd.org Sun Jun 16 10:37:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0DE6515BA8EE; Sun, 16 Jun 2019 10:37:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5392772B55; Sun, 16 Jun 2019 10:37:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 18D89D459; Sun, 16 Jun 2019 10:37:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAbAxe085543; Sun, 16 Jun 2019 10:37:10 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAbAfE085542; Sun, 16 Jun 2019 10:37:10 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161037.x5GAbAfE085542@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:37:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504324 - head/devel/p5-DateTime-Format-Excel X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Format-Excel X-SVN-Commit-Revision: 504324 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5392772B55 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:37:17 -0000 Author: sunpoet Date: Sun Jun 16 10:37:10 2019 New Revision: 504324 URL: https://svnweb.freebsd.org/changeset/ports/504324 Log: Update WWW Modified: head/devel/p5-DateTime-Format-Excel/pkg-descr Modified: head/devel/p5-DateTime-Format-Excel/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Format-Excel/pkg-descr Sun Jun 16 10:37:05 2019 (r504323) +++ head/devel/p5-DateTime-Format-Excel/pkg-descr Sun Jun 16 10:37:10 2019 (r504324) @@ -3,4 +3,4 @@ module allows you to convert between a few of the Exce DateTime objects, which can then be further converted via any of the other DateTime::Format::* modules, or just with DateTime's methods. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Format-Excel From owner-svn-ports-all@freebsd.org Sun Jun 16 10:37:21 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9A9515BA923; Sun, 16 Jun 2019 10:37:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 404B872BDA; Sun, 16 Jun 2019 10:37:21 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 23C57D45A; Sun, 16 Jun 2019 10:37:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAbG34085644; Sun, 16 Jun 2019 10:37:16 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAbF06085642; Sun, 16 Jun 2019 10:37:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161037.x5GAbF06085642@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:37:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504325 - head/devel/p5-DateTime-Format-IBeat X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Format-IBeat X-SVN-Commit-Revision: 504325 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 404B872BDA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:37:21 -0000 Author: sunpoet Date: Sun Jun 16 10:37:15 2019 New Revision: 504325 URL: https://svnweb.freebsd.org/changeset/ports/504325 Log: Update WWW Modified: head/devel/p5-DateTime-Format-IBeat/pkg-descr Modified: head/devel/p5-DateTime-Format-IBeat/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Format-IBeat/pkg-descr Sun Jun 16 10:37:10 2019 (r504324) +++ head/devel/p5-DateTime-Format-IBeat/pkg-descr Sun Jun 16 10:37:15 2019 (r504325) @@ -16,4 +16,4 @@ International Headquarters on Jakob-Staempfli Street, it is the same time all over the world, be it night or day, the era of time zones has disappeared. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/EMARTIN/DateTime-Format-IBeat-0.161 From owner-svn-ports-all@freebsd.org Sun Jun 16 10:37:25 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AEF2515BA955; Sun, 16 Jun 2019 10:37:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3200472C44; Sun, 16 Jun 2019 10:37:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E8AABD45B; Sun, 16 Jun 2019 10:37:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAbKD7085746; Sun, 16 Jun 2019 10:37:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAbK2U085745; Sun, 16 Jun 2019 10:37:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161037.x5GAbK2U085745@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:37:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504326 - head/devel/p5-DateTime-Format-ICal X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Format-ICal X-SVN-Commit-Revision: 504326 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3200472C44 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:37:25 -0000 Author: sunpoet Date: Sun Jun 16 10:37:20 2019 New Revision: 504326 URL: https://svnweb.freebsd.org/changeset/ports/504326 Log: Update WWW Modified: head/devel/p5-DateTime-Format-ICal/pkg-descr Modified: head/devel/p5-DateTime-Format-ICal/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Format-ICal/pkg-descr Sun Jun 16 10:37:15 2019 (r504325) +++ head/devel/p5-DateTime-Format-ICal/pkg-descr Sun Jun 16 10:37:20 2019 (r504326) @@ -2,4 +2,4 @@ This module understands the ICal date/time and duratio RFC 2445. It can be used to parse these formats in order to create the appropriate objects. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Format-ICal From owner-svn-ports-all@freebsd.org Sun Jun 16 10:37:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5FE2E15BA98F; Sun, 16 Jun 2019 10:37:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EC5C772CC9; Sun, 16 Jun 2019 10:37:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EC1E7D45C; Sun, 16 Jun 2019 10:37:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAbPNB085849; Sun, 16 Jun 2019 10:37:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAbPoM085848; Sun, 16 Jun 2019 10:37:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161037.x5GAbPoM085848@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:37:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504327 - head/devel/p5-DateTime-Format-Mail X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Format-Mail X-SVN-Commit-Revision: 504327 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EC5C772CC9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:37:30 -0000 Author: sunpoet Date: Sun Jun 16 10:37:25 2019 New Revision: 504327 URL: https://svnweb.freebsd.org/changeset/ports/504327 Log: Update WWW Modified: head/devel/p5-DateTime-Format-Mail/pkg-descr Modified: head/devel/p5-DateTime-Format-Mail/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Format-Mail/pkg-descr Sun Jun 16 10:37:20 2019 (r504326) +++ head/devel/p5-DateTime-Format-Mail/pkg-descr Sun Jun 16 10:37:25 2019 (r504327) @@ -2,4 +2,4 @@ RFC2822 introduces a slightly different format of date RFC822. The main correction is that the format is more limited, and thus easier to parse. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Format-Mail From owner-svn-ports-all@freebsd.org Sun Jun 16 10:37:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3BD1E15BA9C7; Sun, 16 Jun 2019 10:37:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B26A372D4E; Sun, 16 Jun 2019 10:37:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 96E7ED45D; Sun, 16 Jun 2019 10:37:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAbVZw085952; Sun, 16 Jun 2019 10:37:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAbVGa085951; Sun, 16 Jun 2019 10:37:31 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161037.x5GAbVGa085951@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:37:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504328 - head/devel/p5-DateTime-Format-MySQL X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Format-MySQL X-SVN-Commit-Revision: 504328 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B26A372D4E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:37:35 -0000 Author: sunpoet Date: Sun Jun 16 10:37:31 2019 New Revision: 504328 URL: https://svnweb.freebsd.org/changeset/ports/504328 Log: Update WWW Modified: head/devel/p5-DateTime-Format-MySQL/pkg-descr Modified: head/devel/p5-DateTime-Format-MySQL/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Format-MySQL/pkg-descr Sun Jun 16 10:37:25 2019 (r504327) +++ head/devel/p5-DateTime-Format-MySQL/pkg-descr Sun Jun 16 10:37:31 2019 (r504328) @@ -3,4 +3,4 @@ and TIMESTAMP data types. It can be used to parse thes create DateTime objects, and it can take a DateTime object and produce a string representing it in the MySQL format. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Format-MySQL From owner-svn-ports-all@freebsd.org Sun Jun 16 10:37:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F1D315BAA0E; Sun, 16 Jun 2019 10:37:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C65B872EC7; Sun, 16 Jun 2019 10:37:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B3167D45F; Sun, 16 Jun 2019 10:37:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAbi3j086158; Sun, 16 Jun 2019 10:37:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAbi11086157; Sun, 16 Jun 2019 10:37:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161037.x5GAbi11086157@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:37:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504330 - head/devel/p5-DateTime-Format-Pg X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Format-Pg X-SVN-Commit-Revision: 504330 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C65B872EC7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:37:48 -0000 Author: sunpoet Date: Sun Jun 16 10:37:44 2019 New Revision: 504330 URL: https://svnweb.freebsd.org/changeset/ports/504330 Log: Update WWW Modified: head/devel/p5-DateTime-Format-Pg/pkg-descr Modified: head/devel/p5-DateTime-Format-Pg/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Format-Pg/pkg-descr Sun Jun 16 10:37:39 2019 (r504329) +++ head/devel/p5-DateTime-Format-Pg/pkg-descr Sun Jun 16 10:37:44 2019 (r504330) @@ -4,5 +4,5 @@ order to create DateTime or DateTime::Duration objects DateTime or DateTime::Duration object and produce a string representing it in a format accepted by PostgreSQL. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Format-Pg WWW: https://metacpan.org/release/DateTime-Format-Pg From owner-svn-ports-all@freebsd.org Sun Jun 16 10:37:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42D8715BAA3F; Sun, 16 Jun 2019 10:37:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 08A8372F29; Sun, 16 Jun 2019 10:37:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B8018D45E; Sun, 16 Jun 2019 10:37:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAbdBQ086055; Sun, 16 Jun 2019 10:37:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAbdn1086054; Sun, 16 Jun 2019 10:37:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161037.x5GAbdn1086054@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:37:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504329 - head/devel/p5-DateTime-Format-Natural X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Format-Natural X-SVN-Commit-Revision: 504329 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 08A8372F29 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:37:51 -0000 Author: sunpoet Date: Sun Jun 16 10:37:39 2019 New Revision: 504329 URL: https://svnweb.freebsd.org/changeset/ports/504329 Log: Update WWW Modified: head/devel/p5-DateTime-Format-Natural/pkg-descr Modified: head/devel/p5-DateTime-Format-Natural/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Format-Natural/pkg-descr Sun Jun 16 10:37:31 2019 (r504328) +++ head/devel/p5-DateTime-Format-Natural/pkg-descr Sun Jun 16 10:37:39 2019 (r504329) @@ -1,4 +1,4 @@ DateTime::Format::Natural takes a string with a human readable date/time and creates a machine readable one by applying natural parsing logic. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Format-Natural From owner-svn-ports-all@freebsd.org Sun Jun 16 10:37:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A126015BAA7E; Sun, 16 Jun 2019 10:37:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3BA4672F7C; Sun, 16 Jun 2019 10:37:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 91525D460; Sun, 16 Jun 2019 10:37:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAboq7086261; Sun, 16 Jun 2019 10:37:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAboTO086260; Sun, 16 Jun 2019 10:37:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161037.x5GAboTO086260@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:37:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504331 - head/devel/p5-DateTime-Format-W3CDTF X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Format-W3CDTF X-SVN-Commit-Revision: 504331 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3BA4672F7C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:37:54 -0000 Author: sunpoet Date: Sun Jun 16 10:37:50 2019 New Revision: 504331 URL: https://svnweb.freebsd.org/changeset/ports/504331 Log: Update WWW Modified: head/devel/p5-DateTime-Format-W3CDTF/pkg-descr Modified: head/devel/p5-DateTime-Format-W3CDTF/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Format-W3CDTF/pkg-descr Sun Jun 16 10:37:44 2019 (r504330) +++ head/devel/p5-DateTime-Format-W3CDTF/pkg-descr Sun Jun 16 10:37:50 2019 (r504331) @@ -2,4 +2,4 @@ This module understands the W3CDTF date/time format, a defined at http://www.w3.org/TR/NOTE-datetime. This format as the native date format of RSS 1.0. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Format-W3CDTF From owner-svn-ports-all@freebsd.org Sun Jun 16 10:38:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24A6A15BAABF; Sun, 16 Jun 2019 10:38:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B89A373019; Sun, 16 Jun 2019 10:37:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 04F66D461; Sun, 16 Jun 2019 10:37:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAbt8c086364; Sun, 16 Jun 2019 10:37:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAbthE086363; Sun, 16 Jun 2019 10:37:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161037.x5GAbthE086363@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:37:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504332 - head/devel/p5-DateTime-Functions X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Functions X-SVN-Commit-Revision: 504332 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B89A373019 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:38:00 -0000 Author: sunpoet Date: Sun Jun 16 10:37:55 2019 New Revision: 504332 URL: https://svnweb.freebsd.org/changeset/ports/504332 Log: Update WWW Modified: head/devel/p5-DateTime-Functions/pkg-descr Modified: head/devel/p5-DateTime-Functions/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Functions/pkg-descr Sun Jun 16 10:37:50 2019 (r504331) +++ head/devel/p5-DateTime-Functions/pkg-descr Sun Jun 16 10:37:55 2019 (r504332) @@ -4,4 +4,4 @@ namespace. Unless otherwise noted, all methods correspond to the same-named class method in DateTime. Please see DateTime for which parameters are supported. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Functions From owner-svn-ports-all@freebsd.org Sun Jun 16 10:38:12 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F23D615BAB13; Sun, 16 Jun 2019 10:38:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8B3A87316B; Sun, 16 Jun 2019 10:38:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CA8E9D463; Sun, 16 Jun 2019 10:38:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAc8Hc086574; Sun, 16 Jun 2019 10:38:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAc8OE086573; Sun, 16 Jun 2019 10:38:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161038.x5GAc8OE086573@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:38:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504334 - head/devel/p5-DateTime-Incomplete X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Incomplete X-SVN-Commit-Revision: 504334 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8B3A87316B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:38:12 -0000 Author: sunpoet Date: Sun Jun 16 10:38:08 2019 New Revision: 504334 URL: https://svnweb.freebsd.org/changeset/ports/504334 Log: Update WWW Modified: head/devel/p5-DateTime-Incomplete/pkg-descr Modified: head/devel/p5-DateTime-Incomplete/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Incomplete/pkg-descr Sun Jun 16 10:38:01 2019 (r504333) +++ head/devel/p5-DateTime-Incomplete/pkg-descr Sun Jun 16 10:38:08 2019 (r504334) @@ -3,4 +3,4 @@ DateTime::Incomplete is a class for representing parti These are actually encountered relatively frequently. For example, a birthday is commonly given as a month and day, without a year. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Incomplete From owner-svn-ports-all@freebsd.org Sun Jun 16 10:38:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3F8E15BAB3E; Sun, 16 Jun 2019 10:38:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 508A8731D3; Sun, 16 Jun 2019 10:38:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 63155D462; Sun, 16 Jun 2019 10:38:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAc2vS086471; Sun, 16 Jun 2019 10:38:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAc25h086470; Sun, 16 Jun 2019 10:38:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161038.x5GAc25h086470@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:38:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504333 - head/devel/p5-DateTime-HiRes X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-HiRes X-SVN-Commit-Revision: 504333 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 508A8731D3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:38:16 -0000 Author: sunpoet Date: Sun Jun 16 10:38:01 2019 New Revision: 504333 URL: https://svnweb.freebsd.org/changeset/ports/504333 Log: Update WWW Modified: head/devel/p5-DateTime-HiRes/pkg-descr Modified: head/devel/p5-DateTime-HiRes/pkg-descr ============================================================================== --- head/devel/p5-DateTime-HiRes/pkg-descr Sun Jun 16 10:37:55 2019 (r504332) +++ head/devel/p5-DateTime-HiRes/pkg-descr Sun Jun 16 10:38:01 2019 (r504333) @@ -1,4 +1,4 @@ This module enables you to generate DateTime objects that represent the current time with sub-second resolution. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-HiRes From owner-svn-ports-all@freebsd.org Sun Jun 16 10:38:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67CCF15BAB6B; Sun, 16 Jun 2019 10:38:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F242073251; Sun, 16 Jun 2019 10:38:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7D689D464; Sun, 16 Jun 2019 10:38:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAcESV086677; Sun, 16 Jun 2019 10:38:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAcEb4086676; Sun, 16 Jun 2019 10:38:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161038.x5GAcEb4086676@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:38:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504335 - head/devel/p5-DateTime-Precise X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-Precise X-SVN-Commit-Revision: 504335 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F242073251 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:38:20 -0000 Author: sunpoet Date: Sun Jun 16 10:38:14 2019 New Revision: 504335 URL: https://svnweb.freebsd.org/changeset/ports/504335 Log: Update WWW Modified: head/devel/p5-DateTime-Precise/pkg-descr Modified: head/devel/p5-DateTime-Precise/pkg-descr ============================================================================== --- head/devel/p5-DateTime-Precise/pkg-descr Sun Jun 16 10:38:08 2019 (r504334) +++ head/devel/p5-DateTime-Precise/pkg-descr Sun Jun 16 10:38:14 2019 (r504335) @@ -8,4 +8,4 @@ comparison, strict ordering) are preserved, and elemen human-legibility are added. The library handles fractional seconds and some date/time manipulations used for the Global Positioning Satellite system. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-Precise From owner-svn-ports-all@freebsd.org Sun Jun 16 10:38:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 763E015BAB92; Sun, 16 Jun 2019 10:38:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 126C5732A0; Sun, 16 Jun 2019 10:38:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F2538D466; Sun, 16 Jun 2019 10:38:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAcJ4f086780; Sun, 16 Jun 2019 10:38:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAcJpR086779; Sun, 16 Jun 2019 10:38:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161038.x5GAcJpR086779@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:38:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504336 - head/devel/p5-DateTime-TimeZone-Alias X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DateTime-TimeZone-Alias X-SVN-Commit-Revision: 504336 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 126C5732A0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:38:23 -0000 Author: sunpoet Date: Sun Jun 16 10:38:19 2019 New Revision: 504336 URL: https://svnweb.freebsd.org/changeset/ports/504336 Log: Update WWW Modified: head/devel/p5-DateTime-TimeZone-Alias/pkg-descr Modified: head/devel/p5-DateTime-TimeZone-Alias/pkg-descr ============================================================================== --- head/devel/p5-DateTime-TimeZone-Alias/pkg-descr Sun Jun 16 10:38:14 2019 (r504335) +++ head/devel/p5-DateTime-TimeZone-Alias/pkg-descr Sun Jun 16 10:38:19 2019 (r504336) @@ -1,4 +1,4 @@ Creates and destroys aliases for DateTime timezones. This module violates the encapsulation of the DateTime internals. User _Beware_. -WWW: http://datetime.perl.org/ +WWW: https://metacpan.org/release/DateTime-TimeZone-Alias From owner-svn-ports-all@freebsd.org Sun Jun 16 10:38:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D67115BABC4; Sun, 16 Jun 2019 10:38:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C3DF37334A; Sun, 16 Jun 2019 10:38:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3A7CCD467; Sun, 16 Jun 2019 10:38:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAcQIf086905; Sun, 16 Jun 2019 10:38:26 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAcPk6086903; Sun, 16 Jun 2019 10:38:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161038.x5GAcPk6086903@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:38:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504337 - head/devel/p5-Test-Strict X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-Test-Strict X-SVN-Commit-Revision: 504337 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C3DF37334A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:38:29 -0000 Author: sunpoet Date: Sun Jun 16 10:38:25 2019 New Revision: 504337 URL: https://svnweb.freebsd.org/changeset/ports/504337 Log: Update to 0.51 Changes: https://metacpan.org/changes/distribution/Test-Strict Modified: head/devel/p5-Test-Strict/Makefile head/devel/p5-Test-Strict/distinfo Modified: head/devel/p5-Test-Strict/Makefile ============================================================================== --- head/devel/p5-Test-Strict/Makefile Sun Jun 16 10:38:19 2019 (r504336) +++ head/devel/p5-Test-Strict/Makefile Sun Jun 16 10:38:25 2019 (r504337) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-Strict -PORTVERSION= 0.50 +PORTVERSION= 0.51 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Test-Strict/distinfo ============================================================================== --- head/devel/p5-Test-Strict/distinfo Sun Jun 16 10:38:19 2019 (r504336) +++ head/devel/p5-Test-Strict/distinfo Sun Jun 16 10:38:25 2019 (r504337) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560604475 -SHA256 (Test-Strict-0.50.tar.gz) = 4fc5ac5a5537036843345e7317cb2d8d8092f18b321ced4ef9c21f132339f72f -SIZE (Test-Strict-0.50.tar.gz) = 20827 +TIMESTAMP = 1560671655 +SHA256 (Test-Strict-0.51.tar.gz) = 571ae5fe3857265da553e8d80ea1c8b319e61bb6af488611532ca852f5c32032 +SIZE (Test-Strict-0.51.tar.gz) = 20848 From owner-svn-ports-all@freebsd.org Sun Jun 16 10:38:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1232A15BAC1C; Sun, 16 Jun 2019 10:38:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F0F2733F1; Sun, 16 Jun 2019 10:38:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 073F3D468; Sun, 16 Jun 2019 10:38:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAcUXw087014; Sun, 16 Jun 2019 10:38:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAcUTZ087013; Sun, 16 Jun 2019 10:38:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161038.x5GAcUTZ087013@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:38:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504338 - head/security/rubygem-omniauth-multipassword X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/rubygem-omniauth-multipassword X-SVN-Commit-Revision: 504338 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9F0F2733F1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:38:35 -0000 Author: sunpoet Date: Sun Jun 16 10:38:30 2019 New Revision: 504338 URL: https://svnweb.freebsd.org/changeset/ports/504338 Log: Take maintainership Modified: head/security/rubygem-omniauth-multipassword/Makefile Modified: head/security/rubygem-omniauth-multipassword/Makefile ============================================================================== --- head/security/rubygem-omniauth-multipassword/Makefile Sun Jun 16 10:38:25 2019 (r504337) +++ head/security/rubygem-omniauth-multipassword/Makefile Sun Jun 16 10:38:30 2019 (r504338) @@ -5,7 +5,7 @@ PORTVERSION= 0.4.2 CATEGORIES= security rubygems MASTER_SITES= RG -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= OmniAuth strategy using different passwort strategies LICENSE= MIT @@ -13,9 +13,9 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-omniauth>=1.0:security/rubygem-omniauth -NO_ARCH= yes - -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes .include From owner-svn-ports-all@freebsd.org Sun Jun 16 10:38:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3FCB415BAC4A; Sun, 16 Jun 2019 10:38:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CFCDF73466; Sun, 16 Jun 2019 10:38:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AE057D469; Sun, 16 Jun 2019 10:38:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAcah3087139; Sun, 16 Jun 2019 10:38:36 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAcaKX087138; Sun, 16 Jun 2019 10:38:36 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161038.x5GAcaKX087138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:38:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504339 - head/devel/ruby-build X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/ruby-build X-SVN-Commit-Revision: 504339 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CFCDF73466 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:38:39 -0000 Author: sunpoet Date: Sun Jun 16 10:38:36 2019 New Revision: 504339 URL: https://svnweb.freebsd.org/changeset/ports/504339 Log: Update to 20190615 Changes: https://github.com/rbenv/ruby-build/releases Modified: head/devel/ruby-build/Makefile head/devel/ruby-build/distinfo Modified: head/devel/ruby-build/Makefile ============================================================================== --- head/devel/ruby-build/Makefile Sun Jun 16 10:38:30 2019 (r504338) +++ head/devel/ruby-build/Makefile Sun Jun 16 10:38:36 2019 (r504339) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ruby-build -PORTVERSION= 20190423 +PORTVERSION= 20190615 DISTVERSIONPREFIX= v CATEGORIES= devel ruby Modified: head/devel/ruby-build/distinfo ============================================================================== --- head/devel/ruby-build/distinfo Sun Jun 16 10:38:30 2019 (r504338) +++ head/devel/ruby-build/distinfo Sun Jun 16 10:38:36 2019 (r504339) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555996930 -SHA256 (rbenv-ruby-build-v20190423_GH0.tar.gz) = 39f3ab0a8c37e2d177504563fc361bfadea73e8f632295228bc132e634b7792c -SIZE (rbenv-ruby-build-v20190423_GH0.tar.gz) = 62153 +TIMESTAMP = 1560671657 +SHA256 (rbenv-ruby-build-v20190615_GH0.tar.gz) = 7bcb706f43fd2562a62df79f3f01d71c6a1509fac91c8f14ff9e174dc9d99361 +SIZE (rbenv-ruby-build-v20190615_GH0.tar.gz) = 62489 From owner-svn-ports-all@freebsd.org Sun Jun 16 10:38:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 486C615BAC7C; Sun, 16 Jun 2019 10:38:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D9A4A73512; Sun, 16 Jun 2019 10:38:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EA4E8D46A; Sun, 16 Jun 2019 10:38:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GAcgiE087242; Sun, 16 Jun 2019 10:38:42 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GAcg7m087241; Sun, 16 Jun 2019 10:38:42 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906161038.x5GAcg7m087241@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 16 Jun 2019 10:38:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504340 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 504340 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D9A4A73512 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 10:38:45 -0000 Author: sunpoet Date: Sun Jun 16 10:38:42 2019 New Revision: 504340 URL: https://svnweb.freebsd.org/changeset/ports/504340 Log: Document GraphicsMagick vulnerability Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Jun 16 10:38:36 2019 (r504339) +++ head/security/vuxml/vuln.xml Sun Jun 16 10:38:42 2019 (r504340) @@ -58,6 +58,31 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + GraphicsMagick -- multiple vulnerabilities + + + GraphicsMagick + 1.3.32,1 + + + + +

GraphicsMagick News:

+
+

Read "Security Fixes:" section for details.

+
+ +
+ + http://www.graphicsmagick.org/NEWS.html + + + 2019-06-15 + 2019-06-16 + +
+ chromium -- use after free From owner-svn-ports-all@freebsd.org Sun Jun 16 12:05:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0629815BD31F; Sun, 16 Jun 2019 12:05:39 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A0C3A76CA3; Sun, 16 Jun 2019 12:05:38 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 78D9C17C55; Sun, 16 Jun 2019 12:05:38 +0000 (UTC) From: Jan Beich To: Yuri Victorovich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504283 - in head/devel: . folly folly/files References: <201906160843.x5G8hNVq023775@repo.freebsd.org> Date: Sun, 16 Jun 2019 14:05:34 +0200 In-Reply-To: <201906160843.x5G8hNVq023775@repo.freebsd.org> (Yuri Victorovich's message of "Sun, 16 Jun 2019 08:43:23 +0000 (UTC)") Message-ID: <4l4p-3fch-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: A0C3A76CA3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.92 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-0.99)[-0.994,0]; NEURAL_HAM_SHORT(-0.92)[-0.923,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 12:05:39 -0000 Yuri Victorovich writes: > +--- folly/portability/SysSyscall.h.orig 2019-06-16 07:32:11 UTC > ++++ folly/portability/SysSyscall.h > +@@ -21,6 +21,8 @@ > + > + #if defined(__APPLE__) > + #define FOLLY_SYS_gettid SYS_thread_selfid > ++#elif defined(__FreeBSD__) > ++#define FOLLY_SYS_gettid SYS_thr_self > + #elif defined(SYS_gettid) > + #define FOLLY_SYS_gettid SYS_gettid > + #else Looks bogus. SYS_thr_self requires 1 argument compared to SYS_gettid. While getOSThreadID() within folly can be fixed I'm not sure about consumers in the wild. $ cat a.c #include #include #include #include int main() { printf("%d\n", pthread_getthreadid_np()); printf("%d\n", syscall(SYS_thr_self)); return 0; } $ cc a.c -pthread $ ./a.out 101666 0 --- folly/system/ThreadId.h.orig 2019-06-09 22:23:35 UTC +++ folly/system/ThreadId.h @@ -23,6 +23,12 @@ #include #include +#if defined(__DragonFly__) || defined(__FreeBSD__) +#include +#elif defined(__NetBSD__) +#include +#endif + namespace folly { /** @@ -82,6 +88,12 @@ inline uint64_t getOSThreadID() { uint64_t tid; pthread_threadid_np(nullptr, &tid); return tid; +#elif __DragonFly__ + return lwp_gettid(); +#elif __FreeBSD__ + return pthread_getthreadid_np(); +#elif __NetBSD__ + return _lwp_self(); #elif _WIN32 return uint64_t(GetCurrentThreadId()); #else From owner-svn-ports-all@freebsd.org Sun Jun 16 12:56:12 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3CC815BE66F; Sun, 16 Jun 2019 12:56:12 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6A06780436; Sun, 16 Jun 2019 12:56:12 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3EFE7EC83; Sun, 16 Jun 2019 12:56:12 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GCuCgo059853; Sun, 16 Jun 2019 12:56:12 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GCuBNl059851; Sun, 16 Jun 2019 12:56:11 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201906161256.x5GCuBNl059851@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Sun, 16 Jun 2019 12:56:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504341 - in head/lang: cmucl cmucl-extra X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: in head/lang: cmucl cmucl-extra X-SVN-Commit-Revision: 504341 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6A06780436 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.97)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 12:56:12 -0000 Author: koobs Date: Sun Jun 16 12:56:11 2019 New Revision: 504341 URL: https://svnweb.freebsd.org/changeset/ports/504341 Log: lang/cmucl{-extra}: Reset MAINTAINER PR: 238604 Submitted by: Lorenzo Salvadore (maintainer) Modified: head/lang/cmucl-extra/Makefile head/lang/cmucl/Makefile Modified: head/lang/cmucl-extra/Makefile ============================================================================== --- head/lang/cmucl-extra/Makefile Sun Jun 16 10:38:42 2019 (r504340) +++ head/lang/cmucl-extra/Makefile Sun Jun 16 12:56:11 2019 (r504341) @@ -10,7 +10,7 @@ MASTER_SITES= https://common-lisp.net/project/cmucl/do http://www.rgrjr.com/cmucl/downloads/release/${DISTVERSION}/ DISTNAME= cmucl-${DISTVERSION}-x86-FreeBSD.extra -MAINTAINER= phascolarctos@protonmail.ch +MAINTAINER= ports@FreeBSD.org COMMENT= Optional extras for the CMU implementation of Common Lisp LICENSE= PD Modified: head/lang/cmucl/Makefile ============================================================================== --- head/lang/cmucl/Makefile Sun Jun 16 10:38:42 2019 (r504340) +++ head/lang/cmucl/Makefile Sun Jun 16 12:56:11 2019 (r504341) @@ -10,7 +10,7 @@ MASTER_SITES= https://common-lisp.net/project/cmucl/do http://www.rgrjr.com/cmucl/downloads/release/${DISTVERSION}/ DISTNAME= ${PORTNAME}-${DISTVERSION}-x86-FreeBSD -MAINTAINER= phascolarctos@protonmail.ch +MAINTAINER= ports@FreeBSD.org COMMENT= CMU implementation of Common Lisp LICENSE= PD From owner-svn-ports-all@freebsd.org Sun Jun 16 13:14:09 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A47B015BEC78; Sun, 16 Jun 2019 13:14:09 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4845F80CE4; Sun, 16 Jun 2019 13:14:09 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 066EEEFD0; Sun, 16 Jun 2019 13:14:09 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GDE8eE070374; Sun, 16 Jun 2019 13:14:08 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GDE8DN070371; Sun, 16 Jun 2019 13:14:08 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201906161314.x5GDE8DN070371@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 16 Jun 2019 13:14:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504342 - in head/graphics: . pecl-vips X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head/graphics: . pecl-vips X-SVN-Commit-Revision: 504342 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4845F80CE4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 13:14:09 -0000 Author: rene Date: Sun Jun 16 13:14:08 2019 New Revision: 504342 URL: https://svnweb.freebsd.org/changeset/ports/504342 Log: Low-level PHP binding for libvips This extension lets you use the libvips image processing library from PHP 7. It is intentionally very low-level: modules such as https://github.com/libvips/php-vips try to layer a nice API on top of this. WWW: https://github.com/libvips/php-vips-ext PR: 238609 Submitted by: punkt.de Hosting Team Event: Berlin hackathon 2019 Added: head/graphics/pecl-vips/ head/graphics/pecl-vips/Makefile (contents, props changed) head/graphics/pecl-vips/distinfo (contents, props changed) head/graphics/pecl-vips/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Jun 16 12:56:11 2019 (r504341) +++ head/graphics/Makefile Sun Jun 16 13:14:08 2019 (r504342) @@ -735,6 +735,7 @@ SUBDIR += pecl-imagick SUBDIR += pecl-imagick-im7 SUBDIR += pecl-qrencode + SUBDIR += pecl-vips SUBDIR += pecomato SUBDIR += pencil2d SUBDIR += peps Added: head/graphics/pecl-vips/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pecl-vips/Makefile Sun Jun 16 13:14:08 2019 (r504342) @@ -0,0 +1,18 @@ +# Created by: punkt.de Hosting Team +# $FreeBSD$ + +PORTNAME= vips +PORTVERSION= 1.0.9 +CATEGORIES= graphics + +MAINTAINER= mops@punkt.de +COMMENT= PHP bindings for libvips + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +LIB_DEPENDS= libvips.so:graphics/vips + +USES= php:pecl pkgconfig + +.include Added: head/graphics/pecl-vips/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pecl-vips/distinfo Sun Jun 16 13:14:08 2019 (r504342) @@ -0,0 +1,3 @@ +TIMESTAMP = 1557409772 +SHA256 (PECL/vips-1.0.9.tgz) = aec14fe6b059dbc919ba37364ef4cec0cfd674c6360a23ad689f07cc0c29ec14 +SIZE (PECL/vips-1.0.9.tgz) = 558066 Added: head/graphics/pecl-vips/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/pecl-vips/pkg-descr Sun Jun 16 13:14:08 2019 (r504342) @@ -0,0 +1,8 @@ +Low-level PHP binding for libvips + +This extension lets you use the libvips image processing library +from PHP 7. It is intentionally very low-level: modules such as +https://github.com/libvips/php-vips try to layer a nice API on +top of this. + +WWW: https://github.com/libvips/php-vips-ext From owner-svn-ports-all@freebsd.org Sun Jun 16 13:17:28 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 82CCD15BECC8; Sun, 16 Jun 2019 13:17:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 15CD280DDC; Sun, 16 Jun 2019 13:17:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ED579EFD2; Sun, 16 Jun 2019 13:17:27 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GDHRGQ070640; Sun, 16 Jun 2019 13:17:27 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GDHRL2070638; Sun, 16 Jun 2019 13:17:27 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906161317.x5GDHRL2070638@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 16 Jun 2019 13:17:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504343 - in head: . games games/freeciv-sounds X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head: . games games/freeciv-sounds X-SVN-Commit-Revision: 504343 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 15CD280DDC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 13:17:28 -0000 Author: tobik Date: Sun Jun 16 13:17:27 2019 New Revision: 504343 URL: https://svnweb.freebsd.org/changeset/ports/504343 Log: Remove games/freeciv-sounds It is unused and games/freeciv already comes with the same sound files. Deleted: head/games/freeciv-sounds/ Modified: head/MOVED head/games/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Sun Jun 16 13:14:08 2019 (r504342) +++ head/MOVED Sun Jun 16 13:17:27 2019 (r504343) @@ -12802,3 +12802,4 @@ databases/dbconnect||2019-06-16|Has expired: Abandonwa databases/postgis21|databases/postgis23|2019-06-16|Has expired: Upstream no longer maintained databases/postgis20|databases/postgis23|2019-06-16|Has expired: Upstream no longer maintained databases/postgis22|databases/postgis23|2019-06-16|Has expired: Upstream no longer maintained +games/freeciv-sounds||2019-06-16|Unused and already part of games/freeciv Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Sun Jun 16 13:14:08 2019 (r504342) +++ head/games/Makefile Sun Jun 16 13:17:27 2019 (r504343) @@ -289,7 +289,6 @@ SUBDIR += freecell-solver SUBDIR += freeciv SUBDIR += freeciv-nox11 - SUBDIR += freeciv-sounds SUBDIR += freecol SUBDIR += freedink SUBDIR += freedink-data From owner-svn-ports-all@freebsd.org Sun Jun 16 13:54:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4D38315BFC07; Sun, 16 Jun 2019 13:54:33 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E1AB9822F9; Sun, 16 Jun 2019 13:54:32 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BA90CF67D; Sun, 16 Jun 2019 13:54:32 +0000 (UTC) (envelope-from adridg@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GDsWPU091198; Sun, 16 Jun 2019 13:54:32 GMT (envelope-from adridg@FreeBSD.org) Received: (from adridg@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GDsWvo091197; Sun, 16 Jun 2019 13:54:32 GMT (envelope-from adridg@FreeBSD.org) Message-Id: <201906161354.x5GDsWvo091197@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: adridg set sender to adridg@FreeBSD.org using -f From: Adriaan de Groot Date: Sun, 16 Jun 2019 13:54:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504344 - head/net-im/quaternion X-SVN-Group: ports-head X-SVN-Commit-Author: adridg X-SVN-Commit-Paths: head/net-im/quaternion X-SVN-Commit-Revision: 504344 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E1AB9822F9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 13:54:33 -0000 Author: adridg Date: Sun Jun 16 13:54:32 2019 New Revision: 504344 URL: https://svnweb.freebsd.org/changeset/ports/504344 Log: Missing run-depends in net-im/quaternion - Without the QQC packages, Quaternion runs but doesn't show anything in the central chat area. You won't notice that in a KDE Plasma environment, where those packages are installed as dependencies of other things, but in a bare xmonad environment, it matters. Reported by: nassai (on Matrix) Modified: head/net-im/quaternion/Makefile Modified: head/net-im/quaternion/Makefile ============================================================================== --- head/net-im/quaternion/Makefile Sun Jun 16 13:17:27 2019 (r504343) +++ head/net-im/quaternion/Makefile Sun Jun 16 13:54:32 2019 (r504344) @@ -3,7 +3,7 @@ PORTNAME= Quaternion DISTVERSION= 0.0.9.4 DISTVERSIONSUFFIX= c -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-im MAINTAINER= adridg@FreeBSD.org @@ -20,6 +20,7 @@ USES= cmake compiler:c++17-lang gettext-runtime gnome localbase:ldflags qt:5 tar:xz USE_GNOME= glib20 USE_QT= core dbus declarative gui multimedia network widgets \ + quickcontrols_run quickcontrols2_run \ buildtools_build linguist_build qmake_build USE_GITHUB= yes From owner-svn-ports-all@freebsd.org Sun Jun 16 14:01:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 68CEB15BFE7F; Sun, 16 Jun 2019 14:01:29 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D6FC8824D0; Sun, 16 Jun 2019 14:01:28 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B0BA0F6C0; Sun, 16 Jun 2019 14:01:28 +0000 (UTC) (envelope-from nobutaka@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GE1So2092680; Sun, 16 Jun 2019 14:01:28 GMT (envelope-from nobutaka@FreeBSD.org) Received: (from nobutaka@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GE1RZp092673; Sun, 16 Jun 2019 14:01:27 GMT (envelope-from nobutaka@FreeBSD.org) Message-Id: <201906161401.x5GE1RZp092673@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: nobutaka set sender to nobutaka@FreeBSD.org using -f From: MANTANI Nobutaka Date: Sun, 16 Jun 2019 14:01:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504345 - in head/japanese/cmigemo: . files X-SVN-Group: ports-head X-SVN-Commit-Author: nobutaka X-SVN-Commit-Paths: in head/japanese/cmigemo: . files X-SVN-Commit-Revision: 504345 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D6FC8824D0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.956,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 14:01:29 -0000 Author: nobutaka Date: Sun Jun 16 14:01:26 2019 New Revision: 504345 URL: https://svnweb.freebsd.org/changeset/ports/504345 Log: - Set MAKE_JOBS_UNSAFE=yes to fix build on powerpc64. [*] - Regenerate patches with make makepatch. - Pet portlint. PR: 238304 [*] Submitted by: pkubaj [*] Modified: head/japanese/cmigemo/Makefile head/japanese/cmigemo/files/patch-Makefile head/japanese/cmigemo/files/patch-compile_Make_gcc.mak head/japanese/cmigemo/files/patch-compile_config.mk.in head/japanese/cmigemo/files/patch-compile_unix.mak head/japanese/cmigemo/files/patch-configure head/japanese/cmigemo/files/patch-dict_dict.mak Modified: head/japanese/cmigemo/Makefile ============================================================================== --- head/japanese/cmigemo/Makefile Sun Jun 16 13:54:32 2019 (r504344) +++ head/japanese/cmigemo/Makefile Sun Jun 16 14:01:26 2019 (r504345) @@ -6,10 +6,6 @@ PORTVERSION= 20141220 CATEGORIES= japanese DIST_SUBDIR= cmigemo -USE_GITHUB= yes -GH_ACCOUNT= koron -GH_TAGNAME= 6a1c438 - MAINTAINER= nobutaka@FreeBSD.org COMMENT= C implementation of Migemo Japanese incremental search tool @@ -26,15 +22,20 @@ INSTALL_TARGET= gcc-install DOCSDIR= ${PREFIX}/share/doc/ja/${PORTNAME} PORTDOCS= README_j.txt - .endif -OPTIONS_DEFINE+=DOCS -USES+= gmake BUILD_DEPENDS= ${LOCALBASE}/bin/nkf:japanese/nkf +USES+= gmake +USE_GITHUB= yes +GH_ACCOUNT= koron +GH_TAGNAME= 6a1c438 + +OPTIONS_DEFINE+=DOCS + HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${STAGEDIR}${PREFIX} +MAKE_JOBS_UNSAFE= yes .include Modified: head/japanese/cmigemo/files/patch-Makefile ============================================================================== --- head/japanese/cmigemo/files/patch-Makefile Sun Jun 16 13:54:32 2019 (r504344) +++ head/japanese/cmigemo/files/patch-Makefile Sun Jun 16 14:01:26 2019 (r504345) @@ -1,6 +1,6 @@ ---- Makefile.orig 2011-02-27 19:45:40.000000000 +0900 -+++ Makefile 2011-08-21 14:21:53.000000000 +0900 -@@ -52,8 +52,14 @@ +--- Makefile.orig 2014-12-20 04:39:02 UTC ++++ Makefile +@@ -69,8 +69,14 @@ gcc-rel: $(MAKE) -f compile/Make_gcc.mak gcc-dict: $(MAKE) -f compile/Make_gcc.mak dictionary Modified: head/japanese/cmigemo/files/patch-compile_Make_gcc.mak ============================================================================== --- head/japanese/cmigemo/files/patch-compile_Make_gcc.mak Sun Jun 16 13:54:32 2019 (r504344) +++ head/japanese/cmigemo/files/patch-compile_Make_gcc.mak Sun Jun 16 14:01:26 2019 (r504345) @@ -1,6 +1,6 @@ ---- compile/Make_gcc.mak.orig 2011-08-17 00:54:29.000000000 +0900 -+++ compile/Make_gcc.mak 2011-08-17 00:56:14.000000000 +0900 -@@ -44,4 +44,7 @@ +--- compile/Make_gcc.mak.orig 2014-12-20 04:39:02 UTC ++++ compile/Make_gcc.mak +@@ -44,4 +44,7 @@ uninstall-lib: $(RM) $(libdir)/$(libmigemo) dictionary: Modified: head/japanese/cmigemo/files/patch-compile_config.mk.in ============================================================================== --- head/japanese/cmigemo/files/patch-compile_config.mk.in Sun Jun 16 13:54:32 2019 (r504344) +++ head/japanese/cmigemo/files/patch-compile_config.mk.in Sun Jun 16 14:01:26 2019 (r504345) @@ -1,6 +1,6 @@ ---- compile/config.mk.in.orig 2011-02-27 19:45:40.000000000 +0900 -+++ compile/config.mk.in 2014-06-17 21:59:03.000000000 +0900 -@@ -18,8 +18,8 @@ +--- compile/config.mk.in.orig 2014-12-20 04:39:02 UTC ++++ compile/config.mk.in +@@ -18,8 +18,8 @@ libdir = $(prefix)/lib incdir = $(prefix)/include # WARNING: Directories $(dictdir) and $(docdir) will be deleted whole the # directory when unintall. @@ -11,7 +11,7 @@ ############################################################################## # Commands -@@ -33,9 +33,9 @@ +@@ -33,9 +33,9 @@ HTTP = ${PROGRAM_HTTP} PERL = perl BUNZIP2 = bzip2 -d GUNZIP = gzip -d Modified: head/japanese/cmigemo/files/patch-compile_unix.mak ============================================================================== --- head/japanese/cmigemo/files/patch-compile_unix.mak Sun Jun 16 13:54:32 2019 (r504344) +++ head/japanese/cmigemo/files/patch-compile_unix.mak Sun Jun 16 14:01:26 2019 (r504345) @@ -1,6 +1,6 @@ ---- compile/unix.mak.orig 2011-02-27 19:45:40.000000000 +0900 -+++ compile/unix.mak 2011-08-21 14:23:10.000000000 +0900 -@@ -39,36 +39,48 @@ +--- compile/unix.mak.orig 2014-12-20 04:39:02 UTC ++++ compile/unix.mak +@@ -39,36 +39,48 @@ install-mkdir: $(MKDIR) $(bindir) $(MKDIR) $(libdir) $(MKDIR) $(incdir) Modified: head/japanese/cmigemo/files/patch-configure ============================================================================== --- head/japanese/cmigemo/files/patch-configure Sun Jun 16 13:54:32 2019 (r504344) +++ head/japanese/cmigemo/files/patch-configure Sun Jun 16 14:01:26 2019 (r504345) @@ -1,6 +1,6 @@ ---- configure.orig 2011-08-27 20:52:18.000000000 +0900 -+++ configure 2011-08-27 20:53:47.000000000 +0900 -@@ -40,16 +40,6 @@ +--- configure.orig 2014-12-20 04:39:02 UTC ++++ configure +@@ -40,16 +40,6 @@ else exit 1 fi Modified: head/japanese/cmigemo/files/patch-dict_dict.mak ============================================================================== --- head/japanese/cmigemo/files/patch-dict_dict.mak Sun Jun 16 13:54:32 2019 (r504344) +++ head/japanese/cmigemo/files/patch-dict_dict.mak Sun Jun 16 14:01:26 2019 (r504345) @@ -1,6 +1,6 @@ ---- dict/dict.mak.orig 2014-12-20 13:39:02.000000000 +0900 -+++ dict/dict.mak 2014-12-21 22:31:28.000000000 +0900 -@@ -15,7 +15,7 @@ +--- dict/dict.mak.orig 2014-12-20 04:39:02 UTC ++++ dict/dict.mak +@@ -15,7 +15,7 @@ UTF8_DIR = utf-8.d # Dictionary # $(DICT): $(DICT_BASE) @@ -9,7 +9,7 @@ $(DICT_BASE): $(SKKDIC_FILE) ../tools/skk2migemo.pl ../tools/optimize-dict.pl $(PERL) ../tools/skk2migemo.pl < $(SKKDIC_FILE) > dict.tmp $(PERL) ../tools/optimize-dict.pl < dict.tmp > $@ -@@ -32,42 +32,42 @@ +@@ -32,42 +32,42 @@ cp932: $(DICT) ############################################################################## # Dictionary in euc-jp # @@ -70,7 +70,7 @@ ############################################################################## # for Microsoft Visual C -@@ -92,7 +92,8 @@ +@@ -92,7 +92,8 @@ mingw: cp932 utf-8 ############################################################################## # for GNU/gcc(Linux‘¼) # From owner-svn-ports-all@freebsd.org Sun Jun 16 14:13:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8939315C0254; Sun, 16 Jun 2019 14:13:43 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1913582C64; Sun, 16 Jun 2019 14:13:43 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E1A58F9D6; Sun, 16 Jun 2019 14:13:42 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GEDgAl001858; Sun, 16 Jun 2019 14:13:42 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GEDeqY001848; Sun, 16 Jun 2019 14:13:40 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906161413.x5GEDeqY001848@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Sun, 16 Jun 2019 14:13:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504346 - in head: french/wordpress german/wordpress japanese/wordpress russian/wordpress www/wordpress X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: in head: french/wordpress german/wordpress japanese/wordpress russian/wordpress www/wordpress X-SVN-Commit-Revision: 504346 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1913582C64 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 14:13:43 -0000 Author: joneum Date: Sun Jun 16 14:13:40 2019 New Revision: 504346 URL: https://svnweb.freebsd.org/changeset/ports/504346 Log: Update to 5.2.1 Changelog: https://wordpress.org/news/2019/05/wordpress-5-2-1-maintenance-release/ Sponsored by: Netzkommune GmbH Modified: head/french/wordpress/Makefile head/french/wordpress/distinfo head/german/wordpress/Makefile head/german/wordpress/distinfo head/japanese/wordpress/Makefile head/japanese/wordpress/distinfo head/russian/wordpress/Makefile head/russian/wordpress/distinfo head/www/wordpress/Makefile head/www/wordpress/distinfo Modified: head/french/wordpress/Makefile ============================================================================== --- head/french/wordpress/Makefile Sun Jun 16 14:01:26 2019 (r504345) +++ head/french/wordpress/Makefile Sun Jun 16 14:13:40 2019 (r504346) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -DISTVERSION= 5.2 +DISTVERSION= 5.2.1 DISTVERSIONSUFFIX= -fr_FR PORTEPOCH= 1 CATEGORIES= french www @@ -12,8 +12,6 @@ MAINTAINER= joneum@FreeBSD.org COMMENT= State-of-the-art semantic personal publishing platform LICENSE= GPLv2 - -BROKEN= unfetchable CONFLICTS_INSTALL= de-wordpress-[0-9].* ja-wordpress-[0-9].* ru-wordpress-[0-9].* Modified: head/french/wordpress/distinfo ============================================================================== --- head/french/wordpress/distinfo Sun Jun 16 14:01:26 2019 (r504345) +++ head/french/wordpress/distinfo Sun Jun 16 14:13:40 2019 (r504346) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557566217 -SHA256 (wordpress-5.2-fr_FR.tar.gz) = 776276a3abbcb32cb8d3fac688aaff7c19d0675df3c3a3801eb39cb41c0699dc -SIZE (wordpress-5.2-fr_FR.tar.gz) = 11840334 +TIMESTAMP = 1560690280 +SHA256 (wordpress-5.2.1-fr_FR.tar.gz) = cd62797b9a9706b971b7c891808da11f36917f20730f1891364268a0b67782a2 +SIZE (wordpress-5.2.1-fr_FR.tar.gz) = 11850124 Modified: head/german/wordpress/Makefile ============================================================================== --- head/german/wordpress/Makefile Sun Jun 16 14:01:26 2019 (r504345) +++ head/german/wordpress/Makefile Sun Jun 16 14:13:40 2019 (r504346) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -DISTVERSION= 5.2 +DISTVERSION= 5.2.1 DISTVERSIONSUFFIX= -de_DE CATEGORIES= german www MASTER_SITES= http://de.wordpress.org/ Modified: head/german/wordpress/distinfo ============================================================================== --- head/german/wordpress/distinfo Sun Jun 16 14:01:26 2019 (r504345) +++ head/german/wordpress/distinfo Sun Jun 16 14:13:40 2019 (r504346) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557566250 -SHA256 (wordpress-5.2-de_DE.tar.gz) = ecdf55a10db01aed4670e1299e76cf62e2cb7b2d15672cf50e0b13d613720a54 -SIZE (wordpress-5.2-de_DE.tar.gz) = 11846931 +TIMESTAMP = 1560690318 +SHA256 (wordpress-5.2.1-de_DE.tar.gz) = 1f12aac01ee24f638b4630ea2174f05092f50630dba82c893867aee9ddb1d1e7 +SIZE (wordpress-5.2.1-de_DE.tar.gz) = 11854990 Modified: head/japanese/wordpress/Makefile ============================================================================== --- head/japanese/wordpress/Makefile Sun Jun 16 14:01:26 2019 (r504345) +++ head/japanese/wordpress/Makefile Sun Jun 16 14:13:40 2019 (r504346) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -DISTVERSION= 5.2 +DISTVERSION= 5.2.1 DISTVERSIONSUFFIX= -ja CATEGORIES= japanese www MASTER_SITES= http://ja.wordpress.org/ @@ -13,8 +13,6 @@ COMMENT= State-of-the-art semantic personal publishing LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/license.txt - -BROKEN= unfetchable CONFLICTS_INSTALL= wordpress-[0-9].* de-wordpress-[0-9].* ru-wordpress-[0-9].* Modified: head/japanese/wordpress/distinfo ============================================================================== --- head/japanese/wordpress/distinfo Sun Jun 16 14:01:26 2019 (r504345) +++ head/japanese/wordpress/distinfo Sun Jun 16 14:13:40 2019 (r504346) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557566281 -SHA256 (wordpress-5.2-ja.tar.gz) = 595966625f4033bfe5566d9dd6de3373401dafe686c706f6c9e741f65809c5f3 -SIZE (wordpress-5.2-ja.tar.gz) = 11849782 +TIMESTAMP = 1560690365 +SHA256 (wordpress-5.2.1-ja.tar.gz) = ad80f687861079467f5e5d8500d0acefdd29ee807370f074aa4f6e4af156b544 +SIZE (wordpress-5.2.1-ja.tar.gz) = 11851773 Modified: head/russian/wordpress/Makefile ============================================================================== --- head/russian/wordpress/Makefile Sun Jun 16 14:01:26 2019 (r504345) +++ head/russian/wordpress/Makefile Sun Jun 16 14:13:40 2019 (r504346) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -DISTVERSION= 5.2 +DISTVERSION= 5.2.1 DISTVERSIONSUFFIX= -ru_RU CATEGORIES= russian www MASTER_SITES= http://ru.wordpress.org/ Modified: head/russian/wordpress/distinfo ============================================================================== --- head/russian/wordpress/distinfo Sun Jun 16 14:01:26 2019 (r504345) +++ head/russian/wordpress/distinfo Sun Jun 16 14:13:40 2019 (r504346) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557566312 -SHA256 (wordpress-5.2-ru_RU.tar.gz) = 7216cf1863dda829a2851745c412da3bbe04a270d5ed9dc395de72d8f9d6c682 -SIZE (wordpress-5.2-ru_RU.tar.gz) = 11906512 +TIMESTAMP = 1560690401 +SHA256 (wordpress-5.2.1-ru_RU.tar.gz) = b6b689478b737c7043ff5ad65d10de5b122eafd8d5dfd65dafe6c31186195263 +SIZE (wordpress-5.2.1-ru_RU.tar.gz) = 11913743 Modified: head/www/wordpress/Makefile ============================================================================== --- head/www/wordpress/Makefile Sun Jun 16 14:01:26 2019 (r504345) +++ head/www/wordpress/Makefile Sun Jun 16 14:13:40 2019 (r504346) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -DISTVERSION= 5.2 +DISTVERSION= 5.2.1 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= http://wordpress.org/ Modified: head/www/wordpress/distinfo ============================================================================== --- head/www/wordpress/distinfo Sun Jun 16 14:01:26 2019 (r504345) +++ head/www/wordpress/distinfo Sun Jun 16 14:13:40 2019 (r504346) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557566343 -SHA256 (wordpress-5.2.tar.gz) = 613089a40721e66937c296c960de93b1425c17c5b3a56b78c194ae64c4d386ad -SIZE (wordpress-5.2.tar.gz) = 11195223 +TIMESTAMP = 1560690162 +SHA256 (wordpress-5.2.1.tar.gz) = 694769b2f7e235598fdc75534be6aaabf9999af1342168e75ed87803eea3f789 +SIZE (wordpress-5.2.1.tar.gz) = 11199196 From owner-svn-ports-all@freebsd.org Sun Jun 16 14:42:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AA6A15C0D2B; Sun, 16 Jun 2019 14:42:27 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D3AB08395D; Sun, 16 Jun 2019 14:42:26 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8DDC7FEF9; Sun, 16 Jun 2019 14:42:26 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GEgQgQ017482; Sun, 16 Jun 2019 14:42:26 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GEgQJu017480; Sun, 16 Jun 2019 14:42:26 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201906161442.x5GEgQJu017480@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Sun, 16 Jun 2019 14:42:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504347 - head/www/bluefish X-SVN-Group: ports-head X-SVN-Commit-Author: woodsb02 X-SVN-Commit-Paths: head/www/bluefish X-SVN-Commit-Revision: 504347 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D3AB08395D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.94)[-0.944,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 14:42:27 -0000 Author: woodsb02 Date: Sun Jun 16 14:42:25 2019 New Revision: 504347 URL: https://svnweb.freebsd.org/changeset/ports/504347 Log: www/bluefish: Do not bundle MIME database files Instead, the MIME database files will be created as a post-install step thanks to USES=desktop-file-utils and USES=shared-mime-info. This prevents the bluefish package (and other packages) from clobbering the local MIME database, causing package conflicts and checksum mismatches. https://lists.freebsd.org/pipermail/freebsd-ports/2017-March/107752.html Reported by: Werner Lehmann Reported by: tech-lists@zyxst.net Submitted by: tijl MFH: 2019Q2 Modified: head/www/bluefish/Makefile head/www/bluefish/pkg-plist Modified: head/www/bluefish/Makefile ============================================================================== --- head/www/bluefish/Makefile Sun Jun 16 14:13:40 2019 (r504346) +++ head/www/bluefish/Makefile Sun Jun 16 14:42:25 2019 (r504347) @@ -3,7 +3,7 @@ PORTNAME= bluefish PORTVERSION= 2.2.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www editors MASTER_SITES= http://www.bennewitz.com/bluefish/stable/source/ \ http://bluefish.mrball.net/stable/source/ @@ -26,7 +26,8 @@ USE_GNOME= cairo intltool libxml2 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-freedesktop_org-menu=${PREFIX}/share/applications \ --with-freedesktop_org-mime=${PREFIX}/share/mime \ - --with-icon-path=${PREFIX}/share/pixmaps + --with-icon-path=${PREFIX}/share/pixmaps \ + --disable-update-databases INSTALL_TARGET= install-strip INSTALLS_ICONS= yes USE_LDCONFIG= yes Modified: head/www/bluefish/pkg-plist ============================================================================== --- head/www/bluefish/pkg-plist Sun Jun 16 14:13:40 2019 (r504346) +++ head/www/bluefish/pkg-plist Sun Jun 16 14:42:25 2019 (r504347) @@ -9,7 +9,6 @@ lib/bluefish/zencoding.so man/man1/bluefish.1.gz share/appdata/bluefish.appdata.xml share/applications/bluefish.desktop -share/applications/mimeinfo.cache %%DATADIR%%/bflang/JQuery.bfinc %%DATADIR%%/bflang/ada.bflang2 %%DATADIR%%/bflang/all-html.bfinc @@ -440,21 +439,7 @@ share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_htmlbar share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_infbrowser.mo share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_snippets.mo share/locale/zh_TW/LC_MESSAGES/bluefish_plugin_zencoding.mo -share/mime/XMLnamespaces -share/mime/aliases -share/mime/application/x-bluefish-language2.xml -share/mime/application/x-bluefish-project.xml -share/mime/generic-icons -share/mime/globs -share/mime/globs2 -share/mime/icons -share/mime/magic -share/mime/mime.cache share/mime/packages/bluefish.xml -share/mime/subclasses -share/mime/treemagic -share/mime/types -share/mime/version share/pixmaps/application-x-bluefish-project.png share/pixmaps/bluefish.png share/xml/bluefish/2.0/bflang2.rng From owner-svn-ports-all@freebsd.org Sun Jun 16 14:51:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D299F15C1216; Sun, 16 Jun 2019 14:51:34 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 819E783E43; Sun, 16 Jun 2019 14:51:34 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5A1D91805C; Sun, 16 Jun 2019 14:51:34 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GEpYOM018748; Sun, 16 Jun 2019 14:51:34 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GEpX5p018746; Sun, 16 Jun 2019 14:51:33 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906161451.x5GEpX5p018746@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Sun, 16 Jun 2019 14:51:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504348 - head/www/groupoffice X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/www/groupoffice X-SVN-Commit-Revision: 504348 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 819E783E43 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 14:51:35 -0000 Author: joneum Date: Sun Jun 16 14:51:33 2019 New Revision: 504348 URL: https://svnweb.freebsd.org/changeset/ports/504348 Log: Update to 6.4.21 Sponsored by: Netzkommune GmbH Modified: head/www/groupoffice/Makefile head/www/groupoffice/distinfo head/www/groupoffice/pkg-plist Modified: head/www/groupoffice/Makefile ============================================================================== --- head/www/groupoffice/Makefile Sun Jun 16 14:42:25 2019 (r504347) +++ head/www/groupoffice/Makefile Sun Jun 16 14:51:33 2019 (r504348) @@ -3,7 +3,7 @@ PORTNAME= groupoffice DISTVERSIONPREFIX= com- -DISTVERSION= 6.3.74 +DISTVERSION= 6.4.21 CATEGORIES= www MASTER_SITES= SF/group-office/${DISTVERSION:R} DISTNAME= ${PORTNAME}-${DISTVERSION}-php-71 @@ -12,7 +12,6 @@ MAINTAINER= joneum@FreeBSD.org COMMENT= Modular web application framework for office LICENSE= AGPLv3 -LICENSE_FILE= ${WRKSRC}/LICENSE.AGPL USES= mysql shebangfix php:web python Modified: head/www/groupoffice/distinfo ============================================================================== --- head/www/groupoffice/distinfo Sun Jun 16 14:42:25 2019 (r504347) +++ head/www/groupoffice/distinfo Sun Jun 16 14:51:33 2019 (r504348) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560238843 -SHA256 (groupoffice-6.3.74-php-71.tar.gz) = 5a0008fbb9822e38f0002ece3ad0103d091f623385416519d0c5f4fb99a7e6bd -SIZE (groupoffice-6.3.74-php-71.tar.gz) = 38348207 +TIMESTAMP = 1560695474 +SHA256 (groupoffice-6.4.21-php-71.tar.gz) = fe1ff66ee67ec924fd9cd0de4125f59c265a6008b7061a4bf77ca3bdde75bf79 +SIZE (groupoffice-6.4.21-php-71.tar.gz) = 36721035 Modified: head/www/groupoffice/pkg-plist ============================================================================== --- head/www/groupoffice/pkg-plist Sun Jun 16 14:42:25 2019 (r504347) +++ head/www/groupoffice/pkg-plist Sun Jun 16 14:51:33 2019 (r504348) @@ -1,8 +1,11 @@ %%WWWDIR%%/GO.php -%%WWWDIR%%/INSTALL.TXT -%%WWWDIR%%/LICENSE.AGPL -%%WWWDIR%%/LICENSE.TXT -%%WWWDIR%%/auth.php +%%WWWDIR%%/api/auth.php +%%WWWDIR%%/api/download.php +%%WWWDIR%%/api/jmap.php +%%WWWDIR%%/api/logo.php +%%WWWDIR%%/api/sse.php +%%WWWDIR%%/api/upload.php +%%WWWDIR%%/cli.php %%WWWDIR%%/composer.json %%WWWDIR%%/composer.lock %%WWWDIR%%/config.php.example @@ -14,7 +17,6 @@ %%WWWDIR%%/controller/CoreController.php %%WWWDIR%%/controller/CorrectionController.php %%WWWDIR%%/controller/CronController.php -%%WWWDIR%%/controller/DeveloperController.php %%WWWDIR%%/controller/ExportController.php %%WWWDIR%%/controller/ExternalController.php %%WWWDIR%%/controller/LinkFolderController.php @@ -22,11 +24,7 @@ %%WWWDIR%%/controller/ReminderController.php %%WWWDIR%%/controller/SearchController.php %%WWWDIR%%/controller/SettingsController.php -%%WWWDIR%%/controls/win32/unzip.exe -%%WWWDIR%%/controls/win32/zip.exe %%WWWDIR%%/cron.php -%%WWWDIR%%/docs/guidelines.md -%%WWWDIR%%/download.php %%WWWDIR%%/favicon.ico %%WWWDIR%%/go/GO.php %%WWWDIR%%/go/base/Config.php @@ -115,6 +113,7 @@ %%WWWDIR%%/go/base/fs/MemoryFile.php %%WWWDIR%%/go/base/fs/XlsFile.php %%WWWDIR%%/go/base/fs/Zip.php +%%WWWDIR%%/go/base/fs/mime.types %%WWWDIR%%/go/base/html/Checkbox.php %%WWWDIR%%/go/base/html/Error.php %%WWWDIR%%/go/base/html/Form.php @@ -165,6 +164,7 @@ %%WWWDIR%%/go/base/model/SearchCacheRecord.php %%WWWDIR%%/go/base/model/Setting.php %%WWWDIR%%/go/base/model/State.php +%%WWWDIR%%/go/base/model/Template.php %%WWWDIR%%/go/base/model/User.php %%WWWDIR%%/go/base/model/UserGroup.php %%WWWDIR%%/go/base/model/WorkingWeek.php @@ -233,14 +233,14 @@ %%WWWDIR%%/go/core/ErrorHandler.php %%WWWDIR%%/go/core/Installer.php %%WWWDIR%%/go/core/Language.php -%%WWWDIR%%/go/core/RouterInterface.php +%%WWWDIR%%/go/core/Module.php %%WWWDIR%%/go/core/Settings.php %%WWWDIR%%/go/core/Singleton.php %%WWWDIR%%/go/core/SingletonTrait.php -%%WWWDIR%%/go/core/acl/model/Acl.php +%%WWWDIR%%/go/core/TemplateParser.php %%WWWDIR%%/go/core/acl/model/AclEntity.php -%%WWWDIR%%/go/core/acl/model/AclGroup.php %%WWWDIR%%/go/core/acl/model/AclItemEntity.php +%%WWWDIR%%/go/core/acl/model/AclOwnerEntity.php %%WWWDIR%%/go/core/auth/BaseAuthenticator.php %%WWWDIR%%/go/core/auth/DomainProvider.php %%WWWDIR%%/go/core/auth/Method.php @@ -254,18 +254,51 @@ %%WWWDIR%%/go/core/cache/CacheInterface.php %%WWWDIR%%/go/core/cache/Disk.php %%WWWDIR%%/go/core/cache/None.php +%%WWWDIR%%/go/core/cli/Router.php %%WWWDIR%%/go/core/cli/State.php -%%WWWDIR%%/go/core/customfields/datatype/Base.php -%%WWWDIR%%/go/core/customfields/datatype/FunctionField.php -%%WWWDIR%%/go/core/customfields/datatype/Text.php +%%WWWDIR%%/go/core/controller/Acl.php +%%WWWDIR%%/go/core/controller/EmailTemplate.php +%%WWWDIR%%/go/core/controller/EntityFilter.php +%%WWWDIR%%/go/core/controller/Field.php +%%WWWDIR%%/go/core/controller/FieldSet.php +%%WWWDIR%%/go/core/controller/Group.php +%%WWWDIR%%/go/core/controller/Link.php +%%WWWDIR%%/go/core/controller/Module.php +%%WWWDIR%%/go/core/controller/Notify.php +%%WWWDIR%%/go/core/controller/Search.php +%%WWWDIR%%/go/core/controller/Settings.php +%%WWWDIR%%/go/core/controller/SmtpAccount.php +%%WWWDIR%%/go/core/controller/System.php +%%WWWDIR%%/go/core/controller/User.php +%%WWWDIR%%/go/core/cron/GarbageCollection.php +%%WWWDIR%%/go/core/customfield/Base.php +%%WWWDIR%%/go/core/customfield/Checkbox.php +%%WWWDIR%%/go/core/customfield/Date.php +%%WWWDIR%%/go/core/customfield/DateTime.php +%%WWWDIR%%/go/core/customfield/EncryptedText.php +%%WWWDIR%%/go/core/customfield/FunctionField.php +%%WWWDIR%%/go/core/customfield/Group.php +%%WWWDIR%%/go/core/customfield/Html.php +%%WWWDIR%%/go/core/customfield/MultiSelect.php +%%WWWDIR%%/go/core/customfield/Notes.php +%%WWWDIR%%/go/core/customfield/Number.php +%%WWWDIR%%/go/core/customfield/Select.php +%%WWWDIR%%/go/core/customfield/Text.php +%%WWWDIR%%/go/core/customfield/TextArea.php +%%WWWDIR%%/go/core/customfield/User.php +%%WWWDIR%%/go/core/customfield/YesNo.php %%WWWDIR%%/go/core/data/ArrayableInterface.php %%WWWDIR%%/go/core/data/MagicPropertiesTrait.php %%WWWDIR%%/go/core/data/Model.php %%WWWDIR%%/go/core/data/ModelHelper.php %%WWWDIR%%/go/core/data/Store.php +%%WWWDIR%%/go/core/data/convert/AbstractConverter.php +%%WWWDIR%%/go/core/data/convert/Csv.php +%%WWWDIR%%/go/core/data/convert/Json.php %%WWWDIR%%/go/core/data/exception/NotArrayable.php +%%WWWDIR%%/go/core/dav/auth/BasicBackend.php +%%WWWDIR%%/go/core/dav/davacl/PrincipalBackend.php %%WWWDIR%%/go/core/db/Column.php -%%WWWDIR%%/go/core/db/Command.php %%WWWDIR%%/go/core/db/Connection.php %%WWWDIR%%/go/core/db/Criteria.php %%WWWDIR%%/go/core/db/Database.php @@ -306,11 +339,12 @@ %%WWWDIR%%/go/core/imap/Streamer.php %%WWWDIR%%/go/core/imap/Structure.php %%WWWDIR%%/go/core/imap/Utils.php +%%WWWDIR%%/go/core/install/MigrateCustomFields63to64.php +%%WWWDIR%%/go/core/install/install.sql +%%WWWDIR%%/go/core/install/updates.php %%WWWDIR%%/go/core/jmap/Capabilities.php -%%WWWDIR%%/go/core/jmap/Controller.php %%WWWDIR%%/go/core/jmap/Entity.php %%WWWDIR%%/go/core/jmap/EntityController.php -%%WWWDIR%%/go/core/jmap/ReadOnlyEntityController.php %%WWWDIR%%/go/core/jmap/Request.php %%WWWDIR%%/go/core/jmap/Response.php %%WWWDIR%%/go/core/jmap/Router.php @@ -318,7 +352,37 @@ %%WWWDIR%%/go/core/jmap/State.php %%WWWDIR%%/go/core/jmap/exception/CannotCalculateChanges.php %%WWWDIR%%/go/core/jmap/exception/InvalidArguments.php +%%WWWDIR%%/go/core/jmap/exception/InvalidResultReference.php %%WWWDIR%%/go/core/jmap/exception/StateMismatch.php +%%WWWDIR%%/go/core/language/ar.php +%%WWWDIR%%/go/core/language/bg.php +%%WWWDIR%%/go/core/language/bn_bd.php +%%WWWDIR%%/go/core/language/ca.php +%%WWWDIR%%/go/core/language/cn.php +%%WWWDIR%%/go/core/language/cs.php +%%WWWDIR%%/go/core/language/da.php +%%WWWDIR%%/go/core/language/de.php +%%WWWDIR%%/go/core/language/el.php +%%WWWDIR%%/go/core/language/en.php +%%WWWDIR%%/go/core/language/es.php +%%WWWDIR%%/go/core/language/et.php +%%WWWDIR%%/go/core/language/fi.php +%%WWWDIR%%/go/core/language/fr.php +%%WWWDIR%%/go/core/language/hr.php +%%WWWDIR%%/go/core/language/hu.php +%%WWWDIR%%/go/core/language/id.php +%%WWWDIR%%/go/core/language/it.php +%%WWWDIR%%/go/core/language/ko.php +%%WWWDIR%%/go/core/language/nb.php +%%WWWDIR%%/go/core/language/nl.php +%%WWWDIR%%/go/core/language/pl.php +%%WWWDIR%%/go/core/language/pt_br.php +%%WWWDIR%%/go/core/language/ro.php +%%WWWDIR%%/go/core/language/ru.php +%%WWWDIR%%/go/core/language/sv.php +%%WWWDIR%%/go/core/language/th.php +%%WWWDIR%%/go/core/language/tr.php +%%WWWDIR%%/go/core/language/zh_tw.php %%WWWDIR%%/go/core/ldap/Connection.php %%WWWDIR%%/go/core/ldap/Record.php %%WWWDIR%%/go/core/ldap/Result.php @@ -327,13 +391,34 @@ %%WWWDIR%%/go/core/mail/Recipient.php %%WWWDIR%%/go/core/mail/RecipientList.php %%WWWDIR%%/go/core/mail/Util.php -%%WWWDIR%%/go/core/module/Base.php +%%WWWDIR%%/go/core/model/Acl.php +%%WWWDIR%%/go/core/model/AclGroup.php +%%WWWDIR%%/go/core/model/CronJob.php +%%WWWDIR%%/go/core/model/CronJobSchedule.php +%%WWWDIR%%/go/core/model/EmailTemplate.php +%%WWWDIR%%/go/core/model/EmailTemplateAttachment.php +%%WWWDIR%%/go/core/model/EntityFilter.php +%%WWWDIR%%/go/core/model/Field.php +%%WWWDIR%%/go/core/model/FieldSet.php +%%WWWDIR%%/go/core/model/Group.php +%%WWWDIR%%/go/core/model/Link.php +%%WWWDIR%%/go/core/model/Log.php +%%WWWDIR%%/go/core/model/Module.php +%%WWWDIR%%/go/core/model/Search.php +%%WWWDIR%%/go/core/model/Settings.php +%%WWWDIR%%/go/core/model/SmtpAccount.php +%%WWWDIR%%/go/core/model/User.php +%%WWWDIR%%/go/core/model/UserGroup.php +%%WWWDIR%%/go/core/model/WorkingWeek.php %%WWWDIR%%/go/core/orm/CustomFieldsTrait.php %%WWWDIR%%/go/core/orm/Entity.php %%WWWDIR%%/go/core/orm/EntityType.php +%%WWWDIR%%/go/core/orm/Filters.php +%%WWWDIR%%/go/core/orm/LoggingTrait.php %%WWWDIR%%/go/core/orm/MappedTable.php %%WWWDIR%%/go/core/orm/Mapping.php %%WWWDIR%%/go/core/orm/Property.php +%%WWWDIR%%/go/core/orm/Query.php %%WWWDIR%%/go/core/orm/Relation.php %%WWWDIR%%/go/core/orm/SearchableTrait.php %%WWWDIR%%/go/core/util/ArrayObject.php @@ -348,13 +433,393 @@ %%WWWDIR%%/go/core/util/StringUtil.php %%WWWDIR%%/go/core/util/UUID.php %%WWWDIR%%/go/core/util/Url.php +%%WWWDIR%%/go/core/validate/CountryCode.php %%WWWDIR%%/go/core/validate/ErrorCode.php %%WWWDIR%%/go/core/validate/ValidationTrait.php +%%WWWDIR%%/go/core/views/extjs3/Array.js +%%WWWDIR%%/go/core/views/extjs3/AuthenticationManager.js +%%WWWDIR%%/go/core/views/extjs3/Entities.js +%%WWWDIR%%/go/core/views/extjs3/Entity.js +%%WWWDIR%%/go/core/views/extjs3/Jmap.js +%%WWWDIR%%/go/core/views/extjs3/Module.js +%%WWWDIR%%/go/core/views/extjs3/Modules.js +%%WWWDIR%%/go/core/views/extjs3/NavMenu.js +%%WWWDIR%%/go/core/views/extjs3/Notifier.js +%%WWWDIR%%/go/core/views/extjs3/PasswordPrompt.js +%%WWWDIR%%/go/core/views/extjs3/QRCodeComponent.js +%%WWWDIR%%/go/core/views/extjs3/Relations.js +%%WWWDIR%%/go/core/views/extjs3/Router.js +%%WWWDIR%%/go/core/views/extjs3/SearchField.js +%%WWWDIR%%/go/core/views/extjs3/Stores.js +%%WWWDIR%%/go/core/views/extjs3/String.js +%%WWWDIR%%/go/core/views/extjs3/TimeZones.js +%%WWWDIR%%/go/core/views/extjs3/Translate.js +%%WWWDIR%%/go/core/views/extjs3/User.js +%%WWWDIR%%/go/core/views/extjs3/Window.js +%%WWWDIR%%/go/core/views/extjs3/Wizard.js +%%WWWDIR%%/go/core/views/extjs3/chart/ChartComponent.js +%%WWWDIR%%/go/core/views/extjs3/chart/LineChart.js +%%WWWDIR%%/go/core/views/extjs3/cron/CronDialog.js +%%WWWDIR%%/go/core/views/extjs3/cron/ParametersPanel.js +%%WWWDIR%%/go/core/views/extjs3/cron/PeriodGrid.js +%%WWWDIR%%/go/core/views/extjs3/cron/Stores.js +%%WWWDIR%%/go/core/views/extjs3/cron/SystemSettingsCronGrid.js +%%WWWDIR%%/go/core/views/extjs3/customfields/CustomFields.js +%%WWWDIR%%/go/core/views/extjs3/customfields/EntityDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/EntityPanel.js +%%WWWDIR%%/go/core/views/extjs3/customfields/FieldDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/FieldSetDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/FormFieldSet.js +%%WWWDIR%%/go/core/views/extjs3/customfields/SystemSettingsPanel.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/Checkbox.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/CheckboxDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/Date.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/DateDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/DateTime.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/DateTimeDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/EncryptedText.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/FunctionField.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/FunctionFieldDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/Group.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/GroupDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/Html.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/HtmlDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/MultiSelect.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/MultiSelectDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/Notes.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/NotesDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/Number.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/NumberDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/Select.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/SelectDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/SelectOptionsTree.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/Text.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/TextArea.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/TextAreaDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/TextDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/TreeSelectField.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/User.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/UserDialog.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/YesNo.js +%%WWWDIR%%/go/core/views/extjs3/customfields/type/YesNoDialog.js +%%WWWDIR%%/go/core/views/extjs3/data/EntityStore.js +%%WWWDIR%%/go/core/views/extjs3/data/EntityStoreProxy.js +%%WWWDIR%%/go/core/views/extjs3/data/GroupingStore.js +%%WWWDIR%%/go/core/views/extjs3/data/JmapProxy.js +%%WWWDIR%%/go/core/views/extjs3/data/Store.js +%%WWWDIR%%/go/core/views/extjs3/data/StoreTrait.js +%%WWWDIR%%/go/core/views/extjs3/data/Types.js +%%WWWDIR%%/go/core/views/extjs3/defaultpermissions/DefaultPermissionsPanel.js +%%WWWDIR%%/go/core/views/extjs3/defaultpermissions/ShareWindow.js +%%WWWDIR%%/go/core/views/extjs3/defaultpermissions/SystemSettingsPanel.js +%%WWWDIR%%/go/core/views/extjs3/detail/AddButton.js +%%WWWDIR%%/go/core/views/extjs3/detail/CreateModifyPanel.js +%%WWWDIR%%/go/core/views/extjs3/detail/Panel.js +%%WWWDIR%%/go/core/views/extjs3/detail/Property.js +%%WWWDIR%%/go/core/views/extjs3/detail/PropertyList.js +%%WWWDIR%%/go/core/views/extjs3/detail/ReadMore.js +%%WWWDIR%%/go/core/views/extjs3/emailtemplate/GridPanel.js +%%WWWDIR%%/go/core/views/extjs3/emailtemplate/TemplateDialog.js +%%WWWDIR%%/go/core/views/extjs3/filter/Condition.js +%%WWWDIR%%/go/core/views/extjs3/filter/Conditions.js +%%WWWDIR%%/go/core/views/extjs3/filter/FieldSet.js +%%WWWDIR%%/go/core/views/extjs3/filter/FilterDialog.js +%%WWWDIR%%/go/core/views/extjs3/filter/FilterGrid.js +%%WWWDIR%%/go/core/views/extjs3/filter/types/date.js +%%WWWDIR%%/go/core/views/extjs3/filter/types/number.js +%%WWWDIR%%/go/core/views/extjs3/filter/types/select.js +%%WWWDIR%%/go/core/views/extjs3/filter/types/string.js +%%WWWDIR%%/go/core/views/extjs3/flux/Dispatcher.js +%%WWWDIR%%/go/core/views/extjs3/flux/Store.js +%%WWWDIR%%/go/core/views/extjs3/form/AttachmentsField.js +%%WWWDIR%%/go/core/views/extjs3/form/Chips.js +%%WWWDIR%%/go/core/views/extjs3/form/ComboBox.js +%%WWWDIR%%/go/core/views/extjs3/form/ComboBoxReset.js +%%WWWDIR%%/go/core/views/extjs3/form/DateField.js +%%WWWDIR%%/go/core/views/extjs3/form/DateTimeField.js +%%WWWDIR%%/go/core/views/extjs3/form/Dialog.js +%%WWWDIR%%/go/core/views/extjs3/form/EntityPanel.js +%%WWWDIR%%/go/core/views/extjs3/form/FileButtonField.js +%%WWWDIR%%/go/core/views/extjs3/form/FileField.js +%%WWWDIR%%/go/core/views/extjs3/form/FormContainer.js +%%WWWDIR%%/go/core/views/extjs3/form/FormFieldSet.js +%%WWWDIR%%/go/core/views/extjs3/form/FormGroup.js +%%WWWDIR%%/go/core/views/extjs3/form/GridField.js +%%WWWDIR%%/go/core/views/extjs3/form/HtmlEditor.js +%%WWWDIR%%/go/core/views/extjs3/form/KeyValueEditorGrid.js +%%WWWDIR%%/go/core/views/extjs3/form/PasswordGeneratorField.js +%%WWWDIR%%/go/core/views/extjs3/form/README.md +%%WWWDIR%%/go/core/views/extjs3/form/RadioGroup.js +%%WWWDIR%%/go/core/views/extjs3/form/RecurrenceFieldset.js +%%WWWDIR%%/go/core/views/extjs3/form/StoreField.js +%%WWWDIR%%/go/core/views/extjs3/form/Switch.js +%%WWWDIR%%/go/core/views/extjs3/form/TimeField.js +%%WWWDIR%%/go/core/views/extjs3/form/multiselect/Field.js +%%WWWDIR%%/go/core/views/extjs3/form/multiselect/Window.js +%%WWWDIR%%/go/core/views/extjs3/go.js +%%WWWDIR%%/go/core/views/extjs3/grid/DateColumn.js +%%WWWDIR%%/go/core/views/extjs3/grid/EditorGridPanel.js +%%WWWDIR%%/go/core/views/extjs3/grid/GridPanel.js +%%WWWDIR%%/go/core/views/extjs3/grid/GridTrait.js +%%WWWDIR%%/go/core/views/extjs3/grid/SelectAllCheckBox.js +%%WWWDIR%%/go/core/views/extjs3/grid/editor/ComboColumn.js +%%WWWDIR%%/go/core/views/extjs3/grid/plugin/Sortable.js +%%WWWDIR%%/go/core/views/extjs3/groups/GroupCombo.js +%%WWWDIR%%/go/core/views/extjs3/groups/GroupDialog.js +%%WWWDIR%%/go/core/views/extjs3/groups/GroupModuleGrid.js +%%WWWDIR%%/go/core/views/extjs3/groups/GroupUserGrid.js +%%WWWDIR%%/go/core/views/extjs3/groups/SystemSettingsGroupGrid.js +%%WWWDIR%%/go/core/views/extjs3/import/CsvMappingDialog.js +%%WWWDIR%%/go/core/views/extjs3/layout/ResponsiveLayout.js +%%WWWDIR%%/go/core/views/extjs3/links/CreateLinkButton.js +%%WWWDIR%%/go/core/views/extjs3/links/CreateLinkWindow.js +%%WWWDIR%%/go/core/views/extjs3/links/EntityGrid.js +%%WWWDIR%%/go/core/views/extjs3/links/LinkBrowser.js +%%WWWDIR%%/go/core/views/extjs3/links/LinkBrowserMenuItem.js +%%WWWDIR%%/go/core/views/extjs3/links/LinkGrid.js +%%WWWDIR%%/go/core/views/extjs3/links/LinksDetailPanel.js +%%WWWDIR%%/go/core/views/extjs3/login/BaseLoginPanel.js +%%WWWDIR%%/go/core/views/extjs3/login/DomainCombo.js +%%WWWDIR%%/go/core/views/extjs3/login/ForgotDialog.js +%%WWWDIR%%/go/core/views/extjs3/login/LanguageCombobox.js +%%WWWDIR%%/go/core/views/extjs3/login/LoginDialog.js +%%WWWDIR%%/go/core/views/extjs3/login/LoginPanel.js +%%WWWDIR%%/go/core/views/extjs3/login/RecoveryDialog.js +%%WWWDIR%%/go/core/views/extjs3/login/UsernamePanel.js +%%WWWDIR%%/go/core/views/extjs3/menu/EmojiMenu.js +%%WWWDIR%%/go/core/views/extjs3/menu/StoreMenu.js +%%WWWDIR%%/go/core/views/extjs3/modules/ModulePanel.js +%%WWWDIR%%/go/core/views/extjs3/modules/PermissionsWindow.js +%%WWWDIR%%/go/core/views/extjs3/modules/SystemSettingsModuleGrid.js +%%WWWDIR%%/go/core/views/extjs3/panels/ScrollLoader.js +%%WWWDIR%%/go/core/views/extjs3/permissions/SharePanel.js +%%WWWDIR%%/go/core/views/extjs3/permissions/ShareWindow.js +%%WWWDIR%%/go/core/views/extjs3/scripts.txt +%%WWWDIR%%/go/core/views/extjs3/search/Panel.js +%%WWWDIR%%/go/core/views/extjs3/search/SearchCombo.js +%%WWWDIR%%/go/core/views/extjs3/search/SearchEmailCombo.js +%%WWWDIR%%/go/core/views/extjs3/smtp/AccountCombo.js +%%WWWDIR%%/go/core/views/extjs3/smtp/AccountDialog.js +%%WWWDIR%%/go/core/views/extjs3/smtp/GridPanel.js +%%WWWDIR%%/go/core/views/extjs3/systemsettings/AppearancePanel.js +%%WWWDIR%%/go/core/views/extjs3/systemsettings/AuthenticationPanel.js +%%WWWDIR%%/go/core/views/extjs3/systemsettings/Dialog.js +%%WWWDIR%%/go/core/views/extjs3/systemsettings/GeneralPanel.js +%%WWWDIR%%/go/core/views/extjs3/systemsettings/NotificationsPanel.js +%%WWWDIR%%/go/core/views/extjs3/systemsettings/Panel.js +%%WWWDIR%%/go/core/views/extjs3/toolbar/SearchButton.js +%%WWWDIR%%/go/core/views/extjs3/toolbar/TitleItem.js +%%WWWDIR%%/go/core/views/extjs3/tools/SystemSettingsTools.js +%%WWWDIR%%/go/core/views/extjs3/tree/EntityLoader.js +%%WWWDIR%%/go/core/views/extjs3/tree/Node.js +%%WWWDIR%%/go/core/views/extjs3/tree/TreeNodeUI.js +%%WWWDIR%%/go/core/views/extjs3/users/CreateUserAccountPanel.js +%%WWWDIR%%/go/core/views/extjs3/users/CreateUserPasswordPanel.js +%%WWWDIR%%/go/core/views/extjs3/users/CreateUserWizard.js +%%WWWDIR%%/go/core/views/extjs3/users/PermissionsDialog.js +%%WWWDIR%%/go/core/views/extjs3/users/SystemSettingsUserGrid.js +%%WWWDIR%%/go/core/views/extjs3/users/UserCombo.js +%%WWWDIR%%/go/core/views/extjs3/users/UserDefaultsWindow.js +%%WWWDIR%%/go/core/views/extjs3/users/UserGroupGrid.js +%%WWWDIR%%/go/core/views/extjs3/users/UserSettingsWorkingWeek.js +%%WWWDIR%%/go/core/views/extjs3/usersettings/AccountSettingsPanel.js +%%WWWDIR%%/go/core/views/extjs3/usersettings/LookAndFeelPanel.js +%%WWWDIR%%/go/core/views/extjs3/usersettings/UserSettingsDialog.js +%%WWWDIR%%/go/core/views/extjs3/util.js +%%WWWDIR%%/go/core/views/extjs3/util/Cookies.js +%%WWWDIR%%/go/core/views/extjs3/util/Filters.js +%%WWWDIR%%/go/core/views/extjs3/util/Format.js +%%WWWDIR%%/go/core/webclient/CSP.php %%WWWDIR%%/go/core/webclient/Extjs3.php +%%WWWDIR%%/go/modules/business/.git/FETCH_HEAD +%%WWWDIR%%/go/modules/business/.git/HEAD +%%WWWDIR%%/go/modules/business/.git/ORIG_HEAD +%%WWWDIR%%/go/modules/business/.git/config +%%WWWDIR%%/go/modules/business/.git/description +%%WWWDIR%%/go/modules/business/.git/hooks/applypatch-msg.sample +%%WWWDIR%%/go/modules/business/.git/hooks/commit-msg.sample +%%WWWDIR%%/go/modules/business/.git/hooks/post-update.sample +%%WWWDIR%%/go/modules/business/.git/hooks/pre-applypatch.sample +%%WWWDIR%%/go/modules/business/.git/hooks/pre-commit.sample +%%WWWDIR%%/go/modules/business/.git/hooks/pre-push.sample +%%WWWDIR%%/go/modules/business/.git/hooks/pre-rebase.sample +%%WWWDIR%%/go/modules/business/.git/hooks/pre-receive.sample +%%WWWDIR%%/go/modules/business/.git/hooks/prepare-commit-msg.sample +%%WWWDIR%%/go/modules/business/.git/hooks/update.sample +%%WWWDIR%%/go/modules/business/.git/index +%%WWWDIR%%/go/modules/business/.git/info/exclude +%%WWWDIR%%/go/modules/business/.git/logs/HEAD +%%WWWDIR%%/go/modules/business/.git/logs/refs/heads/6.4.x +%%WWWDIR%%/go/modules/business/.git/logs/refs/heads/master +%%WWWDIR%%/go/modules/business/.git/logs/refs/remotes/origin/6.4.x +%%WWWDIR%%/go/modules/business/.git/logs/refs/remotes/origin/HEAD +%%WWWDIR%%/go/modules/business/.git/logs/refs/remotes/origin/master +%%WWWDIR%%/go/modules/business/.git/objects/01/88c1370f1aaaeb0512835ba443c1692f18e3ab +%%WWWDIR%%/go/modules/business/.git/objects/11/b9c560ba1d65f0deaed15dedb536b31b33c96a +%%WWWDIR%%/go/modules/business/.git/objects/19/0e3ea112a052332a2738463cf20f4e0c70a9f4 +%%WWWDIR%%/go/modules/business/.git/objects/1b/900e3c24fb51a609b26e8d63ca9c0edf54840a +%%WWWDIR%%/go/modules/business/.git/objects/1b/934b8de6dd4a758a0da9295f879d3914db645c +%%WWWDIR%%/go/modules/business/.git/objects/30/12779ff0975c7ae800d88b890102b5963049fa +%%WWWDIR%%/go/modules/business/.git/objects/31/fae7678908933d461860a7b90a2046a3ad588e +%%WWWDIR%%/go/modules/business/.git/objects/33/74b451aefd4476a3ff22c99aefac6f19928994 +%%WWWDIR%%/go/modules/business/.git/objects/34/048b0c50a1c2c2ec0928883a7836af208f25c0 +%%WWWDIR%%/go/modules/business/.git/objects/35/d2af60cc3d3b91661596ce89fd5b2bf68bbc23 +%%WWWDIR%%/go/modules/business/.git/objects/3c/c41d85bfd66a1dc00982e9dd3004e1ecc2b063 +%%WWWDIR%%/go/modules/business/.git/objects/42/3aacfb6e85b53afe8992f42e1864c88b480f49 +%%WWWDIR%%/go/modules/business/.git/objects/54/901ff85b88c4cfa3087e29c30bcc12b395bb29 +%%WWWDIR%%/go/modules/business/.git/objects/55/bf7abb9942ec75047217240ca2d5a509f11ddf +%%WWWDIR%%/go/modules/business/.git/objects/55/d4f1647ccbcc531fbf1441094d5bf2a3e13a8f +%%WWWDIR%%/go/modules/business/.git/objects/56/82f9c1188a9033580c1c07a77100e62c4aa379 +%%WWWDIR%%/go/modules/business/.git/objects/59/00ae987cf0504753ef60cda5e28298f03a8368 +%%WWWDIR%%/go/modules/business/.git/objects/5a/dceb1c1ba579df4215a10e60f6d3439ea399c1 +%%WWWDIR%%/go/modules/business/.git/objects/5e/4e8769d8be007cf938cf74a92cf34a4dae3349 +%%WWWDIR%%/go/modules/business/.git/objects/66/4000ec6256c1f2da292d99351571938f9ce018 +%%WWWDIR%%/go/modules/business/.git/objects/6d/42f61c9ab33373f760f8e4db345a5a58ee98d4 +%%WWWDIR%%/go/modules/business/.git/objects/6e/6fbe12f3cc603ef482a94b1aa96973ce22bcf8 +%%WWWDIR%%/go/modules/business/.git/objects/6e/83100cbf0b6e358333eb5c0471866acf3dc94c +%%WWWDIR%%/go/modules/business/.git/objects/6e/e2aded59b6d7aed134528f4b7a80d4bf0684e7 +%%WWWDIR%%/go/modules/business/.git/objects/6f/6355564c47fb084392dab1d324ae8ebf74fe3b +%%WWWDIR%%/go/modules/business/.git/objects/70/0ccead915881d908a451109d366ba4d368cca2 +%%WWWDIR%%/go/modules/business/.git/objects/73/cae9dabf9832d2cfb3506d97e9f1f5041fde60 +%%WWWDIR%%/go/modules/business/.git/objects/74/12252e641a7eb4b11076f320971a76e8943bcd +%%WWWDIR%%/go/modules/business/.git/objects/79/7260817b9775c3b51c56274dc073a7f29b74e3 +%%WWWDIR%%/go/modules/business/.git/objects/7c/05b0c8c0dbbb7aa2e7194f011dca704071851b +%%WWWDIR%%/go/modules/business/.git/objects/88/e65cb999c64ffa17a72331857b78c5ab427c04 +%%WWWDIR%%/go/modules/business/.git/objects/8b/e76e3c9663fa918b882dc080a679ffa0e47f96 +%%WWWDIR%%/go/modules/business/.git/objects/8e/32a34b3b020be18e280b4b7585f35fe155d8f6 +%%WWWDIR%%/go/modules/business/.git/objects/8e/670c18a6bc0f5d2b211a890baf245f14e3ba28 +%%WWWDIR%%/go/modules/business/.git/objects/91/91e40f7f2c989a899f22bd1cef2e272db9ce41 +%%WWWDIR%%/go/modules/business/.git/objects/98/dc46ef479a7b5f9f0c50fbfe8ebcc6dfcb412f +%%WWWDIR%%/go/modules/business/.git/objects/9b/d16fb3218da7a34cfd11727edd7e3ad6f5c5bf +%%WWWDIR%%/go/modules/business/.git/objects/9e/01b7e19ba2c40dca9519303d3fb753986ccadb +%%WWWDIR%%/go/modules/business/.git/objects/a0/97422c6a4f41ba2d419ce7f915aee4e0f9fbcc +%%WWWDIR%%/go/modules/business/.git/objects/a5/bc181ce5dbcbc976e9fe884e0ffad618a3e622 +%%WWWDIR%%/go/modules/business/.git/objects/aa/48f429f57ad5eaaff22790dec0f7f8e47dbd9e +%%WWWDIR%%/go/modules/business/.git/objects/aa/82518a85cbec2e7cf5fd1be90e145bcce5192d +%%WWWDIR%%/go/modules/business/.git/objects/ab/3f49b24148d6d8b77262b962e7eaa2870580f6 +%%WWWDIR%%/go/modules/business/.git/objects/ac/4b583d1a3da3658936aed3be81207f68d1906e +%%WWWDIR%%/go/modules/business/.git/objects/ac/cb598df5a9da4b048d6d0a0016957337367f38 +%%WWWDIR%%/go/modules/business/.git/objects/af/0b26dd0a73f9d2bc5c7c65d37dc4a90bcc8e39 +%%WWWDIR%%/go/modules/business/.git/objects/bc/845dd5c4661faeb7d701ca9906eb8aca114c70 +%%WWWDIR%%/go/modules/business/.git/objects/bd/656344d9c8bf8e006d3e15e79d19c35cef6a1d +%%WWWDIR%%/go/modules/business/.git/objects/c3/c99750ca28f7abe5661e7f2bbc5e5820e2494c +%%WWWDIR%%/go/modules/business/.git/objects/c3/f65ea83b4df4c34e54a98f514983ba15163b49 +%%WWWDIR%%/go/modules/business/.git/objects/c4/1e1d259b68932d3e68a06d65722050e84a5093 +%%WWWDIR%%/go/modules/business/.git/objects/ca/d50385beeda4e4c8956f46e4e094b4b144ade0 +%%WWWDIR%%/go/modules/business/.git/objects/cb/67de249d9743ae1ee8909952b5e356c0d302ea +%%WWWDIR%%/go/modules/business/.git/objects/cd/e1ee683e0295ed975e7bca0ef394db488c9e79 +%%WWWDIR%%/go/modules/business/.git/objects/d5/39f42de26b8997a727d9be6eed14d6a1986d42 +%%WWWDIR%%/go/modules/business/.git/objects/dc/8ae31e5583607e7277715d3dd308bf11c891e9 +%%WWWDIR%%/go/modules/business/.git/objects/de/4d80342b4d48353995d4dc7e2624bdcd93b1b1 +%%WWWDIR%%/go/modules/business/.git/objects/e0/8649d4eb193c36dd55e87e9c72cba83e40bd75 +%%WWWDIR%%/go/modules/business/.git/objects/e6/67219de1b36d13c38c863d6e88386bf6513565 +%%WWWDIR%%/go/modules/business/.git/objects/e7/a24958a414cf0a82b9208f21a4a62349f6e775 +%%WWWDIR%%/go/modules/business/.git/objects/e8/843825a381eaf2b9301958c8e6f2fbbef6f1cc +%%WWWDIR%%/go/modules/business/.git/objects/e9/a51c2b9d8650ec90440a860df850da8906bdd8 +%%WWWDIR%%/go/modules/business/.git/objects/f1/c04b9a1f4f4c0d8f2acfd4e2180e2db1e6da3f +%%WWWDIR%%/go/modules/business/.git/objects/f2/06596fa55d92ea92589ac6914ddf63a2c36eff +%%WWWDIR%%/go/modules/business/.git/objects/fe/c6b38e0fc704180b8c2634255ac76aff462904 +%%WWWDIR%%/go/modules/business/.git/objects/ff/ad73e02727fb5dac91f0d62a9df94bbb0801d4 +%%WWWDIR%%/go/modules/business/.git/objects/pack/pack-65e49422e71647c14a6556ebe5cd23627029a691.idx +%%WWWDIR%%/go/modules/business/.git/objects/pack/pack-65e49422e71647c14a6556ebe5cd23627029a691.pack +%%WWWDIR%%/go/modules/business/.git/packed-refs +%%WWWDIR%%/go/modules/business/.git/refs/heads/6.4.x +%%WWWDIR%%/go/modules/business/.git/refs/heads/master +%%WWWDIR%%/go/modules/business/.git/refs/remotes/origin/6.4.x +%%WWWDIR%%/go/modules/business/.git/refs/remotes/origin/HEAD +%%WWWDIR%%/go/modules/business/.git/refs/remotes/origin/master +%%WWWDIR%%/go/modules/business/.gitignore +%%WWWDIR%%/go/modules/business/newsletters/LicenseCheck.php +%%WWWDIR%%/go/modules/business/newsletters/Module.php +%%WWWDIR%%/go/modules/business/newsletters/controller/AddressList.php +%%WWWDIR%%/go/modules/business/newsletters/controller/Newsletter.php +%%WWWDIR%%/go/modules/business/newsletters/controller/Subscription.php +%%WWWDIR%%/go/modules/business/newsletters/cron/Mailer.php +%%WWWDIR%%/go/modules/business/newsletters/icon.png +%%WWWDIR%%/go/modules/business/newsletters/install/install.sql +%%WWWDIR%%/go/modules/business/newsletters/install/uninstall.sql +%%WWWDIR%%/go/modules/business/newsletters/install/updates.php +%%WWWDIR%%/go/modules/business/newsletters/language/en.php +%%WWWDIR%%/go/modules/business/newsletters/language/nl.php +%%WWWDIR%%/go/modules/business/newsletters/model/AddressList.php +%%WWWDIR%%/go/modules/business/newsletters/model/AddressListEntity.php +%%WWWDIR%%/go/modules/business/newsletters/model/Newsletter.php +%%WWWDIR%%/go/modules/business/newsletters/model/NewsletterAttachment.php +%%WWWDIR%%/go/modules/business/newsletters/model/NewsletterEntity.php +%%WWWDIR%%/go/modules/business/newsletters/views/extjs3/AddressListDialog.js +%%WWWDIR%%/go/modules/business/newsletters/views/extjs3/AddressListGrid.js +%%WWWDIR%%/go/modules/business/newsletters/views/extjs3/Composer.js +%%WWWDIR%%/go/modules/business/newsletters/views/extjs3/MainPanel.js +%%WWWDIR%%/go/modules/business/newsletters/views/extjs3/Module.js +%%WWWDIR%%/go/modules/business/newsletters/views/extjs3/SentItemsGrid.js +%%WWWDIR%%/go/modules/business/newsletters/views/extjs3/SystemSettingsPanel.js +%%WWWDIR%%/go/modules/business/newsletters/views/extjs3/TemplatesWindow.js +%%WWWDIR%%/go/modules/business/newsletters/views/extjs3/scripts.txt +%%WWWDIR%%/go/modules/business/newsletters/views/extjs3/themes/default/style.css +%%WWWDIR%%/go/modules/community/addressbook/Module.php %%WWWDIR%%/go/modules/community/addressbook/controller/AddressBook.php +%%WWWDIR%%/go/modules/community/addressbook/controller/Contact.php +%%WWWDIR%%/go/modules/community/addressbook/controller/ContactStar.php +%%WWWDIR%%/go/modules/community/addressbook/controller/Group.php +%%WWWDIR%%/go/modules/community/addressbook/controller/Migrate.php +%%WWWDIR%%/go/modules/community/addressbook/convert/Csv.php +%%WWWDIR%%/go/modules/community/addressbook/convert/VCard.php +%%WWWDIR%%/go/modules/community/addressbook/customfield/Contact.php +%%WWWDIR%%/go/modules/community/addressbook/icon.png +%%WWWDIR%%/go/modules/community/addressbook/install/Migrate63to64.php +%%WWWDIR%%/go/modules/community/addressbook/install/install.sql +%%WWWDIR%%/go/modules/community/addressbook/install/migrate.txt +%%WWWDIR%%/go/modules/community/addressbook/install/uninstall.sql +%%WWWDIR%%/go/modules/community/addressbook/install/updates.php +%%WWWDIR%%/go/modules/community/addressbook/language/en.php +%%WWWDIR%%/go/modules/community/addressbook/language/nl.php +%%WWWDIR%%/go/modules/community/addressbook/model/Address.php %%WWWDIR%%/go/modules/community/addressbook/model/AddressBook.php +%%WWWDIR%%/go/modules/community/addressbook/model/Contact.php +%%WWWDIR%%/go/modules/community/addressbook/model/ContactCustomFields.php +%%WWWDIR%%/go/modules/community/addressbook/model/ContactGroup.php +%%WWWDIR%%/go/modules/community/addressbook/model/Date.php +%%WWWDIR%%/go/modules/community/addressbook/model/EmailAddress.php +%%WWWDIR%%/go/modules/community/addressbook/model/Group.php +%%WWWDIR%%/go/modules/community/addressbook/model/PhoneNumber.php +%%WWWDIR%%/go/modules/community/addressbook/model/Url.php +%%WWWDIR%%/go/modules/community/addressbook/model/UserSettings.php +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/AddressBookCombo.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/AddressBookDialog.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/AddressBookTree.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/AddressesField.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/ContactCombo.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/ContactDetail.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/ContactDialog.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/ContactGrid.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/CustomFieldSetDialog.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/DatesField.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/EmailAddressesField.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/GroupDialog.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/MainPanel.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/Module.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/NameField.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/PhoneNumbersField.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/SelectDialog.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/SettingsPanel.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/SettingsProfilePanel.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/StarButton.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/TreeLoader.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/UrlsField.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/Utils.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/customfield/Contact.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/customfield/ContactDialog.js +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/scripts.txt +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/themes/default/resources/addressbook.png +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/themes/default/resources/facebook.png +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/themes/default/resources/linkedin.png +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/themes/default/resources/twitter.png +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/themes/default/src/style.scss +%%WWWDIR%%/go/modules/community/addressbook/views/extjs3/themes/default/style.css %%WWWDIR%%/go/modules/community/apikeys/Module.php %%WWWDIR%%/go/modules/community/apikeys/controller/Key.php +%%WWWDIR%%/go/modules/community/apikeys/examples/contact.php +%%WWWDIR%%/go/modules/community/apikeys/examples/instance.php %%WWWDIR%%/go/modules/community/apikeys/install/install.sql %%WWWDIR%%/go/modules/community/apikeys/install/uninstall.sql %%WWWDIR%%/go/modules/community/apikeys/language/cs.php @@ -370,10 +835,64 @@ %%WWWDIR%%/go/modules/community/apikeys/views/extjs3/Module.js %%WWWDIR%%/go/modules/community/apikeys/views/extjs3/SystemSettingsPanel.js %%WWWDIR%%/go/modules/community/apikeys/views/extjs3/scripts.txt +%%WWWDIR%%/go/modules/community/bookmarks/Module.php +%%WWWDIR%%/go/modules/community/bookmarks/controller/Bookmark.php +%%WWWDIR%%/go/modules/community/bookmarks/controller/Category.php +%%WWWDIR%%/go/modules/community/bookmarks/icon.png +%%WWWDIR%%/go/modules/community/bookmarks/install/install.sql +%%WWWDIR%%/go/modules/community/bookmarks/install/uninstall.sql +%%WWWDIR%%/go/modules/community/bookmarks/install/updates.php +%%WWWDIR%%/go/modules/community/bookmarks/language/en.php +%%WWWDIR%%/go/modules/community/bookmarks/language/nl.php +%%WWWDIR%%/go/modules/community/bookmarks/model/Bookmark.php +%%WWWDIR%%/go/modules/community/bookmarks/model/Category.php +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/BookmarkColumnView.js +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/BookmarkCombo.js +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/BookmarkContextMenu.js +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/BookmarksDialog.js +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/BookmarksView.js +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/CategoryDialog.js +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/MainPanel.js +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/ManageCategoriesGrid.js +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/ManageCategoryDialog.js +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/Module.js +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/scripts.txt +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/themes/default/images/bookmark.png +%%WWWDIR%%/go/modules/community/bookmarks/views/extjs3/themes/default/style.css %%WWWDIR%%/go/modules/community/calendar/controller/Calendar.php %%WWWDIR%%/go/modules/community/calendar/model/Calendar.php +%%WWWDIR%%/go/modules/community/carddav/Backend.php +%%WWWDIR%%/go/modules/community/carddav/Module.php +%%WWWDIR%%/go/modules/community/carddav/index.php +%%WWWDIR%%/go/modules/community/carddav/language/en.php +%%WWWDIR%%/go/modules/community/comments/Module.php +%%WWWDIR%%/go/modules/community/comments/controller/Comment.php +%%WWWDIR%%/go/modules/community/comments/controller/Label.php +%%WWWDIR%%/go/modules/community/comments/icon.png +%%WWWDIR%%/go/modules/community/comments/install/install.sql +%%WWWDIR%%/go/modules/community/comments/install/uninstall.sql +%%WWWDIR%%/go/modules/community/comments/install/updates.php +%%WWWDIR%%/go/modules/community/comments/language/en.php +%%WWWDIR%%/go/modules/community/comments/language/nl.php +%%WWWDIR%%/go/modules/community/comments/model/Comment.php +%%WWWDIR%%/go/modules/community/comments/model/Label.php +%%WWWDIR%%/go/modules/community/comments/views/extjs3/CommentForm.js +%%WWWDIR%%/go/modules/community/comments/views/extjs3/CommentsDetailPanel.js +%%WWWDIR%%/go/modules/community/comments/views/extjs3/Composer.js +%%WWWDIR%%/go/modules/community/comments/views/extjs3/LabelGrid.js +%%WWWDIR%%/go/modules/community/comments/views/extjs3/Module.js +%%WWWDIR%%/go/modules/community/comments/views/extjs3/QuickaddForm.js +%%WWWDIR%%/go/modules/community/comments/views/extjs3/Settings.js +%%WWWDIR%%/go/modules/community/comments/views/extjs3/scripts.txt +%%WWWDIR%%/go/modules/community/comments/views/extjs3/themes/default/images/comments.png +%%WWWDIR%%/go/modules/community/comments/views/extjs3/themes/default/style.css +%%WWWDIR%%/go/modules/community/dev/Controller.tpl +%%WWWDIR%%/go/modules/community/dev/Module.php %%WWWDIR%%/go/modules/community/dev/controller/Debugger.php %%WWWDIR%%/go/modules/community/dev/controller/Language.php +%%WWWDIR%%/go/modules/community/dev/controller/Module.php +%%WWWDIR%%/go/modules/community/dev/controller/Replace.php +%%WWWDIR%%/go/modules/community/dev/language/en.php %%WWWDIR%%/go/modules/community/email/controller/Account.php %%WWWDIR%%/go/modules/community/email/model/Account.php %%WWWDIR%%/go/modules/community/googleauthenticator/Googleauthenticator.php @@ -426,6 +945,8 @@ %%WWWDIR%%/go/modules/community/ldapauthenticator/Module.php %%WWWDIR%%/go/modules/community/ldapauthenticator/README.md %%WWWDIR%%/go/modules/community/ldapauthenticator/controller/Server.php +%%WWWDIR%%/go/modules/community/ldapauthenticator/controller/Sync.php +%%WWWDIR%%/go/modules/community/ldapauthenticator/cron/Sync.php %%WWWDIR%%/go/modules/community/ldapauthenticator/install/install.sql %%WWWDIR%%/go/modules/community/ldapauthenticator/install/uninstall.sql %%WWWDIR%%/go/modules/community/ldapauthenticator/install/updates.php @@ -450,7 +971,6 @@ %%WWWDIR%%/go/modules/community/ldapauthenticator/views/extjs3/themes/default/style.css %%WWWDIR%%/go/modules/community/multi_instance/Module.php %%WWWDIR%%/go/modules/community/multi_instance/README.md -%%WWWDIR%%/go/modules/community/multi_instance/api_example/api-instance.php %%WWWDIR%%/go/modules/community/multi_instance/config.php.tpl %%WWWDIR%%/go/modules/community/multi_instance/controller/Instance.php %%WWWDIR%%/go/modules/community/multi_instance/cron/DeactivateTrials.php @@ -476,6 +996,7 @@ %%WWWDIR%%/go/modules/community/notes/Module.php %%WWWDIR%%/go/modules/community/notes/controller/Note.php %%WWWDIR%%/go/modules/community/notes/controller/NoteBook.php +%%WWWDIR%%/go/modules/community/notes/icon.png %%WWWDIR%%/go/modules/community/notes/install/install.sql %%WWWDIR%%/go/modules/community/notes/install/uninstall.sql %%WWWDIR%%/go/modules/community/notes/install/updates.php @@ -513,10 +1034,10 @@ %%WWWDIR%%/go/modules/community/notes/views/extjs3/MainPanel.js %%WWWDIR%%/go/modules/community/notes/views/extjs3/Module.js %%WWWDIR%%/go/modules/community/notes/views/extjs3/NoteBookCombo.js -%%WWWDIR%%/go/modules/community/notes/views/extjs3/NoteBookForm.js +%%WWWDIR%%/go/modules/community/notes/views/extjs3/NoteBookDialog.js %%WWWDIR%%/go/modules/community/notes/views/extjs3/NoteBookGrid.js %%WWWDIR%%/go/modules/community/notes/views/extjs3/NoteDetail.js -%%WWWDIR%%/go/modules/community/notes/views/extjs3/NoteForm.js +%%WWWDIR%%/go/modules/community/notes/views/extjs3/NoteDialog.js %%WWWDIR%%/go/modules/community/notes/views/extjs3/NoteGrid.js %%WWWDIR%%/go/modules/community/notes/views/extjs3/scripts.txt %%WWWDIR%%/go/modules/community/notes/views/extjs3/themes/default/images/notes.png @@ -564,232 +1085,6 @@ %%WWWDIR%%/go/modules/community/test/model/AHasOne.php %%WWWDIR%%/go/modules/community/test/model/B.php %%WWWDIR%%/go/modules/community/test/model/C.php -%%WWWDIR%%/go/modules/core/core/Module.php -%%WWWDIR%%/go/modules/core/core/controller/Settings.php -%%WWWDIR%%/go/modules/core/core/install/updates.php -%%WWWDIR%%/go/modules/core/core/language/ar.php -%%WWWDIR%%/go/modules/core/core/language/bg.php -%%WWWDIR%%/go/modules/core/core/language/bn_bd.php -%%WWWDIR%%/go/modules/core/core/language/ca.php -%%WWWDIR%%/go/modules/core/core/language/cn.php -%%WWWDIR%%/go/modules/core/core/language/cs.php -%%WWWDIR%%/go/modules/core/core/language/da.php -%%WWWDIR%%/go/modules/core/core/language/de.php -%%WWWDIR%%/go/modules/core/core/language/el.php -%%WWWDIR%%/go/modules/core/core/language/en.php -%%WWWDIR%%/go/modules/core/core/language/en_uk.php -%%WWWDIR%%/go/modules/core/core/language/es.php -%%WWWDIR%%/go/modules/core/core/language/et.php -%%WWWDIR%%/go/modules/core/core/language/fi.php -%%WWWDIR%%/go/modules/core/core/language/fr.php -%%WWWDIR%%/go/modules/core/core/language/hr.php -%%WWWDIR%%/go/modules/core/core/language/hu.php -%%WWWDIR%%/go/modules/core/core/language/id.php -%%WWWDIR%%/go/modules/core/core/language/it.php -%%WWWDIR%%/go/modules/core/core/language/ko.php -%%WWWDIR%%/go/modules/core/core/language/nb.php -%%WWWDIR%%/go/modules/core/core/language/nl.php -%%WWWDIR%%/go/modules/core/core/language/pl.php -%%WWWDIR%%/go/modules/core/core/language/pt_br.php -%%WWWDIR%%/go/modules/core/core/language/ro.php -%%WWWDIR%%/go/modules/core/core/language/ru.php -%%WWWDIR%%/go/modules/core/core/language/sv.php -%%WWWDIR%%/go/modules/core/core/language/th.php -%%WWWDIR%%/go/modules/core/core/language/tr.php -%%WWWDIR%%/go/modules/core/core/language/zh_tw.php -%%WWWDIR%%/go/modules/core/core/model/CronJob.php -%%WWWDIR%%/go/modules/core/core/model/CronJobSchedule.php -%%WWWDIR%%/go/modules/core/core/model/Settings.php -%%WWWDIR%%/go/modules/core/customfields/Module.php -%%WWWDIR%%/go/modules/core/customfields/controller/Field.php -%%WWWDIR%%/go/modules/core/customfields/controller/FieldSet.php -%%WWWDIR%%/go/modules/core/customfields/install/install.sql -%%WWWDIR%%/go/modules/core/customfields/language/bn_bd.php -%%WWWDIR%%/go/modules/core/customfields/language/cs.php -%%WWWDIR%%/go/modules/core/customfields/language/de.php -%%WWWDIR%%/go/modules/core/customfields/language/en.php -%%WWWDIR%%/go/modules/core/customfields/language/es.php -%%WWWDIR%%/go/modules/core/customfields/language/fr.php -%%WWWDIR%%/go/modules/core/customfields/language/hu.php -%%WWWDIR%%/go/modules/core/customfields/language/id.php -%%WWWDIR%%/go/modules/core/customfields/language/it.php -%%WWWDIR%%/go/modules/core/customfields/language/ko.php -%%WWWDIR%%/go/modules/core/customfields/language/nb.php -%%WWWDIR%%/go/modules/core/customfields/language/nl.php -%%WWWDIR%%/go/modules/core/customfields/language/pl.php -%%WWWDIR%%/go/modules/core/customfields/language/pt_br.php -%%WWWDIR%%/go/modules/core/customfields/language/ro.php -%%WWWDIR%%/go/modules/core/customfields/language/ru.php -%%WWWDIR%%/go/modules/core/customfields/language/sv.php -%%WWWDIR%%/go/modules/core/customfields/language/th.php -%%WWWDIR%%/go/modules/core/customfields/model/Field.php -%%WWWDIR%%/go/modules/core/customfields/model/FieldSet.php -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/CategoriesDialog.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/CategoriesPanel.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/CategoryDialog.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/CategoryFormPanel.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/CustomFormPanel.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/CustomfieldsTpl.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/DataTypes.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/DisableCategoriesPanel.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/EnableBlocksPanel.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/FieldDialog.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/Functions.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/ImportDialog.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/MainPanel.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/ManageBlockDialog.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/ManageBlocksGrid.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/Module.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/SelectOptionsGrid.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/TreeSelectOptions.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/TypePanel.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/namespaces.js -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/scripts.inc.php -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/scripts.txt -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/themes/default/images/categories.png -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/themes/default/images/customfields.png -%%WWWDIR%%/go/modules/core/customfields/views/extjs3/themes/default/style.css -%%WWWDIR%%/go/modules/core/groups/Module.php -%%WWWDIR%%/go/modules/core/groups/controller/Group.php -%%WWWDIR%%/go/modules/core/groups/controller/Settings.php -%%WWWDIR%%/go/modules/core/groups/language/bg.php -%%WWWDIR%%/go/modules/core/groups/language/bn_bd.php -%%WWWDIR%%/go/modules/core/groups/language/ca.php -%%WWWDIR%%/go/modules/core/groups/language/cn.php -%%WWWDIR%%/go/modules/core/groups/language/cs.php -%%WWWDIR%%/go/modules/core/groups/language/da.php -%%WWWDIR%%/go/modules/core/groups/language/de.php -%%WWWDIR%%/go/modules/core/groups/language/el.php -%%WWWDIR%%/go/modules/core/groups/language/en.php -%%WWWDIR%%/go/modules/core/groups/language/es.php -%%WWWDIR%%/go/modules/core/groups/language/et.php -%%WWWDIR%%/go/modules/core/groups/language/fi.php -%%WWWDIR%%/go/modules/core/groups/language/fr.php -%%WWWDIR%%/go/modules/core/groups/language/hr.php -%%WWWDIR%%/go/modules/core/groups/language/hu.php -%%WWWDIR%%/go/modules/core/groups/language/it.php -%%WWWDIR%%/go/modules/core/groups/language/ko.php -%%WWWDIR%%/go/modules/core/groups/language/nb.php -%%WWWDIR%%/go/modules/core/groups/language/nl.php -%%WWWDIR%%/go/modules/core/groups/language/pl.php -%%WWWDIR%%/go/modules/core/groups/language/pt_br.php -%%WWWDIR%%/go/modules/core/groups/language/ro.php -%%WWWDIR%%/go/modules/core/groups/language/ru.php -%%WWWDIR%%/go/modules/core/groups/language/sv.php -%%WWWDIR%%/go/modules/core/groups/language/th.php -%%WWWDIR%%/go/modules/core/groups/language/tr.php -%%WWWDIR%%/go/modules/core/groups/language/zh_tw.php -%%WWWDIR%%/go/modules/core/groups/model/Group.php -%%WWWDIR%%/go/modules/core/groups/model/Settings.php -%%WWWDIR%%/go/modules/core/groups/readme.txt -%%WWWDIR%%/go/modules/core/groups/views/extjs3/GroupDefaultsWindow.js -%%WWWDIR%%/go/modules/core/groups/views/extjs3/GroupDialog.js -%%WWWDIR%%/go/modules/core/groups/views/extjs3/GroupUserGrid.js -%%WWWDIR%%/go/modules/core/groups/views/extjs3/Module.js -%%WWWDIR%%/go/modules/core/groups/views/extjs3/SystemSettingsGroupGrid.js -%%WWWDIR%%/go/modules/core/groups/views/extjs3/scripts.txt -%%WWWDIR%%/go/modules/core/groups/views/extjs3/themes/default/images/users.png -%%WWWDIR%%/go/modules/core/groups/views/extjs3/themes/default/style.css -%%WWWDIR%%/go/modules/core/links/Module.php -%%WWWDIR%%/go/modules/core/links/controller/Link.php -%%WWWDIR%%/go/modules/core/links/language/en.php -%%WWWDIR%%/go/modules/core/links/language/fr.php -%%WWWDIR%%/go/modules/core/links/language/nl.php -%%WWWDIR%%/go/modules/core/links/model/Link.php -%%WWWDIR%%/go/modules/core/links/views/extjs3/CreateLinkButton.js -%%WWWDIR%%/go/modules/core/links/views/extjs3/LinkBrowserMenuItem.js -%%WWWDIR%%/go/modules/core/links/views/extjs3/Module.js -%%WWWDIR%%/go/modules/core/links/views/extjs3/scripts.txt -%%WWWDIR%%/go/modules/core/modules/Module.php -%%WWWDIR%%/go/modules/core/modules/controller/Module.php -%%WWWDIR%%/go/modules/core/modules/language/bg.php -%%WWWDIR%%/go/modules/core/modules/language/bn_bd.php -%%WWWDIR%%/go/modules/core/modules/language/ca.php -%%WWWDIR%%/go/modules/core/modules/language/cn.php -%%WWWDIR%%/go/modules/core/modules/language/cs.php -%%WWWDIR%%/go/modules/core/modules/language/da.php -%%WWWDIR%%/go/modules/core/modules/language/de.php -%%WWWDIR%%/go/modules/core/modules/language/el.php -%%WWWDIR%%/go/modules/core/modules/language/en.php -%%WWWDIR%%/go/modules/core/modules/language/es.php -%%WWWDIR%%/go/modules/core/modules/language/et.php -%%WWWDIR%%/go/modules/core/modules/language/fi.php -%%WWWDIR%%/go/modules/core/modules/language/fr.php -%%WWWDIR%%/go/modules/core/modules/language/hr.php -%%WWWDIR%%/go/modules/core/modules/language/hu.php -%%WWWDIR%%/go/modules/core/modules/language/it.php -%%WWWDIR%%/go/modules/core/modules/language/ko.php -%%WWWDIR%%/go/modules/core/modules/language/nb.php -%%WWWDIR%%/go/modules/core/modules/language/nl.php -%%WWWDIR%%/go/modules/core/modules/language/pl.php -%%WWWDIR%%/go/modules/core/modules/language/pt_br.php -%%WWWDIR%%/go/modules/core/modules/language/ro.php -%%WWWDIR%%/go/modules/core/modules/language/ru.php -%%WWWDIR%%/go/modules/core/modules/language/sv.php -%%WWWDIR%%/go/modules/core/modules/language/th.php -%%WWWDIR%%/go/modules/core/modules/language/tr.php -%%WWWDIR%%/go/modules/core/modules/language/zh_tw.php -%%WWWDIR%%/go/modules/core/modules/model/Module.php -%%WWWDIR%%/go/modules/core/search/Module.php -%%WWWDIR%%/go/modules/core/search/controller/Search.php -%%WWWDIR%%/go/modules/core/search/language/cs.php -%%WWWDIR%%/go/modules/core/search/language/en.php -%%WWWDIR%%/go/modules/core/search/language/fr.php -%%WWWDIR%%/go/modules/core/search/language/it.php -%%WWWDIR%%/go/modules/core/search/language/pt_br.php -%%WWWDIR%%/go/modules/core/search/model/Search.php -%%WWWDIR%%/go/modules/core/search/views/extjs3/Module.js -%%WWWDIR%%/go/modules/core/search/views/extjs3/Panel.js -%%WWWDIR%%/go/modules/core/search/views/extjs3/SearchCombo.js -%%WWWDIR%%/go/modules/core/search/views/extjs3/scripts.txt -%%WWWDIR%%/go/modules/core/users/Module.php -%%WWWDIR%%/go/modules/core/users/controller/Settings.php -%%WWWDIR%%/go/modules/core/users/controller/User.php -%%WWWDIR%%/go/modules/core/users/install/updates.php -%%WWWDIR%%/go/modules/core/users/language/bg.php -%%WWWDIR%%/go/modules/core/users/language/bn_bd.php -%%WWWDIR%%/go/modules/core/users/language/ca.php -%%WWWDIR%%/go/modules/core/users/language/cn.php -%%WWWDIR%%/go/modules/core/users/language/cs.php -%%WWWDIR%%/go/modules/core/users/language/da.php -%%WWWDIR%%/go/modules/core/users/language/de.php -%%WWWDIR%%/go/modules/core/users/language/el.php -%%WWWDIR%%/go/modules/core/users/language/en.php -%%WWWDIR%%/go/modules/core/users/language/es.php -%%WWWDIR%%/go/modules/core/users/language/et.php -%%WWWDIR%%/go/modules/core/users/language/fi.php -%%WWWDIR%%/go/modules/core/users/language/fr.php -%%WWWDIR%%/go/modules/core/users/language/hr.php -%%WWWDIR%%/go/modules/core/users/language/hu.php -%%WWWDIR%%/go/modules/core/users/language/id.php -%%WWWDIR%%/go/modules/core/users/language/it.php -%%WWWDIR%%/go/modules/core/users/language/ko.php -%%WWWDIR%%/go/modules/core/users/language/nb.php -%%WWWDIR%%/go/modules/core/users/language/nl.php -%%WWWDIR%%/go/modules/core/users/language/pl.php -%%WWWDIR%%/go/modules/core/users/language/pt_br.php -%%WWWDIR%%/go/modules/core/users/language/ro.php -%%WWWDIR%%/go/modules/core/users/language/ru.php -%%WWWDIR%%/go/modules/core/users/language/sv.php -%%WWWDIR%%/go/modules/core/users/language/th.php -%%WWWDIR%%/go/modules/core/users/language/tr.php -%%WWWDIR%%/go/modules/core/users/language/zh_tw.php -%%WWWDIR%%/go/modules/core/users/model/Settings.php -%%WWWDIR%%/go/modules/core/users/model/User.php -%%WWWDIR%%/go/modules/core/users/model/UserGroup.php -%%WWWDIR%%/go/modules/core/users/model/WorkingWeek.php -%%WWWDIR%%/go/modules/core/users/views/extjs3/CreateUserAccountPanel.js -%%WWWDIR%%/go/modules/core/users/views/extjs3/CreateUserPasswordPanel.js -%%WWWDIR%%/go/modules/core/users/views/extjs3/CreateUserWizard.js -%%WWWDIR%%/go/modules/core/users/views/extjs3/Module.js -%%WWWDIR%%/go/modules/core/users/views/extjs3/SystemSettingsUserGrid.js -%%WWWDIR%%/go/modules/core/users/views/extjs3/UserDefaultsWindow.js -%%WWWDIR%%/go/modules/core/users/views/extjs3/UserGroupGrid.js -%%WWWDIR%%/go/modules/core/users/views/extjs3/UserSettingsWorkingWeek.js -%%WWWDIR%%/go/modules/core/users/views/extjs3/scripts.txt -%%WWWDIR%%/go/modules/core/users/views/extjs3/themes/default/images/key.png -%%WWWDIR%%/go/modules/core/users/views/extjs3/themes/default/images/users.png -%%WWWDIR%%/go/modules/core/users/views/extjs3/themes/default/style.css %%WWWDIR%%/go/vendor/jupload/readme.md %%WWWDIR%%/go/vendor/jupload/wjhk.jupload.jar %%WWWDIR%%/go/vendor/odtphp/library/Segment.php @@ -819,9 +1114,7 @@ %%WWWDIR%%/go/vendor/wsdl/checkVatService.wsdl %%WWWDIR%%/groupoffice %%WWWDIR%%/groupofficecli.php -%%WWWDIR%%/importlang.php %%WWWDIR%%/index.php -%%WWWDIR%%/install/62to63.php %%WWWDIR%%/install/configfile.php %%WWWDIR%%/install/configfile.php.bak %%WWWDIR%%/install/finished.php @@ -830,20 +1123,9 @@ %%WWWDIR%%/install/header.php %%WWWDIR%%/install/index.php %%WWWDIR%%/install/install.php -%%WWWDIR%%/install/install.sql %%WWWDIR%%/install/style.css %%WWWDIR%%/install/test.php -%%WWWDIR%%/install/updatescripts/11_users_to_addressbook.inc.php -%%WWWDIR%%/install/updatescripts/12_users_to_companies.php -%%WWWDIR%%/install/updatescripts/13_insert_system_cron.php -%%WWWDIR%%/install/updatescripts/14_insert_disk_usage_cron.php -%%WWWDIR%%/install/updatescripts/15_update_dutch_holidays.php -%%WWWDIR%%/install/updatescripts/16_update_db_collation_utf8_general_ci_to_utf8mb4_unicode_ci.php -%%WWWDIR%%/install/updatescripts/17_build_options.php -%%WWWDIR%%/install/updatescripts/18_entities.php *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Sun Jun 16 14:57:52 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6998215C1446; Sun, 16 Jun 2019 14:57:52 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0C3268422B; Sun, 16 Jun 2019 14:57:52 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D969F180AE; Sun, 16 Jun 2019 14:57:51 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GEvpf9023212; Sun, 16 Jun 2019 14:57:51 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GEvpWu023211; Sun, 16 Jun 2019 14:57:51 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201906161457.x5GEvpWu023211@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Sun, 16 Jun 2019 14:57:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504349 - in head/games/aquaria: . files X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head/games/aquaria: . files X-SVN-Commit-Revision: 504349 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0C3268422B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 14:57:52 -0000 Author: rene Date: Sun Jun 16 14:57:51 2019 New Revision: 504349 URL: https://svnweb.freebsd.org/changeset/ports/504349 Log: games/aquaria: include dirent.h instead of sys/dir.h which is scheduled for removal. While here modernize USES PR: 238616 Approved by: maintainer (jbeich) Event: Berlin Hackathon 2019 Added: head/games/aquaria/files/patch-ExternalLibs_ttvfs_VFSTools.cpp (contents, props changed) Modified: head/games/aquaria/Makefile Modified: head/games/aquaria/Makefile ============================================================================== --- head/games/aquaria/Makefile Sun Jun 16 14:51:33 2019 (r504348) +++ head/games/aquaria/Makefile Sun Jun 16 14:57:51 2019 (r504349) @@ -22,7 +22,7 @@ USE_GITHUB= yes GH_ACCOUNT= AquariaOSE GH_PROJECT= Aquaria -USES= cmake:insource compiler:c++11-lang lua:51 openal pkgconfig +USES= cmake:insource compiler:c++11-lang lua:51 openal pkgconfig sdl EXCLUDE= AL FTGL GL SDL* freetype2 glm glpng/png glpng/zlib \ libogg-* libvorbis-* lua-* tinyxml2* EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ExternalLibs/,} Added: head/games/aquaria/files/patch-ExternalLibs_ttvfs_VFSTools.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/aquaria/files/patch-ExternalLibs_ttvfs_VFSTools.cpp Sun Jun 16 14:57:51 2019 (r504349) @@ -0,0 +1,15 @@ +--- ExternalLibs/ttvfs/VFSTools.cpp.orig 2016-06-19 23:56:27 UTC ++++ ExternalLibs/ttvfs/VFSTools.cpp +@@ -12,11 +12,7 @@ + # include + # include + #else +-# ifdef __HAIKU__ +-# include +-# else +-# include +-# endif ++# include + # include + #endif + From owner-svn-ports-all@freebsd.org Sun Jun 16 15:03:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D642415C1667; Sun, 16 Jun 2019 15:03:01 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 772EF8461D; Sun, 16 Jun 2019 15:03:01 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5EA5818260; Sun, 16 Jun 2019 15:03:01 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GF31O0028417; Sun, 16 Jun 2019 15:03:01 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GF31mJ028416; Sun, 16 Jun 2019 15:03:01 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906161503.x5GF31mJ028416@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 16 Jun 2019 15:03:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504350 - head/devel/openmp X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/devel/openmp X-SVN-Commit-Revision: 504350 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 772EF8461D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 15:03:02 -0000 Author: linimon Date: Sun Jun 16 15:03:00 2019 New Revision: 504350 URL: https://svnweb.freebsd.org/changeset/ports/504350 Log: Enable build on powerpc64. (It has been tested to build correctly.) Right now powerpc* are still GCC-based, so openmp functionality is still not in the base system by default. Looking at the errorlog results might cause you to think this change would unblock 308 builds, in reality, all but 28 of them are otherwise blocked on lang/R, where powerpc64 is not in ONLY_FOR_ARCHS. Approved by: portmgr (tier-2 blanket) Modified: head/devel/openmp/Makefile Modified: head/devel/openmp/Makefile ============================================================================== --- head/devel/openmp/Makefile Sun Jun 16 14:57:51 2019 (r504349) +++ head/devel/openmp/Makefile Sun Jun 16 15:03:00 2019 (r504350) @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt DEPRECATED= Part of base system since FreeBSD 11.3/12.1 EXPIRATION_DATE= 2020-02-01 -ONLY_FOR_ARCHS= amd64 i386 +ONLY_FOR_ARCHS= amd64 i386 powerpc64 USES= cmake compiler:c++11-lib perl5 tar:xz USE_PERL5= build From owner-svn-ports-all@freebsd.org Sun Jun 16 15:40:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 922F615C24FA; Sun, 16 Jun 2019 15:40:10 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 33C8A85AD6; Sun, 16 Jun 2019 15:40:10 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 081DD18775; Sun, 16 Jun 2019 15:40:10 +0000 (UTC) (envelope-from naddy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GFe96U044405; Sun, 16 Jun 2019 15:40:09 GMT (envelope-from naddy@FreeBSD.org) Received: (from naddy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GFe9BU044401; Sun, 16 Jun 2019 15:40:09 GMT (envelope-from naddy@FreeBSD.org) Message-Id: <201906161540.x5GFe9BU044401@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: naddy set sender to naddy@FreeBSD.org using -f From: Christian Weisgerber Date: Sun, 16 Jun 2019 15:40:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504351 - in head/shells: . yash X-SVN-Group: ports-head X-SVN-Commit-Author: naddy X-SVN-Commit-Paths: in head/shells: . yash X-SVN-Commit-Revision: 504351 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 33C8A85AD6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 15:40:10 -0000 Author: naddy Date: Sun Jun 16 15:40:08 2019 New Revision: 504351 URL: https://svnweb.freebsd.org/changeset/ports/504351 Log: New port: shells/yash Yash, yet another shell, is a POSIX-compliant command line shell. Yash is intended to be the most POSIX-compliant shell in the world while supporting features for daily interactive and scripting use. Notable features are: * Global aliases * Arrays * Socket redirection, pipeline redirection, and process redirection * Brace expansion and extended globbing * Fractional numbers in arithmetic expansion * Prompt command and command-not-found handler * Command line completion with predefined completion scripts for more than 100 commands * Command line prediction based on command history WWW: https://yash.osdn.jp/index.html.en Added: head/shells/yash/ head/shells/yash/Makefile (contents, props changed) head/shells/yash/distinfo (contents, props changed) head/shells/yash/pkg-descr (contents, props changed) head/shells/yash/pkg-plist (contents, props changed) Modified: head/shells/Makefile Modified: head/shells/Makefile ============================================================================== --- head/shells/Makefile Sun Jun 16 15:03:00 2019 (r504350) +++ head/shells/Makefile Sun Jun 16 15:40:08 2019 (r504351) @@ -53,6 +53,7 @@ SUBDIR += vshnu SUBDIR += wcd SUBDIR += xonsh + SUBDIR += yash SUBDIR += zsh SUBDIR += zsh-antigen SUBDIR += zsh-autosuggestions Added: head/shells/yash/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/yash/Makefile Sun Jun 16 15:40:08 2019 (r504351) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= yash +DISTVERSION= 2.48 +CATEGORIES= shells +MASTER_SITES= OSDN/yash/70439 + +MAINTAINER= naddy@FreeBSD.org +COMMENT= POSIX-compliant command line shell + +LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= tar:xz + +HAS_CONFIGURE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${MANPREFIX}/man + +OPTIONS_DEFINE= NLS +OPTIONS_SUB= yes + +NLS_USES= gettext-runtime +NLS_CONFIGURE_ENABLE= nls +NLS_CPPFLAGS= -I${LOCALBASE}/include +NLS_LDFLAGS= -L${LOCALBASE}/lib + +.include Added: head/shells/yash/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/yash/distinfo Sun Jun 16 15:40:08 2019 (r504351) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560694297 +SHA256 (yash-2.48.tar.xz) = f46294d77c5a646405db20a6dc3d16bc1ed109b061b2a508081ce483153c1e8d +SIZE (yash-2.48.tar.xz) = 736280 Added: head/shells/yash/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/yash/pkg-descr Sun Jun 16 15:40:08 2019 (r504351) @@ -0,0 +1,15 @@ +Yash, yet another shell, is a POSIX-compliant command line shell. +Yash is intended to be the most POSIX-compliant shell in the world +while supporting features for daily interactive and scripting use. +Notable features are: +* Global aliases +* Arrays +* Socket redirection, pipeline redirection, and process redirection +* Brace expansion and extended globbing +* Fractional numbers in arithmetic expansion +* Prompt command and command-not-found handler +* Command line completion with predefined completion scripts for more + than 100 commands +* Command line prediction based on command history + +WWW: https://yash.osdn.jp/index.html.en Added: head/shells/yash/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/shells/yash/pkg-plist Sun Jun 16 15:40:08 2019 (r504351) @@ -0,0 +1,230 @@ +bin/yash +man/ja/man1/yash.1.gz +man/man1/yash.1.gz +%%NLS%%share/locale/en@boldquot/LC_MESSAGES/yash.mo +%%NLS%%share/locale/en@quot/LC_MESSAGES/yash.mo +%%NLS%%share/locale/ja/LC_MESSAGES/yash.mo +%%DATADIR%%/completion/INIT +%%DATADIR%%/completion/[ +%%DATADIR%%/completion/_backup +%%DATADIR%%/completion/_blocksize +%%DATADIR%%/completion/_bsd +%%DATADIR%%/completion/_dot +%%DATADIR%%/completion/alias +%%DATADIR%%/completion/array +%%DATADIR%%/completion/awk +%%DATADIR%%/completion/basename +%%DATADIR%%/completion/bash +%%DATADIR%%/completion/bg +%%DATADIR%%/completion/bindkey +%%DATADIR%%/completion/break +%%DATADIR%%/completion/bsdtar +%%DATADIR%%/completion/carthage +%%DATADIR%%/completion/cat +%%DATADIR%%/completion/cd +%%DATADIR%%/completion/chgrp +%%DATADIR%%/completion/chmod +%%DATADIR%%/completion/chown +%%DATADIR%%/completion/chsh +%%DATADIR%%/completion/cmp +%%DATADIR%%/completion/comm +%%DATADIR%%/completion/command +%%DATADIR%%/completion/complete +%%DATADIR%%/completion/configure +%%DATADIR%%/completion/continue +%%DATADIR%%/completion/cp +%%DATADIR%%/completion/crontab +%%DATADIR%%/completion/csplit +%%DATADIR%%/completion/cut +%%DATADIR%%/completion/dash +%%DATADIR%%/completion/date +%%DATADIR%%/completion/df +%%DATADIR%%/completion/diff +%%DATADIR%%/completion/dirs +%%DATADIR%%/completion/disown +%%DATADIR%%/completion/dnf +%%DATADIR%%/completion/du +%%DATADIR%%/completion/echo +%%DATADIR%%/completion/ed +%%DATADIR%%/completion/egrep +%%DATADIR%%/completion/env +%%DATADIR%%/completion/eval +%%DATADIR%%/completion/eview +%%DATADIR%%/completion/evim +%%DATADIR%%/completion/ex +%%DATADIR%%/completion/exec +%%DATADIR%%/completion/exit +%%DATADIR%%/completion/expand +%%DATADIR%%/completion/export +%%DATADIR%%/completion/fc +%%DATADIR%%/completion/fg +%%DATADIR%%/completion/fgrep +%%DATADIR%%/completion/file +%%DATADIR%%/completion/find +%%DATADIR%%/completion/fold +%%DATADIR%%/completion/gawk +%%DATADIR%%/completion/getconf +%%DATADIR%%/completion/getopts +%%DATADIR%%/completion/gex +%%DATADIR%%/completion/git +%%DATADIR%%/completion/git-add +%%DATADIR%%/completion/git-am +%%DATADIR%%/completion/git-annotate +%%DATADIR%%/completion/git-apply +%%DATADIR%%/completion/git-bisect +%%DATADIR%%/completion/git-blame +%%DATADIR%%/completion/git-branch +%%DATADIR%%/completion/git-checkout +%%DATADIR%%/completion/git-cherry +%%DATADIR%%/completion/git-cherry-pick +%%DATADIR%%/completion/git-clean +%%DATADIR%%/completion/git-clone +%%DATADIR%%/completion/git-commit +%%DATADIR%%/completion/git-config +%%DATADIR%%/completion/git-describe +%%DATADIR%%/completion/git-diff +%%DATADIR%%/completion/git-diff-tree +%%DATADIR%%/completion/git-fetch +%%DATADIR%%/completion/git-format-patch +%%DATADIR%%/completion/git-grep +%%DATADIR%%/completion/git-init +%%DATADIR%%/completion/git-log +%%DATADIR%%/completion/git-ls-remote +%%DATADIR%%/completion/git-merge +%%DATADIR%%/completion/git-name-rev +%%DATADIR%%/completion/git-notes +%%DATADIR%%/completion/git-pull +%%DATADIR%%/completion/git-push +%%DATADIR%%/completion/git-rebase +%%DATADIR%%/completion/git-reflog +%%DATADIR%%/completion/git-remote +%%DATADIR%%/completion/git-request-pull +%%DATADIR%%/completion/git-reset +%%DATADIR%%/completion/git-rev-list +%%DATADIR%%/completion/git-rev-parse +%%DATADIR%%/completion/git-revert +%%DATADIR%%/completion/git-rm +%%DATADIR%%/completion/git-show +%%DATADIR%%/completion/git-show-branch +%%DATADIR%%/completion/git-stash +%%DATADIR%%/completion/git-status +%%DATADIR%%/completion/git-submodule +%%DATADIR%%/completion/git-svn +%%DATADIR%%/completion/git-tag +%%DATADIR%%/completion/git-whatchanged +%%DATADIR%%/completion/git-worktree +%%DATADIR%%/completion/gitg +%%DATADIR%%/completion/gitk +%%DATADIR%%/completion/gitx +%%DATADIR%%/completion/gnutar +%%DATADIR%%/completion/grep +%%DATADIR%%/completion/gtar +%%DATADIR%%/completion/gview +%%DATADIR%%/completion/gvim +%%DATADIR%%/completion/gvimdiff +%%DATADIR%%/completion/hash +%%DATADIR%%/completion/head +%%DATADIR%%/completion/help +%%DATADIR%%/completion/history +%%DATADIR%%/completion/iconv +%%DATADIR%%/completion/id +%%DATADIR%%/completion/jobs +%%DATADIR%%/completion/join +%%DATADIR%%/completion/kill +%%DATADIR%%/completion/ksh +%%DATADIR%%/completion/less +%%DATADIR%%/completion/ln +%%DATADIR%%/completion/local +%%DATADIR%%/completion/locale +%%DATADIR%%/completion/ls +%%DATADIR%%/completion/make +%%DATADIR%%/completion/man +%%DATADIR%%/completion/mesg +%%DATADIR%%/completion/mkdir +%%DATADIR%%/completion/mkfifo +%%DATADIR%%/completion/mksh +%%DATADIR%%/completion/more +%%DATADIR%%/completion/mv +%%DATADIR%%/completion/nawk +%%DATADIR%%/completion/newgrp +%%DATADIR%%/completion/nice +%%DATADIR%%/completion/nl +%%DATADIR%%/completion/nohup +%%DATADIR%%/completion/od +%%DATADIR%%/completion/passwd +%%DATADIR%%/completion/paste +%%DATADIR%%/completion/patch +%%DATADIR%%/completion/pathchk +%%DATADIR%%/completion/pgawk +%%DATADIR%%/completion/ping +%%DATADIR%%/completion/popd +%%DATADIR%%/completion/pr +%%DATADIR%%/completion/printf +%%DATADIR%%/completion/ps +%%DATADIR%%/completion/pushd +%%DATADIR%%/completion/pwd +%%DATADIR%%/completion/read +%%DATADIR%%/completion/readonly +%%DATADIR%%/completion/renice +%%DATADIR%%/completion/return +%%DATADIR%%/completion/rgview +%%DATADIR%%/completion/rgvim +%%DATADIR%%/completion/rm +%%DATADIR%%/completion/rmdir +%%DATADIR%%/completion/rsync +%%DATADIR%%/completion/rview +%%DATADIR%%/completion/rvim +%%DATADIR%%/completion/scp +%%DATADIR%%/completion/sed +%%DATADIR%%/completion/set +%%DATADIR%%/completion/sftp +%%DATADIR%%/completion/sh +%%DATADIR%%/completion/shift +%%DATADIR%%/completion/slogin +%%DATADIR%%/completion/sort +%%DATADIR%%/completion/split +%%DATADIR%%/completion/ssh +%%DATADIR%%/completion/ssh-add +%%DATADIR%%/completion/ssh-agent +%%DATADIR%%/completion/ssh-keygen +%%DATADIR%%/completion/stty +%%DATADIR%%/completion/su +%%DATADIR%%/completion/sudo +%%DATADIR%%/completion/sudoedit +%%DATADIR%%/completion/suspend +%%DATADIR%%/completion/svn +%%DATADIR%%/completion/tail +%%DATADIR%%/completion/tar +%%DATADIR%%/completion/tee +%%DATADIR%%/completion/test +%%DATADIR%%/completion/tig +%%DATADIR%%/completion/time +%%DATADIR%%/completion/touch +%%DATADIR%%/completion/tr +%%DATADIR%%/completion/trap +%%DATADIR%%/completion/tree +%%DATADIR%%/completion/type +%%DATADIR%%/completion/typeset +%%DATADIR%%/completion/ulimit +%%DATADIR%%/completion/umask +%%DATADIR%%/completion/unalias +%%DATADIR%%/completion/uname +%%DATADIR%%/completion/uniq +%%DATADIR%%/completion/unset +%%DATADIR%%/completion/useradd +%%DATADIR%%/completion/valgrind +%%DATADIR%%/completion/vi +%%DATADIR%%/completion/view +%%DATADIR%%/completion/vim +%%DATADIR%%/completion/vimdiff +%%DATADIR%%/completion/wait +%%DATADIR%%/completion/watch +%%DATADIR%%/completion/wc +%%DATADIR%%/completion/which +%%DATADIR%%/completion/who +%%DATADIR%%/completion/xargs +%%DATADIR%%/completion/yash +%%DATADIR%%/config +%%DATADIR%%/initialization/common +%%DATADIR%%/initialization/default +%%DATADIR%%/initialization/sample From owner-svn-ports-all@freebsd.org Sun Jun 16 15:40:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EBFB15C251B; Sun, 16 Jun 2019 15:40:13 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 44A0385ADB; Sun, 16 Jun 2019 15:40:13 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 184A018776; Sun, 16 Jun 2019 15:40:13 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GFeCvD044530; Sun, 16 Jun 2019 15:40:12 GMT (envelope-from pizzamig@FreeBSD.org) Received: (from pizzamig@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GFeC3S044528; Sun, 16 Jun 2019 15:40:12 GMT (envelope-from pizzamig@FreeBSD.org) Message-Id: <201906161540.x5GFeC3S044528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pizzamig set sender to pizzamig@FreeBSD.org using -f From: Luca Pizzamiglio Date: Sun, 16 Jun 2019 15:40:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504352 - head/net-mgmt/py-prometheus-client X-SVN-Group: ports-head X-SVN-Commit-Author: pizzamig X-SVN-Commit-Paths: head/net-mgmt/py-prometheus-client X-SVN-Commit-Revision: 504352 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 44A0385ADB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.975,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 15:40:13 -0000 Author: pizzamig Date: Sun Jun 16 15:40:12 2019 New Revision: 504352 URL: https://svnweb.freebsd.org/changeset/ports/504352 Log: net-mgmt/py-prometheus-client: Update to 0.7.0 Sponsored by: Berlin Devsummit 2019 Modified: head/net-mgmt/py-prometheus-client/Makefile head/net-mgmt/py-prometheus-client/distinfo Modified: head/net-mgmt/py-prometheus-client/Makefile ============================================================================== --- head/net-mgmt/py-prometheus-client/Makefile Sun Jun 16 15:40:08 2019 (r504351) +++ head/net-mgmt/py-prometheus-client/Makefile Sun Jun 16 15:40:12 2019 (r504352) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= prometheus-client -PORTVERSION= 0.6.0 +PORTVERSION= 0.7.0 DISTVERSIONPREFIX= v CATEGORIES= net-mgmt python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net-mgmt/py-prometheus-client/distinfo ============================================================================== --- head/net-mgmt/py-prometheus-client/distinfo Sun Jun 16 15:40:08 2019 (r504351) +++ head/net-mgmt/py-prometheus-client/distinfo Sun Jun 16 15:40:12 2019 (r504352) @@ -1,3 +1,3 @@ -TIMESTAMP = 1550658061 -SHA256 (prometheus-client_python-v0.6.0_GH0.tar.gz) = d1f99fbc91d3191d7dd78808665627fd3df0a34b52e000538cc18e39789a2cd7 -SIZE (prometheus-client_python-v0.6.0_GH0.tar.gz) = 60790 +TIMESTAMP = 1560428958 +SHA256 (prometheus-client_python-v0.7.0_GH0.tar.gz) = 2ce1ce6a407babf37ba992987a7c6ad80fd4ac47b7523e0d3e11ec640492b47b +SIZE (prometheus-client_python-v0.7.0_GH0.tar.gz) = 62531 From owner-svn-ports-all@freebsd.org Sun Jun 16 16:05:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2038415C320D; Sun, 16 Jun 2019 16:05:37 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B8AA586C79; Sun, 16 Jun 2019 16:05:36 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 651E618C6D; Sun, 16 Jun 2019 16:05:36 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GG5au1060610; Sun, 16 Jun 2019 16:05:36 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GG5TX9060574; Sun, 16 Jun 2019 16:05:29 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201906161605.x5GG5TX9060574@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Sun, 16 Jun 2019 16:05:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504353 - in head: comms/geoid devel/py-game games/fs2open games/openage games/supertux2 games/vegastrike graphics/aeskulap graphics/dcmtk graphics/electricsheep graphics/flif graphics/... X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head: comms/geoid devel/py-game games/fs2open games/openage games/supertux2 games/vegastrike graphics/aeskulap graphics/dcmtk graphics/electricsheep graphics/flif graphics/libheif graphics/luminanc... X-SVN-Commit-Revision: 504353 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B8AA586C79 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 16:05:37 -0000 Author: antoine Date: Sun Jun 16 16:05:28 2019 New Revision: 504353 URL: https://svnweb.freebsd.org/changeset/ports/504353 Log: Clean up LIB_DEPENDS Modified: head/comms/geoid/Makefile head/devel/py-game/Makefile head/games/fs2open/Makefile head/games/openage/Makefile head/games/supertux2/Makefile head/games/vegastrike/Makefile head/graphics/aeskulap/Makefile head/graphics/dcmtk/Makefile head/graphics/electricsheep/Makefile head/graphics/flif/Makefile head/graphics/libheif/Makefile head/graphics/luminance-qt5/Makefile head/graphics/magnum-extras/Makefile head/graphics/magnum-plugins/Makefile head/graphics/open3d/Makefile head/graphics/vv/Makefile head/graphics/yafaray/Makefile head/java/openjdk11/Makefile head/java/openjdk12/Makefile head/misc/libemos/Makefile head/misc/visp/Makefile head/misc/zygrib/Makefile head/multimedia/cinelerra-gg/Makefile head/multimedia/emby-server/Makefile head/net-im/telegram-purple/Makefile head/science/coot/Makefile head/science/lammps/Makefile head/science/liggghts/Makefile head/science/molscript/Makefile head/science/octopus/Makefile head/science/teem/Makefile head/sysutils/tracker-miners/Makefile head/www/dillo2/Makefile Modified: head/comms/geoid/Makefile ============================================================================== --- head/comms/geoid/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/comms/geoid/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -17,7 +17,7 @@ LICENSE_COMB= multi LIB_DEPENDS= libfltk.so:x11-toolkits/fltk \ libfontconfig.so:x11-fonts/fontconfig \ - libpng16.so:graphics/png + libpng.so:graphics/png USES= gmake jpeg USE_XORG= x11 xcursor xext xfixes xft xinerama xrender Modified: head/devel/py-game/Makefile ============================================================================== --- head/devel/py-game/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/devel/py-game/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/docs/LGPL BUILD_DEPENDS= v4l_compat>0:multimedia/v4l_compat LIB_DEPENDS= libfreetype.so:print/freetype2 \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libsmpeg.so:multimedia/smpeg RUN_DEPENDS= ${PYNUMPY} \ v4l_compat>0:multimedia/v4l_compat Modified: head/games/fs2open/Makefile ============================================================================== --- head/games/fs2open/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/games/fs2open/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING LICENSE_PERMS= dist-mirror auto-accept LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ - libpng16.so:graphics/png + libpng.so:graphics/png USES= cmake compiler:c++11-lang lua:51 jpeg openal pkgconfig sdl LLD_UNSAFE= yes Modified: head/games/openage/Makefile ============================================================================== --- head/games/openage/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/games/openage/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -24,7 +24,7 @@ LIB_DEPENDS= libepoxy.so:graphics/libepoxy \ libogg.so:audio/libogg \ libopus.so:audio/opus \ libopusfile.so:audio/opusfile \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libnyan.so:lang/nyan RUN_DEPENDS= ${PYNUMPY} \ ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py-Jinja2@${PY_FLAVOR} \ Modified: head/games/supertux2/Makefile ============================================================================== --- head/games/supertux2/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/games/supertux2/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -16,7 +16,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libfreetype.so:print/freetype2 \ libogg.so:audio/libogg \ libphysfs.so:devel/physfs \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libcurl.so:ftp/curl \ libvorbis.so:audio/libvorbis Modified: head/games/vegastrike/Makefile ============================================================================== --- head/games/vegastrike/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/games/vegastrike/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -23,7 +23,7 @@ RUN_DEPENDS= ${LOCALBASE}/${DATADIR_REL}/vegastrike.ic LIB_DEPENDS= ${PY_BOOST} \ libexpat.so:textproc/expat2 \ libogg.so:audio/libogg \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libvorbis.so:audio/libvorbis \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 Modified: head/graphics/aeskulap/Makefile ============================================================================== --- head/graphics/aeskulap/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/graphics/aeskulap/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -15,7 +15,7 @@ LIB_DEPENDS= libdcmimage.so:graphics/dcmtk \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libglademm-2.4.so:devel/libglademm24 \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libtiff.so:graphics/tiff USES= compiler:c++11-lang autoreconf desktop-file-utils gettext \ Modified: head/graphics/dcmtk/Makefile ============================================================================== --- head/graphics/dcmtk/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/graphics/dcmtk/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -14,7 +14,7 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYRIGHT LIB_DEPENDS= libicuuc.so:devel/icu \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libtiff.so:graphics/tiff USES= compiler:c++11-lang cmake gnome jpeg ssl Modified: head/graphics/electricsheep/Makefile ============================================================================== --- head/graphics/electricsheep/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/graphics/electricsheep/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -19,7 +19,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libavcodec.so:multimedia/ffmpeg \ libGLee.so:graphics/glee \ libgtop-2.0.so:devel/libgtop \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libtinyxml.so:textproc/tinyxml RUN_DEPENDS= flam3-animate:graphics/flam3 Modified: head/graphics/flif/Makefile ============================================================================== --- head/graphics/flif/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/graphics/flif/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -12,7 +12,7 @@ COMMENT= Free Lossless Image Format LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/../LICENSE_Apache2 -LIB_DEPENDS= libpng16.so:graphics/png +LIB_DEPENDS= libpng.so:graphics/png USES= cmake compiler:c++11-lang gettext-runtime gnome localbase:ldflags pkgconfig sdl shared-mime-info USE_GITHUB= yes Modified: head/graphics/libheif/Makefile ============================================================================== --- head/graphics/libheif/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/graphics/libheif/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -50,7 +50,7 @@ LIB_DEPENDS+= libde265.so:multimedia/libde265 .endif .if ${PORT_OPTIONS:MPNG} -LIB_DEPENDS+= libpng16.so:graphics/png +LIB_DEPENDS+= libpng.so:graphics/png .endif .if ${PORT_OPTIONS:MX265} Modified: head/graphics/luminance-qt5/Makefile ============================================================================== --- head/graphics/luminance-qt5/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/graphics/luminance-qt5/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -22,7 +22,7 @@ LIB_DEPENDS= libcfitsio.so:astro/cfitsio \ libgsl.so:math/gsl \ libexiv2.so:graphics/exiv2 \ liblcms2.so:graphics/lcms2 \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libIlmImf.so:graphics/openexr \ libboost_date_time.so:devel/boost-libs Modified: head/graphics/magnum-extras/Makefile ============================================================================== --- head/graphics/magnum-extras/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/graphics/magnum-extras/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -17,7 +17,7 @@ LIB_DEPENDS= libassimp.so:multimedia/assimp \ libfreetype.so:print/freetype2 \ libIL.so:graphics/devil \ libMagnum.so:graphics/magnum \ - libpng16.so:graphics/png + libpng.so:graphics/png USES= cmake compiler:c++14-lang gl USE_GITHUB= yes Modified: head/graphics/magnum-plugins/Makefile ============================================================================== --- head/graphics/magnum-plugins/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/graphics/magnum-plugins/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -17,7 +17,7 @@ LIB_DEPENDS= libassimp.so:multimedia/assimp \ libfreetype.so:print/freetype2 \ libIL.so:graphics/devil \ libMagnum.so:graphics/magnum \ - libpng16.so:graphics/png + libpng.so:graphics/png USES= cmake compiler:c++14-lang gl jpeg openal USE_GITHUB= yes Modified: head/graphics/open3d/Makefile ============================================================================== --- head/graphics/open3d/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/graphics/open3d/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/../LICENSE LIB_DEPENDS= libglfw.so:graphics/glfw \ libjsoncpp.so:devel/jsoncpp \ - libpng16.so:graphics/png + libpng.so:graphics/png USES= cmake compiler:c++14-lang eigen:3 jpeg localbase:ldflags pkgconfig USE_GITHUB= yes Modified: head/graphics/vv/Makefile ============================================================================== --- head/graphics/vv/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/graphics/vv/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -18,7 +18,7 @@ LIB_DEPENDS= libexpat.so:textproc/expat2 \ libgdcmCommon.so:devel/gdcm \ libhdf5_cpp.so:science/hdf5 \ libITKLabelMap-4.13.so:science/InsightToolkit \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libsz.so:science/szip \ libtiff.so:graphics/tiff \ libvtkIOSQL-8.1.so:math/vtk8 Modified: head/graphics/yafaray/Makefile ============================================================================== --- head/graphics/yafaray/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/graphics/yafaray/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -25,7 +25,7 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libIlmImf.so:graphics/openexr \ libopencv_photo.so:graphics/opencv \ libopencv_core.so:graphics/opencv-core \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libtiff.so:graphics/tiff USES= cmake gnome jpeg Modified: head/java/openjdk11/Makefile ============================================================================== --- head/java/openjdk11/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/java/openjdk11/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -22,7 +22,7 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib \ libfreetype.so:print/freetype2 \ libgif.so:graphics/giflib \ liblcms2.so:graphics/lcms2 \ - libpng16.so:graphics/png + libpng.so:graphics/png USES= compiler:features gmake iconv jpeg pkgconfig USE_XORG= x11 xext xi xrender xt xtst Modified: head/java/openjdk12/Makefile ============================================================================== --- head/java/openjdk12/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/java/openjdk12/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -22,7 +22,7 @@ LIB_DEPENDS= libasound.so:audio/alsa-lib \ libfreetype.so:print/freetype2 \ libgif.so:graphics/giflib \ liblcms2.so:graphics/lcms2 \ - libpng16.so:graphics/png + libpng.so:graphics/png USES= compiler:features gmake iconv jpeg pkgconfig USE_XORG= x11 xext xi xrandr xrender xt xtst Modified: head/misc/libemos/Makefile ============================================================================== --- head/misc/libemos/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/misc/libemos/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libeccodes.so:science/eccodes \ libfftw3.so:math/fftw3 \ - libpng16.so:graphics/png + libpng.so:graphics/png USES= cmake:noninja fortran Modified: head/misc/visp/Makefile ============================================================================== --- head/misc/visp/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/misc/visp/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -22,7 +22,7 @@ LIB_DEPENDS= libblas.so:math/blas \ libopencv_videoio.so:graphics/opencv \ libpcl_common.so:graphics/pcl-pointclouds \ libqhull.so:math/qhull5 \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libv4l2.so:multimedia/libv4l USES= cmake compiler:c++11-lang eigen:3 fortran gnome jpeg Modified: head/misc/zygrib/Makefile ============================================================================== --- head/misc/zygrib/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/misc/zygrib/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -17,7 +17,7 @@ BROKEN_i386= g2clib/libg2c.a: could not read symbols: FETCH_DEPENDS= curl:ftp/curl LIB_DEPENDS= libjasper.so:graphics/jasper \ libnova.so:astro/libnova \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libproj.so:graphics/proj \ libqwt6.so:x11-toolkits/qwt6 Modified: head/multimedia/cinelerra-gg/Makefile ============================================================================== --- head/multimedia/cinelerra-gg/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/multimedia/cinelerra-gg/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -33,7 +33,7 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ libogg.so:audio/libogg \ libopenjp2.so:graphics/openjpeg \ libopus.so:audio/opus \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libsndfile.so:audio/libsndfile \ libtheoraenc.so:multimedia/libtheora \ libtiff.so:graphics/tiff \ Modified: head/multimedia/emby-server/Makefile ============================================================================== --- head/multimedia/emby-server/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/multimedia/emby-server/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -36,7 +36,7 @@ LIB_DEPENDS= libass.so:multimedia/libass \ libgnutls.so:security/gnutls \ libogg.so:audio/libogg \ libopus.so:audio/opus \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libtheora.so:multimedia/libtheora \ libva.so:multimedia/libva \ libvorbis.so:audio/libvorbis \ Modified: head/net-im/telegram-purple/Makefile ============================================================================== --- head/net-im/telegram-purple/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/net-im/telegram-purple/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -20,7 +20,7 @@ RUN_DEPENDS= pidgin:net-im/pidgin LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libwebp.so:graphics/webp \ libpurple.so:net-im/libpurple \ - libpng16.so:graphics/png + libpng.so:graphics/png USES= gettext gmake gnome pkgconfig USE_GNOME= glib20 Modified: head/science/coot/Makefile ============================================================================== --- head/science/coot/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/science/coot/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -25,7 +25,7 @@ LIB_DEPENDS= libccp4c.so:science/libccp4 \ libgtkglext-x11-1.0.so:x11-toolkits/gtkglext \ libgsl.so:math/gsl \ libmmdb2.so:science/mmdb2 \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libsfftw.so:math/fftw-float \ libssm.so:science/libssm RUN_DEPENDS= bash:shells/bash Modified: head/science/lammps/Makefile ============================================================================== --- head/science/lammps/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/science/lammps/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -42,7 +42,7 @@ JPEG_CMAKE_BOOL= WITH_JPEG JPEG_USES= jpeg PNG_CMAKE_BOOL= WITH_PNG -PNG_LIB_DEPENDS= libpng16.so:graphics/png +PNG_LIB_DEPENDS= libpng.so:graphics/png GZIP_CMAKE_BOOL= WITH_GZIP Modified: head/science/liggghts/Makefile ============================================================================== --- head/science/liggghts/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/science/liggghts/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -15,7 +15,7 @@ BUILD_DEPENDS= gsed:textproc/gsed LIB_DEPENDS= libexpat.so:textproc/expat2 \ libfreetype.so:print/freetype2 \ libmpi.so:net/openmpi \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libtiff.so:graphics/tiff \ libvtkViewsCore-8.1.so:math/vtk8 Modified: head/science/molscript/Makefile ============================================================================== --- head/science/molscript/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/science/molscript/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -10,7 +10,7 @@ COMMENT= Display 3D molecules in schematic and detaile LICENSE= MIT LICENSE_FILE= ${WRKSRC}/../LICENSE.txt -LIB_DEPENDS= libpng16.so:graphics/png +LIB_DEPENDS= libpng.so:graphics/png RUN_DEPENDS= render:graphics/raster3d # molscript use requires the executable 'render' to be present USES= gl gmake jpeg localbase:ldflags Modified: head/science/octopus/Makefile ============================================================================== --- head/science/octopus/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/science/octopus/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -21,7 +21,7 @@ LIB_DEPENDS= libarpack.so:math/arpack-ng \ libgsl.so:math/gsl \ liblapack.so:math/lapack \ libnlopt.so:math/nlopt \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libsymspg.so:science/spglib \ libtiff.so:graphics/tiff \ libwebp.so:graphics/webp \ Modified: head/science/teem/Makefile ============================================================================== --- head/science/teem/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/science/teem/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -12,7 +12,7 @@ COMMENT= Libraries for representing, processing and vi LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE.txt -LIB_DEPENDS= libpng16.so:graphics/png +LIB_DEPENDS= libpng.so:graphics/png USES= cmake USE_LDCONFIG= yes Modified: head/sysutils/tracker-miners/Makefile ============================================================================== --- head/sysutils/tracker-miners/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/sysutils/tracker-miners/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -22,7 +22,7 @@ LIB_DEPENDS= libicuuc.so:devel/icu \ libFLAC.so:audio/flac \ libtotem-plparser.so:multimedia/totem-pl-parser \ libpoppler-glib.so:graphics/poppler-glib \ - libpng16.so:graphics/png \ + libpng.so:graphics/png \ libtag.so:audio/taglib \ libtiff.so:graphics/tiff \ libgif.so:graphics/giflib \ Modified: head/www/dillo2/Makefile ============================================================================== --- head/www/dillo2/Makefile Sun Jun 16 15:40:12 2019 (r504352) +++ head/www/dillo2/Makefile Sun Jun 16 16:05:28 2019 (r504353) @@ -51,7 +51,7 @@ JPEG_CONFIGURE_ENABLE= jpeg JPEG_USES= jpeg PNG_CONFIGURE_ENABLE= png -PNG_LIB_DEPENDS= libpng16.so:graphics/png +PNG_LIB_DEPENDS= libpng.so:graphics/png SSL_USES= ssl SSL_CONFIGURE_ENABLE= ssl From owner-svn-ports-all@freebsd.org Sun Jun 16 16:14:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4A7E515C3460; Sun, 16 Jun 2019 16:14:05 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DF05D8702E; Sun, 16 Jun 2019 16:14:04 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B9F5C18E0F; Sun, 16 Jun 2019 16:14:04 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GGE4Sh065920; Sun, 16 Jun 2019 16:14:04 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GGE46l065918; Sun, 16 Jun 2019 16:14:04 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906161614.x5GGE46l065918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Sun, 16 Jun 2019 16:14:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504354 - head/www/pmwiki X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/www/pmwiki X-SVN-Commit-Revision: 504354 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DF05D8702E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 16:14:05 -0000 Author: joneum Date: Sun Jun 16 16:14:04 2019 New Revision: 504354 URL: https://svnweb.freebsd.org/changeset/ports/504354 Log: Update to 2.2.115 Changelog: - Responsive skin: Simplify CSS for custom backgrounds, remove repetition. - Update documentation. Sponsored by: Netzkommune GmbH Modified: head/www/pmwiki/Makefile head/www/pmwiki/distinfo Modified: head/www/pmwiki/Makefile ============================================================================== --- head/www/pmwiki/Makefile Sun Jun 16 16:05:28 2019 (r504353) +++ head/www/pmwiki/Makefile Sun Jun 16 16:14:04 2019 (r504354) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pmwiki -PORTVERSION= 2.2.114 +PORTVERSION= 2.2.115 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= http://www.pmwiki.org/pub/pmwiki/ Modified: head/www/pmwiki/distinfo ============================================================================== --- head/www/pmwiki/distinfo Sun Jun 16 16:05:28 2019 (r504353) +++ head/www/pmwiki/distinfo Sun Jun 16 16:14:04 2019 (r504354) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554622598 -SHA256 (pmwiki-2.2.114.tgz) = 48aa4de579d772a1c3aa0f3e9239409b389a30dff12bfb75026cded247cd0322 -SIZE (pmwiki-2.2.114.tgz) = 470730 +TIMESTAMP = 1560701148 +SHA256 (pmwiki-2.2.115.tgz) = 91322adda2ccc2af86cffd18909bfcbe25c0ff3419b70304ebb2b1ff75bea82a +SIZE (pmwiki-2.2.115.tgz) = 471069 From owner-svn-ports-all@freebsd.org Sun Jun 16 16:31:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DBDC115C3765; Sun, 16 Jun 2019 16:31:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7A85787709; Sun, 16 Jun 2019 16:31:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5476819103; Sun, 16 Jun 2019 16:31:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GGV9ZI073983; Sun, 16 Jun 2019 16:31:09 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GGV8L4073981; Sun, 16 Jun 2019 16:31:08 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906161631.x5GGV8L4073981@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sun, 16 Jun 2019 16:31:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504355 - in head: math/timbl textproc/libfolia textproc/ucto X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head: math/timbl textproc/libfolia textproc/ucto X-SVN-Commit-Revision: 504355 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7A85787709 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 16:31:10 -0000 Author: linimon Date: Sun Jun 16 16:31:08 2019 New Revision: 504355 URL: https://svnweb.freebsd.org/changeset/ports/504355 Log: Now that devel/openmp has been enabled on powerpc64, fix these newly unblocked ports on GCC-based systems: cc1plus: error: unrecognized command line option "-std=c++11" Approved by: portmgr (tier-2 blanket) Modified: head/math/timbl/Makefile head/textproc/libfolia/Makefile head/textproc/ucto/Makefile Modified: head/math/timbl/Makefile ============================================================================== --- head/math/timbl/Makefile Sun Jun 16 16:14:04 2019 (r504354) +++ head/math/timbl/Makefile Sun Jun 16 16:31:08 2019 (r504355) @@ -16,7 +16,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libomp.so:devel/openmp \ libticcutils.so:devel/ticcutils -USES= autoreconf gmake gnome libtool pathfix pkgconfig +USES= autoreconf compiler:c++11-lang gmake gnome libtool \ + pathfix pkgconfig USE_GITHUB= yes GH_ACCOUNT= LanguageMachines GNU_CONFIGURE= yes Modified: head/textproc/libfolia/Makefile ============================================================================== --- head/textproc/libfolia/Makefile Sun Jun 16 16:14:04 2019 (r504354) +++ head/textproc/libfolia/Makefile Sun Jun 16 16:31:08 2019 (r504355) @@ -17,7 +17,7 @@ LIB_DEPENDS= libicui18n.so:devel/icu \ libomp.so:devel/openmp \ libticcutils.so:devel/ticcutils -USES= autoreconf gmake gnome libtool pkgconfig +USES= autoreconf compiler:c++11-lang gmake gnome libtool pkgconfig GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-static USE_GITHUB= yes Modified: head/textproc/ucto/Makefile ============================================================================== --- head/textproc/ucto/Makefile Sun Jun 16 16:14:04 2019 (r504354) +++ head/textproc/ucto/Makefile Sun Jun 16 16:31:08 2019 (r504355) @@ -21,7 +21,8 @@ LIB_DEPENDS= libexttextcat-2.0.so:textproc/libexttextc libticcutils.so:devel/ticcutils RUN_DEPENDS= uctodata>0:textproc/uctodata -USES= autoreconf gmake gnome libedit libtool pkgconfig readline +USES= autoreconf compiler:c++11-lang gmake gnome libedit libtool \ + pkgconfig readline GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-static USE_GITHUB= yes From owner-svn-ports-all@freebsd.org Sun Jun 16 16:35:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F3DA115C39C1; Sun, 16 Jun 2019 16:35:30 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [18.222.6.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6E57687A19; Sun, 16 Jun 2019 16:35:30 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (unknown [18.188.142.31]) by mail.soaustin.net (Postfix) with ESMTPSA id 6D8FF17093; Sun, 16 Jun 2019 16:35:29 +0000 (UTC) Date: Sun, 16 Jun 2019 16:35:28 +0000 From: Mark Linimon To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504350 - head/devel/openmp Message-ID: <20190616163527.GA17959@lonesome.com> References: <201906161503.x5GF31mJ028416@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201906161503.x5GF31mJ028416@repo.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) X-Rspamd-Queue-Id: 6E57687A19 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.97 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 16:35:31 -0000 On Sun, Jun 16, 2019 at 03:03:01PM +0000, Mark Linimon wrote: > all but 28 of them are otherwise blocked on lang/R This should have read "math/R". mcl From owner-svn-ports-all@freebsd.org Sun Jun 16 16:54:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 847D515C4048; Sun, 16 Jun 2019 16:54:11 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 24AB788412; Sun, 16 Jun 2019 16:54:11 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EE0DB194B2; Sun, 16 Jun 2019 16:54:10 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GGsAc9086695; Sun, 16 Jun 2019 16:54:10 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GGsAea086693; Sun, 16 Jun 2019 16:54:10 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201906161654.x5GGsAea086693@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Sun, 16 Jun 2019 16:54:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504356 - head/devel/py-google-i18n-address X-SVN-Group: ports-head X-SVN-Commit-Author: marcus X-SVN-Commit-Paths: head/devel/py-google-i18n-address X-SVN-Commit-Revision: 504356 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 24AB788412 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 16:54:11 -0000 Author: marcus Date: Sun Jun 16 16:54:10 2019 New Revision: 504356 URL: https://svnweb.freebsd.org/changeset/ports/504356 Log: Update to 2.3.5. Modified: head/devel/py-google-i18n-address/Makefile head/devel/py-google-i18n-address/distinfo Modified: head/devel/py-google-i18n-address/Makefile ============================================================================== --- head/devel/py-google-i18n-address/Makefile Sun Jun 16 16:31:08 2019 (r504355) +++ head/devel/py-google-i18n-address/Makefile Sun Jun 16 16:54:10 2019 (r504356) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= google-i18n-address -PORTVERSION= 2.3.4 +PORTVERSION= 2.3.5 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-google-i18n-address/distinfo ============================================================================== --- head/devel/py-google-i18n-address/distinfo Sun Jun 16 16:31:08 2019 (r504355) +++ head/devel/py-google-i18n-address/distinfo Sun Jun 16 16:54:10 2019 (r504356) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555594976 -SHA256 (google-i18n-address-2.3.4.tar.gz) = a1d2973403799170d2af275d6083211cd51b4fec14f0c8e09f94d6952e0d3238 -SIZE (google-i18n-address-2.3.4.tar.gz) = 724403 +TIMESTAMP = 1560703968 +SHA256 (google-i18n-address-2.3.5.tar.gz) = 7c6cd436e9abcdd69ea347d2e440d718019eed55e98b7078051f902a521f6fce +SIZE (google-i18n-address-2.3.5.tar.gz) = 724758 From owner-svn-ports-all@freebsd.org Sun Jun 16 17:07:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4DD1D15C4B4E; Sun, 16 Jun 2019 17:07:15 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E03D588F4C; Sun, 16 Jun 2019 17:07:14 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B110D1966D; Sun, 16 Jun 2019 17:07:14 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GH7EiE092329; Sun, 16 Jun 2019 17:07:14 GMT (envelope-from marcus@FreeBSD.org) Received: (from marcus@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GH7EHk092328; Sun, 16 Jun 2019 17:07:14 GMT (envelope-from marcus@FreeBSD.org) Message-Id: <201906161707.x5GH7EHk092328@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marcus set sender to marcus@FreeBSD.org using -f From: Joe Marcus Clarke Date: Sun, 16 Jun 2019 17:07:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504357 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: marcus X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 504357 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E03D588F4C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 17:07:15 -0000 Author: marcus Date: Sun Jun 16 17:07:14 2019 New Revision: 504357 URL: https://svnweb.freebsd.org/changeset/ports/504357 Log: Add an entry for netatalk3. Document the netatalk3 remote code execution vulnerability fixed in 3.1.12. PR: 238573 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sun Jun 16 16:54:10 2019 (r504356) +++ head/security/vuxml/vuln.xml Sun Jun 16 17:07:14 2019 (r504357) @@ -58,6 +58,32 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + netatalk3 -- remote code execution vulnerability + + + netatalk3 + 3.1.12,1 + + + + +

NIST reports:

+
+

Netatalk before 3.1.12 is vulnerable to an out of bounds write in dsi_opensess.c. This is due to lack of bounds checking on attacker controlled data. A remote unauthenticated attacker can leverage this vulnerability to achieve arbitrary code execution.

+
+ +
+ + https://nvd.nist.gov/vuln/detail/CVE-2018-1160 + https://medium.com/tenable-techblog/exploiting-an-18-year-old-bug-b47afe54172 + + + 2018-11-10 + 2019-06-16 + +
+ GraphicsMagick -- multiple vulnerabilities From owner-svn-ports-all@freebsd.org Sun Jun 16 17:34:09 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1BB415C5337; Sun, 16 Jun 2019 17:34:08 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 72C9D89BF5; Sun, 16 Jun 2019 17:34:08 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5692319B5B; Sun, 16 Jun 2019 17:34:08 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GHY8KQ007824; Sun, 16 Jun 2019 17:34:08 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GHY8kw007822; Sun, 16 Jun 2019 17:34:08 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906161734.x5GHY8kw007822@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 16 Jun 2019 17:34:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504358 - head/textproc/sd X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/textproc/sd X-SVN-Commit-Revision: 504358 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 72C9D89BF5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 17:34:09 -0000 Author: tobik Date: Sun Jun 16 17:34:07 2019 New Revision: 504358 URL: https://svnweb.freebsd.org/changeset/ports/504358 Log: textproc/sd: Update to 0.6.1 Changes: https://github.com/chmln/sd/compare/sd-0.5.0...0.6.1 Modified: head/textproc/sd/Makefile head/textproc/sd/distinfo Modified: head/textproc/sd/Makefile ============================================================================== --- head/textproc/sd/Makefile Sun Jun 16 17:07:14 2019 (r504357) +++ head/textproc/sd/Makefile Sun Jun 16 17:34:07 2019 (r504358) @@ -1,9 +1,7 @@ # $FreeBSD$ PORTNAME= sd -DISTVERSIONPREFIX= sd- -DISTVERSION= 0.5.0 -PORTREVISION= 4 +DISTVERSION= 0.6.1 CATEGORIES= textproc MAINTAINER= tobik@FreeBSD.org @@ -16,49 +14,57 @@ USES= cargo USE_GITHUB= yes GH_ACCOUNT= chmln -CARGO_CRATES= aho-corasick-0.6.9 \ +CARGO_CRATES= aho-corasick-0.7.3 \ ansi_term-0.11.0 \ arrayvec-0.4.10 \ - atomicwrites-0.2.2 \ atty-0.2.11 \ + autocfg-0.1.2 \ bitflags-1.0.4 \ - cc-1.0.28 \ - cfg-if-0.1.6 \ - clap-2.32.0 \ - crossbeam-deque-0.2.0 \ - crossbeam-epoch-0.3.1 \ - crossbeam-utils-0.2.2 \ - either-1.5.0 \ - fuchsia-zircon-0.3.3 \ - fuchsia-zircon-sys-0.3.3 \ + cfg-if-0.1.7 \ + clap-2.33.0 \ + cloudabi-0.0.3 \ + crossbeam-deque-0.6.3 \ + crossbeam-epoch-0.7.1 \ + crossbeam-queue-0.1.2 \ + crossbeam-utils-0.6.5 \ + either-1.5.2 \ + fuchsia-cprng-0.1.1 \ heck-0.3.1 \ - lazy_static-1.2.0 \ - libc-0.2.49 \ - memchr-2.1.2 \ + lazy_static-1.3.0 \ + libc-0.2.51 \ + memchr-2.2.0 \ + memmap-0.7.0 \ memoffset-0.2.1 \ - nix-0.11.0 \ nodrop-0.1.13 \ - num_cpus-1.9.0 \ - proc-macro2-0.4.24 \ - quote-0.6.10 \ - rand-0.4.5 \ - rand_core-0.3.0 \ - rayon-1.0.3 \ - rayon-core-1.4.1 \ + num_cpus-1.10.0 \ + proc-macro2-0.4.27 \ + quote-0.6.11 \ + rand-0.6.5 \ + rand_chacha-0.1.1 \ + rand_core-0.3.1 \ + rand_core-0.4.0 \ + rand_hc-0.1.0 \ + rand_isaac-0.1.1 \ + rand_jitter-0.1.3 \ + rand_os-0.1.3 \ + rand_pcg-0.1.2 \ + rand_xorshift-0.1.1 \ + rayon-1.1.0 \ + rayon-core-1.5.0 \ rdrand-0.4.0 \ - redox_syscall-0.1.44 \ + redox_syscall-0.1.53 \ redox_termios-0.1.1 \ - regex-1.1.0 \ - regex-syntax-0.6.5 \ + regex-1.1.7 \ + regex-syntax-0.6.6 \ remove_dir_all-0.5.1 \ scopeguard-0.3.3 \ - strsim-0.7.0 \ - structopt-0.2.14 \ - structopt-derive-0.2.14 \ - syn-0.15.23 \ - tempdir-0.3.7 \ + strsim-0.8.0 \ + structopt-0.2.16 \ + structopt-derive-0.2.16 \ + syn-0.15.30 \ + tempfile-3.0.8 \ termion-1.5.1 \ - textwrap-0.10.0 \ + textwrap-0.11.0 \ thread_local-0.3.6 \ ucd-util-0.1.3 \ unescape-0.1.0 \ @@ -67,9 +73,7 @@ CARGO_CRATES= aho-corasick-0.6.9 \ unicode-xid-0.1.0 \ utf8-ranges-1.0.2 \ vec_map-0.8.1 \ - version_check-0.1.5 \ - void-1.0.2 \ - winapi-0.3.6 \ + winapi-0.3.7 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 Modified: head/textproc/sd/distinfo ============================================================================== --- head/textproc/sd/distinfo Sun Jun 16 17:07:14 2019 (r504357) +++ head/textproc/sd/distinfo Sun Jun 16 17:34:07 2019 (r504358) @@ -1,90 +1,106 @@ -TIMESTAMP = 1551228577 -SHA256 (rust/crates/aho-corasick-0.6.9.tar.gz) = 1e9a933f4e58658d7b12defcf96dc5c720f20832deebe3e0a19efd3b6aaeeb9e -SIZE (rust/crates/aho-corasick-0.6.9.tar.gz) = 25979 +TIMESTAMP = 1560703594 +SHA256 (rust/crates/aho-corasick-0.7.3.tar.gz) = e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c +SIZE (rust/crates/aho-corasick-0.7.3.tar.gz) = 55093 SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b SIZE (rust/crates/ansi_term-0.11.0.tar.gz) = 17087 SHA256 (rust/crates/arrayvec-0.4.10.tar.gz) = 92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71 SIZE (rust/crates/arrayvec-0.4.10.tar.gz) = 26133 -SHA256 (rust/crates/atomicwrites-0.2.2.tar.gz) = a3420b33cdefd3feb223dddc23739fc05cc034eb0f2be792c763e3d89e1eb6e3 -SIZE (rust/crates/atomicwrites-0.2.2.tar.gz) = 5272 SHA256 (rust/crates/atty-0.2.11.tar.gz) = 9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652 SIZE (rust/crates/atty-0.2.11.tar.gz) = 5916 +SHA256 (rust/crates/autocfg-0.1.2.tar.gz) = a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799 +SIZE (rust/crates/autocfg-0.1.2.tar.gz) = 10444 SHA256 (rust/crates/bitflags-1.0.4.tar.gz) = 228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12 SIZE (rust/crates/bitflags-1.0.4.tar.gz) = 15282 -SHA256 (rust/crates/cc-1.0.28.tar.gz) = bb4a8b715cb4597106ea87c7c84b2f1d452c7492033765df7f32651e66fcf749 -SIZE (rust/crates/cc-1.0.28.tar.gz) = 42422 -SHA256 (rust/crates/cfg-if-0.1.6.tar.gz) = 082bb9b28e00d3c9d39cc03e64ce4cea0f1bb9b3fde493f0cbc008472d22bdf4 -SIZE (rust/crates/cfg-if-0.1.6.tar.gz) = 7411 -SHA256 (rust/crates/clap-2.32.0.tar.gz) = b957d88f4b6a63b9d70d5f454ac8011819c6efa7727858f458ab71c756ce2d3e -SIZE (rust/crates/clap-2.32.0.tar.gz) = 196073 -SHA256 (rust/crates/crossbeam-deque-0.2.0.tar.gz) = f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3 -SIZE (rust/crates/crossbeam-deque-0.2.0.tar.gz) = 12638 -SHA256 (rust/crates/crossbeam-epoch-0.3.1.tar.gz) = 927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150 -SIZE (rust/crates/crossbeam-epoch-0.3.1.tar.gz) = 33093 -SHA256 (rust/crates/crossbeam-utils-0.2.2.tar.gz) = 2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9 -SIZE (rust/crates/crossbeam-utils-0.2.2.tar.gz) = 11901 -SHA256 (rust/crates/either-1.5.0.tar.gz) = 3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0 -SIZE (rust/crates/either-1.5.0.tar.gz) = 10900 -SHA256 (rust/crates/fuchsia-zircon-0.3.3.tar.gz) = 2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82 -SIZE (rust/crates/fuchsia-zircon-0.3.3.tar.gz) = 22565 -SHA256 (rust/crates/fuchsia-zircon-sys-0.3.3.tar.gz) = 3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7 -SIZE (rust/crates/fuchsia-zircon-sys-0.3.3.tar.gz) = 7191 +SHA256 (rust/crates/cfg-if-0.1.7.tar.gz) = 11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4 +SIZE (rust/crates/cfg-if-0.1.7.tar.gz) = 7360 +SHA256 (rust/crates/clap-2.33.0.tar.gz) = 5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9 +SIZE (rust/crates/clap-2.33.0.tar.gz) = 196458 +SHA256 (rust/crates/cloudabi-0.0.3.tar.gz) = ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f +SIZE (rust/crates/cloudabi-0.0.3.tar.gz) = 22156 +SHA256 (rust/crates/crossbeam-deque-0.6.3.tar.gz) = 05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13 +SIZE (rust/crates/crossbeam-deque-0.6.3.tar.gz) = 14238 +SHA256 (rust/crates/crossbeam-epoch-0.7.1.tar.gz) = 04c9e3102cc2d69cd681412141b390abd55a362afc1540965dad0ad4d34280b4 +SIZE (rust/crates/crossbeam-epoch-0.7.1.tar.gz) = 35215 +SHA256 (rust/crates/crossbeam-queue-0.1.2.tar.gz) = 7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b +SIZE (rust/crates/crossbeam-queue-0.1.2.tar.gz) = 14104 +SHA256 (rust/crates/crossbeam-utils-0.6.5.tar.gz) = f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c +SIZE (rust/crates/crossbeam-utils-0.6.5.tar.gz) = 31735 +SHA256 (rust/crates/either-1.5.2.tar.gz) = 5527cfe0d098f36e3f8839852688e63c8fff1c90b2b405aef730615f9a7bcf7b +SIZE (rust/crates/either-1.5.2.tar.gz) = 12124 +SHA256 (rust/crates/fuchsia-cprng-0.1.1.tar.gz) = a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba +SIZE (rust/crates/fuchsia-cprng-0.1.1.tar.gz) = 2950 SHA256 (rust/crates/heck-0.3.1.tar.gz) = 20564e78d53d2bb135c343b3f47714a56af2061f1c928fdb541dc7b9fdd94205 SIZE (rust/crates/heck-0.3.1.tar.gz) = 54666 -SHA256 (rust/crates/lazy_static-1.2.0.tar.gz) = a374c89b9db55895453a74c1e38861d9deec0b01b405a82516e9d5de4820dea1 -SIZE (rust/crates/lazy_static-1.2.0.tar.gz) = 10840 -SHA256 (rust/crates/libc-0.2.49.tar.gz) = 413f3dfc802c5dc91dc570b05125b6cda9855edfaa9825c9849807876376e70e -SIZE (rust/crates/libc-0.2.49.tar.gz) = 375486 -SHA256 (rust/crates/memchr-2.1.2.tar.gz) = db4c41318937f6e76648f42826b1d9ade5c09cafb5aef7e351240a70f39206e9 -SIZE (rust/crates/memchr-2.1.2.tar.gz) = 19520 +SHA256 (rust/crates/lazy_static-1.3.0.tar.gz) = bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14 +SIZE (rust/crates/lazy_static-1.3.0.tar.gz) = 10616 +SHA256 (rust/crates/libc-0.2.51.tar.gz) = bedcc7a809076656486ffe045abeeac163da1b558e963a31e29fbfbeba916917 +SIZE (rust/crates/libc-0.2.51.tar.gz) = 397323 +SHA256 (rust/crates/memchr-2.2.0.tar.gz) = 2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39 +SIZE (rust/crates/memchr-2.2.0.tar.gz) = 20939 +SHA256 (rust/crates/memmap-0.7.0.tar.gz) = 6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b +SIZE (rust/crates/memmap-0.7.0.tar.gz) = 15214 SHA256 (rust/crates/memoffset-0.2.1.tar.gz) = 0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3 SIZE (rust/crates/memoffset-0.2.1.tar.gz) = 4618 -SHA256 (rust/crates/nix-0.11.0.tar.gz) = d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17 -SIZE (rust/crates/nix-0.11.0.tar.gz) = 162039 SHA256 (rust/crates/nodrop-0.1.13.tar.gz) = 2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945 SIZE (rust/crates/nodrop-0.1.13.tar.gz) = 7508 -SHA256 (rust/crates/num_cpus-1.9.0.tar.gz) = 5a69d464bdc213aaaff628444e99578ede64e9c854025aa43b9796530afa9238 -SIZE (rust/crates/num_cpus-1.9.0.tar.gz) = 10599 -SHA256 (rust/crates/proc-macro2-0.4.24.tar.gz) = 77619697826f31a02ae974457af0b29b723e5619e113e9397b8b82c6bd253f09 -SIZE (rust/crates/proc-macro2-0.4.24.tar.gz) = 30970 -SHA256 (rust/crates/quote-0.6.10.tar.gz) = 53fa22a1994bd0f9372d7a816207d8a2677ad0325b073f5c5332760f0fb62b5c -SIZE (rust/crates/quote-0.6.10.tar.gz) = 15795 -SHA256 (rust/crates/rand-0.4.5.tar.gz) = dee497e66d8d76bf08ce20c8d36e16f93749ab0bf89975b4f8ae5cee660c2da2 -SIZE (rust/crates/rand-0.4.5.tar.gz) = 76465 -SHA256 (rust/crates/rand_core-0.3.0.tar.gz) = 0905b6b7079ec73b314d4c748701f6931eb79fd97c668caa3f1899b22b32c6db -SIZE (rust/crates/rand_core-0.3.0.tar.gz) = 20581 -SHA256 (rust/crates/rayon-1.0.3.tar.gz) = 373814f27745b2686b350dd261bfd24576a6fb0e2c5919b3a2b6005f820b0473 -SIZE (rust/crates/rayon-1.0.3.tar.gz) = 134391 -SHA256 (rust/crates/rayon-core-1.4.1.tar.gz) = b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356 -SIZE (rust/crates/rayon-core-1.4.1.tar.gz) = 53760 +SHA256 (rust/crates/num_cpus-1.10.0.tar.gz) = 1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba +SIZE (rust/crates/num_cpus-1.10.0.tar.gz) = 10669 +SHA256 (rust/crates/proc-macro2-0.4.27.tar.gz) = 4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915 +SIZE (rust/crates/proc-macro2-0.4.27.tar.gz) = 34098 +SHA256 (rust/crates/quote-0.6.11.tar.gz) = cdd8e04bd9c52e0342b406469d494fcb033be4bdbe5c606016defbb1681411e1 +SIZE (rust/crates/quote-0.6.11.tar.gz) = 17283 +SHA256 (rust/crates/rand-0.6.5.tar.gz) = 6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca +SIZE (rust/crates/rand-0.6.5.tar.gz) = 104814 +SHA256 (rust/crates/rand_chacha-0.1.1.tar.gz) = 556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef +SIZE (rust/crates/rand_chacha-0.1.1.tar.gz) = 11703 +SHA256 (rust/crates/rand_core-0.3.1.tar.gz) = 7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b +SIZE (rust/crates/rand_core-0.3.1.tar.gz) = 15483 +SHA256 (rust/crates/rand_core-0.4.0.tar.gz) = d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0 +SIZE (rust/crates/rand_core-0.4.0.tar.gz) = 20326 +SHA256 (rust/crates/rand_hc-0.1.0.tar.gz) = 7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4 +SIZE (rust/crates/rand_hc-0.1.0.tar.gz) = 11644 +SHA256 (rust/crates/rand_isaac-0.1.1.tar.gz) = ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08 +SIZE (rust/crates/rand_isaac-0.1.1.tar.gz) = 16020 +SHA256 (rust/crates/rand_jitter-0.1.3.tar.gz) = 7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832 +SIZE (rust/crates/rand_jitter-0.1.3.tar.gz) = 18341 +SHA256 (rust/crates/rand_os-0.1.3.tar.gz) = 7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071 +SIZE (rust/crates/rand_os-0.1.3.tar.gz) = 18965 +SHA256 (rust/crates/rand_pcg-0.1.2.tar.gz) = abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44 +SIZE (rust/crates/rand_pcg-0.1.2.tar.gz) = 10844 +SHA256 (rust/crates/rand_xorshift-0.1.1.tar.gz) = cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c +SIZE (rust/crates/rand_xorshift-0.1.1.tar.gz) = 8997 +SHA256 (rust/crates/rayon-1.1.0.tar.gz) = a4b0186e22767d5b9738a05eab7c6ac90b15db17e5b5f9bd87976dd7d89a10a4 +SIZE (rust/crates/rayon-1.1.0.tar.gz) = 138915 +SHA256 (rust/crates/rayon-core-1.5.0.tar.gz) = ebbe0df8435ac0c397d467b6cad6d25543d06e8a019ef3f6af3c384597515bd2 +SIZE (rust/crates/rayon-core-1.5.0.tar.gz) = 61857 SHA256 (rust/crates/rdrand-0.4.0.tar.gz) = 678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2 SIZE (rust/crates/rdrand-0.4.0.tar.gz) = 6456 -SHA256 (rust/crates/redox_syscall-0.1.44.tar.gz) = a84bcd297b87a545980a2d25a0beb72a1f490c31f0a9fde52fca35bfbb1ceb70 -SIZE (rust/crates/redox_syscall-0.1.44.tar.gz) = 15254 +SHA256 (rust/crates/redox_syscall-0.1.53.tar.gz) = 53848511b7ee6eb9d5c3db48481aaa5779b38fc0131bc133c98cb4f2b2411928 +SIZE (rust/crates/redox_syscall-0.1.53.tar.gz) = 15725 SHA256 (rust/crates/redox_termios-0.1.1.tar.gz) = 7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76 SIZE (rust/crates/redox_termios-0.1.1.tar.gz) = 3227 -SHA256 (rust/crates/regex-1.1.0.tar.gz) = 37e7cbbd370869ce2e8dff25c7018702d10b21a20ef7135316f8daecd6c25b7f -SIZE (rust/crates/regex-1.1.0.tar.gz) = 241219 -SHA256 (rust/crates/regex-syntax-0.6.5.tar.gz) = 8c2f35eedad5295fdf00a63d7d4b238135723f92b434ec06774dad15c7ab0861 -SIZE (rust/crates/regex-syntax-0.6.5.tar.gz) = 272475 +SHA256 (rust/crates/regex-1.1.7.tar.gz) = 0b2f0808e7d7e4fb1cb07feb6ff2f4bc827938f24f8c2e6a3beb7370af544bdd +SIZE (rust/crates/regex-1.1.7.tar.gz) = 243534 +SHA256 (rust/crates/regex-syntax-0.6.6.tar.gz) = dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96 +SIZE (rust/crates/regex-syntax-0.6.6.tar.gz) = 273068 SHA256 (rust/crates/remove_dir_all-0.5.1.tar.gz) = 3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5 SIZE (rust/crates/remove_dir_all-0.5.1.tar.gz) = 8726 SHA256 (rust/crates/scopeguard-0.3.3.tar.gz) = 94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27 SIZE (rust/crates/scopeguard-0.3.3.tar.gz) = 9605 -SHA256 (rust/crates/strsim-0.7.0.tar.gz) = bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550 -SIZE (rust/crates/strsim-0.7.0.tar.gz) = 8435 -SHA256 (rust/crates/structopt-0.2.14.tar.gz) = 670ad348dc73012fcf78c71f06f9d942232cdd4c859d4b6975e27836c3efc0c3 -SIZE (rust/crates/structopt-0.2.14.tar.gz) = 25517 -SHA256 (rust/crates/structopt-derive-0.2.14.tar.gz) = ef98172b1a00b0bec738508d3726540edcbd186d50dfd326f2b1febbb3559f04 -SIZE (rust/crates/structopt-derive-0.2.14.tar.gz) = 12411 -SHA256 (rust/crates/syn-0.15.23.tar.gz) = 9545a6a093a3f0bd59adb472700acc08cad3776f860f16a897dfce8c88721cbc -SIZE (rust/crates/syn-0.15.23.tar.gz) = 145369 -SHA256 (rust/crates/tempdir-0.3.7.tar.gz) = 15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8 -SIZE (rust/crates/tempdir-0.3.7.tar.gz) = 11468 +SHA256 (rust/crates/strsim-0.8.0.tar.gz) = 8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a +SIZE (rust/crates/strsim-0.8.0.tar.gz) = 9309 +SHA256 (rust/crates/structopt-0.2.16.tar.gz) = fa19a5a708e22bb5be31c1b6108a2a902f909c4b9ba85cba44c06632386bc0ff +SIZE (rust/crates/structopt-0.2.16.tar.gz) = 26165 +SHA256 (rust/crates/structopt-derive-0.2.16.tar.gz) = c6d59d0ae8ef8de16e49e3ca7afa16024a3e0dfd974a75ef93fdc5464e34523f +SIZE (rust/crates/structopt-derive-0.2.16.tar.gz) = 12951 +SHA256 (rust/crates/syn-0.15.30.tar.gz) = 66c8865bf5a7cbb662d8b011950060b3c8743dca141b054bf7195b20d314d8e2 +SIZE (rust/crates/syn-0.15.30.tar.gz) = 146358 +SHA256 (rust/crates/tempfile-3.0.8.tar.gz) = 7dc4738f2e68ed2855de5ac9cdbe05c9216773ecde4739b2f095002ab03a13ef +SIZE (rust/crates/tempfile-3.0.8.tar.gz) = 24549 SHA256 (rust/crates/termion-1.5.1.tar.gz) = 689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096 SIZE (rust/crates/termion-1.5.1.tar.gz) = 20659 -SHA256 (rust/crates/textwrap-0.10.0.tar.gz) = 307686869c93e71f94da64286f9a9524c0f308a9e1c87a583de8e9c9039ad3f6 -SIZE (rust/crates/textwrap-0.10.0.tar.gz) = 15986 +SHA256 (rust/crates/textwrap-0.11.0.tar.gz) = d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060 +SIZE (rust/crates/textwrap-0.11.0.tar.gz) = 17322 SHA256 (rust/crates/thread_local-0.3.6.tar.gz) = c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b SIZE (rust/crates/thread_local-0.3.6.tar.gz) = 12388 SHA256 (rust/crates/ucd-util-0.1.3.tar.gz) = 535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86 @@ -101,15 +117,11 @@ SHA256 (rust/crates/utf8-ranges-1.0.2.tar.gz) = 796f7e SIZE (rust/crates/utf8-ranges-1.0.2.tar.gz) = 8510 SHA256 (rust/crates/vec_map-0.8.1.tar.gz) = 05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a SIZE (rust/crates/vec_map-0.8.1.tar.gz) = 14959 -SHA256 (rust/crates/version_check-0.1.5.tar.gz) = 914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd -SIZE (rust/crates/version_check-0.1.5.tar.gz) = 8173 -SHA256 (rust/crates/void-1.0.2.tar.gz) = 6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d -SIZE (rust/crates/void-1.0.2.tar.gz) = 2356 -SHA256 (rust/crates/winapi-0.3.6.tar.gz) = 92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0 -SIZE (rust/crates/winapi-0.3.6.tar.gz) = 1029391 +SHA256 (rust/crates/winapi-0.3.7.tar.gz) = f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770 +SIZE (rust/crates/winapi-0.3.7.tar.gz) = 1075776 SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6 SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = 2918815 SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 2947998 -SHA256 (chmln-sd-sd-0.5.0_GH0.tar.gz) = 167940e76ce0dd0129832e1cc1302eef9318f9003d27d968fbcba912ce23bb1c -SIZE (chmln-sd-sd-0.5.0_GH0.tar.gz) = 11500 +SHA256 (chmln-sd-0.6.1_GH0.tar.gz) = 4ca219762eb90edccaae68789deb6f790102df584a753d73b856de72ff4dd053 +SIZE (chmln-sd-0.6.1_GH0.tar.gz) = 12046 From owner-svn-ports-all@freebsd.org Sun Jun 16 17:55:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9CD7715C5965; Sun, 16 Jun 2019 17:55:51 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 423048A4BC; Sun, 16 Jun 2019 17:55:51 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2A80F19EC2; Sun, 16 Jun 2019 17:55:51 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GHtoej018374; Sun, 16 Jun 2019 17:55:50 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GHtorj018372; Sun, 16 Jun 2019 17:55:50 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906161755.x5GHtorj018372@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 16 Jun 2019 17:55:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504359 - in head/devel/folly: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel/folly: . files X-SVN-Commit-Revision: 504359 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 423048A4BC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 17:55:51 -0000 Author: yuri Date: Sun Jun 16 17:55:50 2019 New Revision: 504359 URL: https://svnweb.freebsd.org/changeset/ports/504359 Log: devel/folly: Upstream patches; Fix bogus SYS_gettid-related code; Mark broken on i386 PR: 238608 Reported by: jbeich (bogus SYS_gettid and i386 failure) Deleted: head/devel/folly/files/patch-folly_Memory.h head/devel/folly/files/patch-folly_Subprocess.cpp head/devel/folly/files/patch-folly_Subprocess.h head/devel/folly/files/patch-folly_experimental_EnvUtil.cpp head/devel/folly/files/patch-folly_portability_Malloc.h head/devel/folly/files/patch-folly_portability_Stdlib.cpp head/devel/folly/files/patch-folly_portability_SysSyscall.h Modified: head/devel/folly/Makefile head/devel/folly/distinfo Modified: head/devel/folly/Makefile ============================================================================== --- head/devel/folly/Makefile Sun Jun 16 17:34:07 2019 (r504358) +++ head/devel/folly/Makefile Sun Jun 16 17:55:50 2019 (r504359) @@ -3,13 +3,19 @@ PORTNAME= folly DISTVERSIONPREFIX= v DISTVERSION= 2019.06.10.00 +PORTREVISION= 1 CATEGORIES= devel +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/commit/ +PATCHFILES= 2461dea6d517515ebea623d162722910ede5e86f.patch:-p1 + MAINTAINER= yuri@FreeBSD.org COMMENT= C++ library developed and used at Facebook LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE + +BROKEN_i386= error: use of undeclared identifier 'DCHECK': https://github.com/facebook/folly/issues/1168 LIB_DEPENDS= libboost_atomic.so:devel/boost-libs \ libdouble-conversion.so:devel/double-conversion \ Modified: head/devel/folly/distinfo ============================================================================== --- head/devel/folly/distinfo Sun Jun 16 17:34:07 2019 (r504358) +++ head/devel/folly/distinfo Sun Jun 16 17:55:50 2019 (r504359) @@ -1,3 +1,5 @@ TIMESTAMP = 1560670033 SHA256 (facebook-folly-v2019.06.10.00_GH0.tar.gz) = afecd68815a83865d95a3a6b861abe8096beefae45c89566e0d510279b631b57 SIZE (facebook-folly-v2019.06.10.00_GH0.tar.gz) = 2941638 +SHA256 (2461dea6d517515ebea623d162722910ede5e86f.patch) = eb55e3d3c696abfcb0f0e45e49e92df0772533b6eb62480187d72658291c8cae +SIZE (2461dea6d517515ebea623d162722910ede5e86f.patch) = 4996 From owner-svn-ports-all@freebsd.org Sun Jun 16 18:42:06 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BD62715C65E3; Sun, 16 Jun 2019 18:42:06 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 650AE8B74E; Sun, 16 Jun 2019 18:42:06 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3DCC91A728; Sun, 16 Jun 2019 18:42:06 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GIg6AL044160; Sun, 16 Jun 2019 18:42:06 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GIg5wW044153; Sun, 16 Jun 2019 18:42:05 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201906161842.x5GIg5wW044153@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 16 Jun 2019 18:42:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504360 - in head/net-mgmt/pmacct: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in head/net-mgmt/pmacct: . files X-SVN-Commit-Revision: 504360 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 650AE8B74E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 18:42:07 -0000 Author: pi Date: Sun Jun 16 18:42:05 2019 New Revision: 504360 URL: https://svnweb.freebsd.org/changeset/ports/504360 Log: net-mgmt/pmacct: fix pkg-plist for the default case PR: 238464 Reported by: Michael Proto Added: head/net-mgmt/pmacct/files/patch-Makefile.am (contents, props changed) head/net-mgmt/pmacct/files/patch-Makefile.in (contents, props changed) Modified: head/net-mgmt/pmacct/Makefile head/net-mgmt/pmacct/pkg-plist Modified: head/net-mgmt/pmacct/Makefile ============================================================================== --- head/net-mgmt/pmacct/Makefile Sun Jun 16 17:55:50 2019 (r504359) +++ head/net-mgmt/pmacct/Makefile Sun Jun 16 18:42:05 2019 (r504360) @@ -43,9 +43,11 @@ SQLITE3_DESC= Enable SQLite3 support USES+= mysql CONFIGURE_ARGS+=--enable-mysql PLIST_SUB+= WITH_MYSQL="" +PLIST_SUB+= SQLDOC="" .else CONFIGURE_ARGS+=--disable-mysql PLIST_SUB+= WITH_MYSQL="@comment " +PLIST_SUB+= SQLDOC="@comment " .endif .if ${PORT_OPTIONS:MPGSQL} @@ -53,9 +55,11 @@ USES+= pgsql WANT_PGSQL= client CONFIGURE_ARGS+=--enable-pgsql PLIST_SUB+= WITH_PGSQL="" +PLIST_SUB+= SQLDOC="" .else CONFIGURE_ARGS+=--disable-pgsql PLIST_SUB+= WITH_PGSQL="@comment " +PLIST_SUB+= SQLDOC="@comment " .endif .if ${PORT_OPTIONS:MSQLITE3} @@ -63,9 +67,11 @@ USES+= pkgconfig sqlite CONFIGURE_ARGS+=--enable-sqlite3 \ --with-sqlite3-includes=${LOCALBASE}/include PLIST_SUB+= WITH_SQLITE3="" +PLIST_SUB+= SQLDOC="" .else CONFIGURE_ARGS+=--disable-sqlite3 PLIST_SUB+= WITH_SQLITE3="@comment " +PLIST_SUB+= SQLDOC="@comment " .endif .if ${PORT_OPTIONS:MLAYER2} @@ -157,9 +163,9 @@ post-patch: @${REINPLACE_CMD} -e 's|-O2||g' ${WRKSRC}/configure post-install: - @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} + ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} (cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR}) - @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/docs/* ${STAGEDIR}${DOCSDIR} .for i in AUTHORS CONFIG-KEYS COPYING ChangeLog FAQS INSTALL QUICKSTART UPGRADE ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} Added: head/net-mgmt/pmacct/files/patch-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/pmacct/files/patch-Makefile.am Sun Jun 16 18:42:05 2019 (r504360) @@ -0,0 +1,11 @@ +--- Makefile.am.orig 2019-04-19 04:06:27.000000000 +0200 ++++ Makefile.am 2019-06-16 19:58:43.298406000 +0200 +@@ -17,7 +17,7 @@ + pmacct_examples_lg_arch_dir = $(pmacct_examples_arch_dir)/lg + pmacct_examples_custom_dir = $(pmacct_examples_arch_dir)/custom + if USING_SQL +-pmacct_sql_dir = $(pmacct_data_dir)/sql ++pmacct_sql_dir = $(pmacct_data_dir) + endif + + pmacct_data__DATA = CONFIG-KEYS FAQS QUICKSTART UPGRADE Added: head/net-mgmt/pmacct/files/patch-Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-mgmt/pmacct/files/patch-Makefile.in Sun Jun 16 18:42:05 2019 (r504360) @@ -0,0 +1,11 @@ +--- Makefile.in.orig 2019-06-16 20:01:08.854403000 +0200 ++++ Makefile.in 2019-06-16 20:01:32.038160000 +0200 +@@ -346,7 +346,7 @@ + pmacct_examples_lg_dir = $(pmacct_examples_dir)/lg + pmacct_examples_lg_arch_dir = $(pmacct_examples_arch_dir)/lg + pmacct_examples_custom_dir = $(pmacct_examples_arch_dir)/custom +-@USING_SQL_TRUE@pmacct_sql_dir = $(pmacct_data_dir)/sql ++@USING_SQL_TRUE@pmacct_sql_dir = $(pmacct_data_dir) + pmacct_data__DATA = CONFIG-KEYS FAQS QUICKSTART UPGRADE + pmacct_docs__DATA = docs/IPFIX docs/LOOKING_GLASS_FORMAT docs/SIGNALS \ + docs/MSGLOG_DUMP_FORMATS docs/TRIGGER_VARS Modified: head/net-mgmt/pmacct/pkg-plist ============================================================================== --- head/net-mgmt/pmacct/pkg-plist Sun Jun 16 17:55:50 2019 (r504359) +++ head/net-mgmt/pmacct/pkg-plist Sun Jun 16 18:42:05 2019 (r504360) @@ -76,25 +76,25 @@ sbin/sfacctd %%DATADIR%%/CONFIG-KEYS %%DATADIR%%/FAQS %%DATADIR%%/QUICKSTART -%%DATADIR%%/sql/README.64bit -%%DATADIR%%/sql/README.GeoIP -%%DATADIR%%/sql/README.IPv6 -%%DATADIR%%/sql/README.cos -%%DATADIR%%/sql/README.custom_primitives -%%DATADIR%%/sql/README.etype -%%DATADIR%%/sql/README.export_proto -%%DATADIR%%/sql/README.iface -%%DATADIR%%/sql/README.label -%%DATADIR%%/sql/README.mask -%%DATADIR%%/sql/README.mpls -%%DATADIR%%/sql/README.mysql -%%DATADIR%%/sql/README.nat -%%DATADIR%%/sql/README.pgsql -%%DATADIR%%/sql/README.sampling -%%DATADIR%%/sql/README.sqlite3 -%%DATADIR%%/sql/README.tag2 -%%DATADIR%%/sql/README.timestamp -%%DATADIR%%/sql/README.tunnel +%%SQLDOC%%%%DATADIR%%/README.64bit +%%SQLDOC%%%%DATADIR%%/README.GeoIP +%%SQLDOC%%%%DATADIR%%/README.IPv6 +%%SQLDOC%%%%DATADIR%%/README.cos +%%SQLDOC%%%%DATADIR%%/README.custom_primitives +%%SQLDOC%%%%DATADIR%%/README.etype +%%SQLDOC%%%%DATADIR%%/README.export_proto +%%SQLDOC%%%%DATADIR%%/README.iface +%%SQLDOC%%%%DATADIR%%/README.label +%%SQLDOC%%%%DATADIR%%/README.mask +%%SQLDOC%%%%DATADIR%%/README.mpls +%%SQLDOC%%%%DATADIR%%/README.mysql +%%SQLDOC%%%%DATADIR%%/README.nat +%%SQLDOC%%%%DATADIR%%/README.pgsql +%%SQLDOC%%%%DATADIR%%/README.sampling +%%SQLDOC%%%%DATADIR%%/README.sqlite3 +%%SQLDOC%%%%DATADIR%%/README.tag2 +%%SQLDOC%%%%DATADIR%%/README.timestamp +%%SQLDOC%%%%DATADIR%%/README.tunnel %%DATADIR%%/UPGRADE %%DATADIR%%/docs/IPFIX %%DATADIR%%/docs/LOOKING_GLASS_FORMAT @@ -125,36 +125,36 @@ sbin/sfacctd %%DATADIR%%/examples/probe_sflow.conf.example %%DATADIR%%/examples/sampling.map.example %%DATADIR%%/examples/tee_receivers.lst.example -%%DATADIR%%/sql/pmacct-create-db.pgsql -%%DATADIR%%/sql/pmacct-create-db_bgp_v1.mysql -%%DATADIR%%/sql/pmacct-create-db_v1.mysql -%%DATADIR%%/sql/pmacct-create-db_v2.mysql -%%DATADIR%%/sql/pmacct-create-db_v3.mysql -%%DATADIR%%/sql/pmacct-create-db_v4.mysql -%%DATADIR%%/sql/pmacct-create-db_v5.mysql -%%DATADIR%%/sql/pmacct-create-db_v6.mysql -%%DATADIR%%/sql/pmacct-create-db_v7.mysql -%%DATADIR%%/sql/pmacct-create-db_v8.mysql -%%DATADIR%%/sql/pmacct-create-db_v9.mysql -%%DATADIR%%/sql/pmacct-create-table_bgp_v1.pgsql -%%DATADIR%%/sql/pmacct-create-table_bgp_v1.sqlite3 -%%DATADIR%%/sql/pmacct-create-table_v1.pgsql -%%DATADIR%%/sql/pmacct-create-table_v1.sqlite3 -%%DATADIR%%/sql/pmacct-create-table_v2.pgsql -%%DATADIR%%/sql/pmacct-create-table_v2.sqlite3 -%%DATADIR%%/sql/pmacct-create-table_v3.pgsql -%%DATADIR%%/sql/pmacct-create-table_v3.sqlite3 -%%DATADIR%%/sql/pmacct-create-table_v4.pgsql -%%DATADIR%%/sql/pmacct-create-table_v4.sqlite3 -%%DATADIR%%/sql/pmacct-create-table_v5.pgsql -%%DATADIR%%/sql/pmacct-create-table_v5.sqlite3 -%%DATADIR%%/sql/pmacct-create-table_v6.pgsql -%%DATADIR%%/sql/pmacct-create-table_v6.sqlite3 -%%DATADIR%%/sql/pmacct-create-table_v7.pgsql -%%DATADIR%%/sql/pmacct-create-table_v7.sqlite3 -%%DATADIR%%/sql/pmacct-create-table_v8.sqlite3 -%%DATADIR%%/sql/pmacct-create-table_v9.pgsql -%%DATADIR%%/sql/pmacct-create-table_v9.sqlite3 -%%DATADIR%%/sql/pmacct-grant-db.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_bgp_v1.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v1.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v2.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v3.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v4.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v5.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v6.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v7.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v8.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-db_v9.mysql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_bgp_v1.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_bgp_v1.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v1.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v1.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v2.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v2.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v3.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v3.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v4.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v4.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v5.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v5.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v6.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v6.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v7.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v7.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v8.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v9.pgsql +%%SQLDOC%%%%DATADIR%%/pmacct-create-table_v9.sqlite3 +%%SQLDOC%%%%DATADIR%%/pmacct-grant-db.mysql @dir lib/pmacct/examples/custom %%PORTEXAMPLES%%@dir %%EXAMPLESDIR%%/lg/.libs From owner-svn-ports-all@freebsd.org Sun Jun 16 18:48:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8755F15C66D7; Sun, 16 Jun 2019 18:48:57 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 268758B95A; Sun, 16 Jun 2019 18:48:57 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mail.j.mat.cc (owncloud.cube.mat.cc [IPv6:2a01:678:4:1::228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.mat.cc", Issuer "Let's Encrypt Authority X3" (verified OK)) (Authenticated sender: mat/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id F1B8B1A6A0; Sun, 16 Jun 2019 18:48:56 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from atuin.in.mat.cc (unknown [IPv6:2a01:678:42:ffff:3e15:c2ff:fec4:452e]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: mat@mat.cc) by mail.j.mat.cc (Postfix) with ESMTPSA id 6DDF3943466; Sun, 16 Jun 2019 18:48:53 +0000 (UTC) Date: Sun, 16 Jun 2019 20:48:53 +0200 From: Mathieu Arnold To: Kurt Jaeger Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504360 - in head/net-mgmt/pmacct: . files Message-ID: <20190616184853.fgeyqoizad3pcilx@atuin.in.mat.cc> References: <201906161842.x5GIg5wW044153@repo.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="olpdul7rfcjz22lp" Content-Disposition: inline In-Reply-To: <201906161842.x5GIg5wW044153@repo.freebsd.org> User-Agent: NeoMutt/20180716 X-Rspamd-Queue-Id: 268758B95A X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.99)[-0.990,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 18:48:57 -0000 --olpdul7rfcjz22lp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Sun, Jun 16, 2019 at 06:42:05PM +0000, Kurt Jaeger wrote: > Author: pi > Date: Sun Jun 16 18:42:05 2019 > New Revision: 504360 > URL: https://svnweb.freebsd.org/changeset/ports/504360 >=20 > Log: > net-mgmt/pmacct: fix pkg-plist for the default case I doubt very much this is a correct fix. With the default configuration, I get: $ make -V PLIST_SUB:MSQLDOC=3D\* SQLDOC=3D"" SQLDOC=3D"@comment " SQLDOC=3D"@comment " --=20 Mathieu Arnold --olpdul7rfcjz22lp Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAABCgB9FiEEOraXidLtEhBkQLpbOkUW81GDzkgFAl0GjxRfFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNB QjY5Nzg5RDJFRDEyMTA2NDQwQkE1QjNBNDUxNkYzNTE4M0NFNDgACgkQOkUW81GD zkhVThAApB1em9vopQePDdJNvPHxNfctfYwf44vV+zKQ01mvif17R/MTYSLWYelw XkkJyk/Xt0b6+6t/JfFvON8OZ3UBfQgpLft2e/cfmQx8TY7lylyMW3swVqSQj4wR 6UtEzYrQerdZBBsntEyQHa/aGQs7e3JTlDyu4C2j8b9hYeUUR8SKWRdz1k3D0cba eTSfc4J+H7blcvaCptc1r/C0MZZ75lTlJKUoA7AsXm1CsQnJLc5eiM2xYX5Eusvf tr2YcG8KHT1Nd1E5iSFB50cac4kQSJaoEnmQs+aLvKvimoaS4BlsH6rkL7UBGNPv Xm49HX7gQDlOQo1KrHXCElJChbVmbPYB+OX8p6arRZxZgTVEYC3zOaeeZUO3wsTA 9d5IFgz3hucR7YRJVAfYxDQi9H1PbpogVl8kxY3Q9wfdiJT11iluMHwg+5ZSuaVq dB2lLMCBmriDj21dRiMisO+jgjYUTfxZMAlr2AsvgbuLbYqDoURsh45AHrjROpJk l/A+I5ai5rqT84LQ9CbHxq2Ix7ANB/IUrhBsEyctjZABRfQevbnCsyGsMq82cXCa oMm1OS52qpnaGcEyLTkBYXhKrip2BDgZoQucVMEGv9YZvd+XWp/EWxQtK6cHbdvb 9Qfw82JWn87S1RC8Q6NNnLVZLd9g8N/ijcTGuSOUElasINZqzvY= =1dcX -----END PGP SIGNATURE----- --olpdul7rfcjz22lp-- From owner-svn-ports-all@freebsd.org Sun Jun 16 19:14:28 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7B4C715C6E0C; Sun, 16 Jun 2019 19:14:28 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from fc.opsec.eu (fc.opsec.eu [IPv6:2001:14f8:200:4::4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id F10C08C3E8; Sun, 16 Jun 2019 19:14:27 +0000 (UTC) (envelope-from pi@freebsd.org) Received: from pi by fc.opsec.eu with local (Exim 4.92 (FreeBSD)) (envelope-from ) id 1hcabE-000FWD-Ap; Sun, 16 Jun 2019 21:13:56 +0200 Date: Sun, 16 Jun 2019 21:13:56 +0200 From: Kurt Jaeger To: Mathieu Arnold Cc: Kurt Jaeger , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504360 - in head/net-mgmt/pmacct: . files Message-ID: <20190616191356.GE82898@fc.opsec.eu> References: <201906161842.x5GIg5wW044153@repo.freebsd.org> <20190616184853.fgeyqoizad3pcilx@atuin.in.mat.cc> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190616184853.fgeyqoizad3pcilx@atuin.in.mat.cc> X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 19:14:28 -0000 Hi, > > Log: > > net-mgmt/pmacct: fix pkg-plist for the default case > > I doubt very much this is a correct fix. With the default > configuration, I get: > > $ make -V PLIST_SUB:MSQLDOC=\* > SQLDOC="" SQLDOC="@comment " SQLDOC="@comment " You're right. I'll have to find a better fix. -- pi@FreeBSD.org +49 171 3101372 One year to go ! From owner-svn-ports-all@freebsd.org Sun Jun 16 20:09:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD79D15C8039; Sun, 16 Jun 2019 20:09:14 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 70A0C8DA7C; Sun, 16 Jun 2019 20:09:14 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2A8341B4A4; Sun, 16 Jun 2019 20:09:14 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GK9D62086091; Sun, 16 Jun 2019 20:09:13 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GK9D6Y086090; Sun, 16 Jun 2019 20:09:13 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906162009.x5GK9D6Y086090@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Sun, 16 Jun 2019 20:09:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504361 - in head/cad/freecad: . files X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: in head/cad/freecad: . files X-SVN-Commit-Revision: 504361 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 70A0C8DA7C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:09:15 -0000 Author: cmt Date: Sun Jun 16 20:09:13 2019 New Revision: 504361 URL: https://svnweb.freebsd.org/changeset/ports/504361 Log: cad/freecad: improve pyside2 detection pyside2 changed the way it reported it's variables (they're cmake target properties now, not variables) sometime over the last releases. FreeCAD did not support pyside2's new way of doing thing, resulting in certain dialogs not working. PR: 237987 Reported by: denverh at comcast dot net Added: head/cad/freecad/files/patch-CMakeLists.txt (contents, props changed) Modified: head/cad/freecad/Makefile Modified: head/cad/freecad/Makefile ============================================================================== --- head/cad/freecad/Makefile Sun Jun 16 18:42:05 2019 (r504360) +++ head/cad/freecad/Makefile Sun Jun 16 20:09:13 2019 (r504361) @@ -2,6 +2,7 @@ PORTNAME= FreeCAD DISTVERSION= 0.18.2 +PORTREVISION= 1 # use these for bugfixes/snapshots # DISTVERSION= 0.18-16093 # git rev-list --count # DISTVERSIONSUFFIX= -g690774c0e Added: head/cad/freecad/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/freecad/files/patch-CMakeLists.txt Sun Jun 16 20:09:13 2019 (r504361) @@ -0,0 +1,31 @@ +--- CMakeLists.txt.orig 2019-06-16 18:08:47 UTC ++++ CMakeLists.txt +@@ -989,6 +989,13 @@ endif() + endif() + endif() + ++ # pyside2 changed it's cmake files, this is the dance we have ++ # to dance to be compatible with the old and the new versions ++ if(SHIBOKEN_PYTHON_INCLUDE_DIRS AND NOT SHIBOKEN_INCLUDE_DIR) ++ get_property(SHIBOKEN_INCLUDE_DIR TARGET Shiboken2::libshiboken PROPERTY INTERFACE_INCLUDE_DIRECTORIES) ++ get_property(SHIBOKEN_LIBRARY TARGET Shiboken2::libshiboken PROPERTY IMPORTED_LOCATION_RELEASE) ++ endif(SHIBOKEN_PYTHON_INCLUDE_DIRS AND NOT SHIBOKEN_INCLUDE_DIR) ++ + if(NOT SHIBOKEN_INCLUDE_DIR) + MESSAGE("====================\n" + "shiboken2 not found.\n" +@@ -996,6 +1003,14 @@ endif() + endif(NOT SHIBOKEN_INCLUDE_DIR) + + find_package(PySide2 QUIET)# REQUIRED ++ ++ # pyside2 changed it's cmake files, this is the dance we have ++ # to dance to be compatible with the old and the new versions ++ if(NOT PYSIDE_INCLUDE_DIR) ++ get_property(PYSIDE_INCLUDE_DIR TARGET PySide2::pyside2 PROPERTY INTERFACE_INCLUDE_DIRECTORIES) ++ get_property(PYSIDE_LIBRARY TARGET PySide2::pyside2 PROPERTY IMPORTED_LOCATION_RELEASE) ++ endif(NOT PYSIDE_INCLUDE_DIR) ++ + if(NOT PYSIDE_INCLUDE_DIR) + MESSAGE("==================\n" + "PySide2 not found.\n" From owner-svn-ports-all@freebsd.org Sun Jun 16 20:28:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65C0C15C8719; Sun, 16 Jun 2019 20:28:31 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 082E28E3DC; Sun, 16 Jun 2019 20:28:31 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D4AA71B7FC; Sun, 16 Jun 2019 20:28:30 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKSUg9096382; Sun, 16 Jun 2019 20:28:30 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKSUNP096380; Sun, 16 Jun 2019 20:28:30 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162028.x5GKSUNP096380@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:28:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504362 - head/x11-fonts/libFS X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11-fonts/libFS X-SVN-Commit-Revision: 504362 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 082E28E3DC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:28:31 -0000 Author: zeising Date: Sun Jun 16 20:28:30 2019 New Revision: 504362 URL: https://svnweb.freebsd.org/changeset/ports/504362 Log: x11-fonts/libFS: Update to 1.0.8 Update x11-fonts/libFS to 1.0.8 This release contains a fixes for a bunch of sign comparision warnings, and changes to the build system add LICENSE and LICENSE_FILE pet portlint a bit, move USES= earlier use INSTALL_TARGET=install-strip to strip binaries and files Changelog: https://lists.x.org/archives/xorg-announce/2019-March/002970.html Sponsored by: B3 Init Modified: head/x11-fonts/libFS/Makefile head/x11-fonts/libFS/distinfo Modified: head/x11-fonts/libFS/Makefile ============================================================================== --- head/x11-fonts/libFS/Makefile Sun Jun 16 20:09:13 2019 (r504361) +++ head/x11-fonts/libFS/Makefile Sun Jun 16 20:28:30 2019 (r504362) @@ -1,17 +1,22 @@ # $FreeBSD$ PORTNAME= libFS -PORTVERSION= 1.0.7 -PORTREVISION= 2 +PORTVERSION= 1.0.8 CATEGORIES= x11-fonts MAINTAINER= x11@FreeBSD.org COMMENT= The FS library +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= cpe + XORG_CAT= lib USE_XORG= xorgproto xtrans -USES+= cpe -CPE_PRODUCT= libfs CPE_VENDOR= x +CPE_PRODUCT= libfs + +INSTALL_TARGET= install-strip .include Modified: head/x11-fonts/libFS/distinfo ============================================================================== --- head/x11-fonts/libFS/distinfo Sun Jun 16 20:09:13 2019 (r504361) +++ head/x11-fonts/libFS/distinfo Sun Jun 16 20:28:30 2019 (r504362) @@ -1,2 +1,3 @@ -SHA256 (xorg/lib/libFS-1.0.7.tar.bz2) = 2e9d4c07026a7401d4fa4ffae86e6ac7fec83f50f3268fa85f52718e479dc4f3 -SIZE (xorg/lib/libFS-1.0.7.tar.bz2) = 315569 +TIMESTAMP = 1560369708 +SHA256 (xorg/lib/libFS-1.0.8.tar.bz2) = c8e13727149b2ddfe40912027459b2522042e3844c5cd228c3300fe5eef6bd0f +SIZE (xorg/lib/libFS-1.0.8.tar.bz2) = 347880 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:29:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9FDE615C8783; Sun, 16 Jun 2019 20:29:45 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4309C8E4CF; Sun, 16 Jun 2019 20:29:45 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 18B011B7FF; Sun, 16 Jun 2019 20:29:45 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKTiUq096546; Sun, 16 Jun 2019 20:29:44 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKTiXW096544; Sun, 16 Jun 2019 20:29:44 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162029.x5GKTiXW096544@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:29:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504363 - head/x11-toolkits/libXmu X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11-toolkits/libXmu X-SVN-Commit-Revision: 504363 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4309C8E4CF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:29:45 -0000 Author: zeising Date: Sun Jun 16 20:29:44 2019 New Revision: 504363 URL: https://svnweb.freebsd.org/changeset/ports/504363 Log: x11-toolkits/libXmu: Update to 1.1.3 Update x11-toolkits/libXmu to 1.1.3 This is a minor maintenance release with small bug fixes, build configuration improvments and janitorial cleanups. add INSTALL_TARGET=install-strip to strip binaries and libraries Changelog: https://lists.x.org/archives/xorg-announce/2019-March/002978.html Sponsored by: B3 Init Modified: head/x11-toolkits/libXmu/Makefile head/x11-toolkits/libXmu/distinfo Modified: head/x11-toolkits/libXmu/Makefile ============================================================================== --- head/x11-toolkits/libXmu/Makefile Sun Jun 16 20:28:30 2019 (r504362) +++ head/x11-toolkits/libXmu/Makefile Sun Jun 16 20:29:44 2019 (r504363) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libXmu -PORTVERSION= 1.1.2 -PORTREVISION= 5 +PORTVERSION= 1.1.3 PORTEPOCH= 1 CATEGORIES= x11-toolkits @@ -15,5 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING XORG_CAT= lib USE_XORG= xorgproto x11 xt xext + +INSTALL_TARGET= install-strip .include Modified: head/x11-toolkits/libXmu/distinfo ============================================================================== --- head/x11-toolkits/libXmu/distinfo Sun Jun 16 20:28:30 2019 (r504362) +++ head/x11-toolkits/libXmu/distinfo Sun Jun 16 20:29:44 2019 (r504363) @@ -1,2 +1,3 @@ -SHA256 (xorg/lib/libXmu-1.1.2.tar.bz2) = 756edc7c383254eef8b4e1b733c3bf1dc061b523c9f9833ac7058378b8349d0b -SIZE (xorg/lib/libXmu-1.1.2.tar.bz2) = 396230 +TIMESTAMP = 1560369817 +SHA256 (xorg/lib/libXmu-1.1.3.tar.bz2) = 9c343225e7c3dc0904f2122b562278da5fed639b1b5e880d25111561bac5b731 +SIZE (xorg/lib/libXmu-1.1.3.tar.bz2) = 394330 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:31:09 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A07D15C88CA; Sun, 16 Jun 2019 20:31:09 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1172C8E788; Sun, 16 Jun 2019 20:31:09 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DC0481B82C; Sun, 16 Jun 2019 20:31:08 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKV8WT098196; Sun, 16 Jun 2019 20:31:08 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKV8CF098194; Sun, 16 Jun 2019 20:31:08 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162031.x5GKV8CF098194@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:31:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504364 - head/x11/libXcomposite X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/libXcomposite X-SVN-Commit-Revision: 504364 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1172C8E788 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:31:09 -0000 Author: zeising Date: Sun Jun 16 20:31:08 2019 New Revision: 504364 URL: https://svnweb.freebsd.org/changeset/ports/504364 Log: x11/libXcomposite: Update to 0.4.5 Update libXcomposite to 0.4.5 This is a maintenance release, with mosttly small fixes in the build system. add INSTALL_TARGET=install-strip to strip binaries and libraries Sponsored by: B3 Init Modified: head/x11/libXcomposite/Makefile head/x11/libXcomposite/distinfo Modified: head/x11/libXcomposite/Makefile ============================================================================== --- head/x11/libXcomposite/Makefile Sun Jun 16 20:29:44 2019 (r504363) +++ head/x11/libXcomposite/Makefile Sun Jun 16 20:31:08 2019 (r504364) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libXcomposite -PORTVERSION= 0.4.4 -PORTREVISION= 5 +PORTVERSION= 0.4.5 PORTEPOCH= 1 CATEGORIES= x11 @@ -15,5 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING XORG_CAT= lib USE_XORG= x11 xfixes xext xorgproto + +INSTALL_TARGET= install-strip .include Modified: head/x11/libXcomposite/distinfo ============================================================================== --- head/x11/libXcomposite/distinfo Sun Jun 16 20:29:44 2019 (r504363) +++ head/x11/libXcomposite/distinfo Sun Jun 16 20:31:08 2019 (r504364) @@ -1,2 +1,3 @@ -SHA256 (xorg/lib/libXcomposite-0.4.4.tar.bz2) = ede250cd207d8bee4a338265c3007d7a68d5aca791b6ac41af18e9a2aeb34178 -SIZE (xorg/lib/libXcomposite-0.4.4.tar.bz2) = 283746 +TIMESTAMP = 1560360565 +SHA256 (xorg/lib/libXcomposite-0.4.5.tar.bz2) = b3218a2c15bab8035d16810df5b8251ffc7132ff3aa70651a1fba0bfe9634e8f +SIZE (xorg/lib/libXcomposite-0.4.5.tar.bz2) = 316993 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:33:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 865F915C8B68; Sun, 16 Jun 2019 20:33:37 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 230338E9A1; Sun, 16 Jun 2019 20:33:37 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D81301B99F; Sun, 16 Jun 2019 20:33:36 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKXaZv001591; Sun, 16 Jun 2019 20:33:36 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKXaeD001589; Sun, 16 Jun 2019 20:33:36 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162033.x5GKXaeD001589@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:33:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504365 - head/x11/libXcursor X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/libXcursor X-SVN-Commit-Revision: 504365 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 230338E9A1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:33:37 -0000 Author: zeising Date: Sun Jun 16 20:33:36 2019 New Revision: 504365 URL: https://svnweb.freebsd.org/changeset/ports/504365 Log: x11/libXcursor: Update to 1.2.0 Update x11/libXcursor to 1.2.0 This release adds ~/.local/share/icons to the front of the default cursor path in the library in support of the XDF user data dir. pet portlint by moving USES= earlier add LICENSE_FILE Changelog: https://lists.x.org/archives/xorg-announce/2019-March/002972.html Sponsored by: B3 Init Modified: head/x11/libXcursor/Makefile head/x11/libXcursor/distinfo Modified: head/x11/libXcursor/Makefile ============================================================================== --- head/x11/libXcursor/Makefile Sun Jun 16 20:31:08 2019 (r504364) +++ head/x11/libXcursor/Makefile Sun Jun 16 20:33:36 2019 (r504365) @@ -2,21 +2,20 @@ # $FreeBSD$ PORTNAME= libXcursor -PORTVERSION= 1.1.15 -PORTREVISION= 2 +PORTVERSION= 1.2.0 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org COMMENT= X client-side cursor loading library LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING +USES= cpe XORG_CAT= lib USE_XORG= xrender x11 xfixes xorgproto - -USES+= cpe -CPE_PRODUCT= libxcursor CPE_VENDOR= x +CPE_PRODUCT= libxcursor CONFIGURE_ARGS= --with-icondir=${PREFIX}/share/icons INSTALL_TARGET= install-strip Modified: head/x11/libXcursor/distinfo ============================================================================== --- head/x11/libXcursor/distinfo Sun Jun 16 20:31:08 2019 (r504364) +++ head/x11/libXcursor/distinfo Sun Jun 16 20:33:36 2019 (r504365) @@ -1,3 +1,3 @@ -TIMESTAMP = 1513522502 -SHA256 (xorg/lib/libXcursor-1.1.15.tar.bz2) = 294e670dd37cd23995e69aae626629d4a2dfe5708851bbc13d032401b7a3df6b -SIZE (xorg/lib/libXcursor-1.1.15.tar.bz2) = 331607 +TIMESTAMP = 1560360728 +SHA256 (xorg/lib/libXcursor-1.2.0.tar.bz2) = 3ad3e9f8251094af6fe8cb4afcf63e28df504d46bfa5a5529db74a505d628782 +SIZE (xorg/lib/libXcursor-1.2.0.tar.bz2) = 334144 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:34:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3055B15C8BC5; Sun, 16 Jun 2019 20:34:59 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BFA268EA8E; Sun, 16 Jun 2019 20:34:58 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 915231B9A1; Sun, 16 Jun 2019 20:34:58 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKYwcl001763; Sun, 16 Jun 2019 20:34:58 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKYw7F001761; Sun, 16 Jun 2019 20:34:58 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162034.x5GKYw7F001761@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:34:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504366 - head/x11/libXdamage X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/libXdamage X-SVN-Commit-Revision: 504366 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BFA268EA8E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:34:59 -0000 Author: zeising Date: Sun Jun 16 20:34:57 2019 New Revision: 504366 URL: https://svnweb.freebsd.org/changeset/ports/504366 Log: x11/libXdamage: Update to 1.1.5 Update x11/libXdamage to 1.1.5 This release mostly contains changes to the build system. strip binaries and libraries on installation Changelog: https://lists.x.org/archives/xorg-announce/2019-March/002973.html Sponsored by: B3 Init Modified: head/x11/libXdamage/Makefile head/x11/libXdamage/distinfo Modified: head/x11/libXdamage/Makefile ============================================================================== --- head/x11/libXdamage/Makefile Sun Jun 16 20:33:36 2019 (r504365) +++ head/x11/libXdamage/Makefile Sun Jun 16 20:34:57 2019 (r504366) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libXdamage -PORTVERSION= 1.1.4 -PORTREVISION= 5 +PORTVERSION= 1.1.5 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -14,5 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING XORG_CAT= lib USE_XORG= x11 xfixes xorgproto + +INSTALL_TARGET= install-strip .include Modified: head/x11/libXdamage/distinfo ============================================================================== --- head/x11/libXdamage/distinfo Sun Jun 16 20:33:36 2019 (r504365) +++ head/x11/libXdamage/distinfo Sun Jun 16 20:34:57 2019 (r504366) @@ -1,2 +1,3 @@ -SHA256 (xorg/lib/libXdamage-1.1.4.tar.bz2) = 7c3fe7c657e83547f4822bfde30a90d84524efb56365448768409b77f05355ad -SIZE (xorg/lib/libXdamage-1.1.4.tar.bz2) = 278937 +TIMESTAMP = 1560362321 +SHA256 (xorg/lib/libXdamage-1.1.5.tar.bz2) = b734068643cac3b5f3d2c8279dd366b5bf28c7219d9e9d8717e1383995e0ea45 +SIZE (xorg/lib/libXdamage-1.1.5.tar.bz2) = 303750 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:36:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED6DE15C8D9C; Sun, 16 Jun 2019 20:36:25 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 609018ECB0; Sun, 16 Jun 2019 20:36:25 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 370AD1B9A2; Sun, 16 Jun 2019 20:36:25 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKaPTC001954; Sun, 16 Jun 2019 20:36:25 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKaOjJ001952; Sun, 16 Jun 2019 20:36:24 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162036.x5GKaOjJ001952@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:36:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504367 - head/x11/libXext X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/libXext X-SVN-Commit-Revision: 504367 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 609018ECB0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:36:26 -0000 Author: zeising Date: Sun Jun 16 20:36:24 2019 New Revision: 504367 URL: https://svnweb.freebsd.org/changeset/ports/504367 Log: x11/libXext: Update to 1.3.4 Update x11/libXext to 1.3.4. This release contains misc bugfixes, typo fixes and build system updates. pet portlint by moving USES and CPE information earlier. add LICENSE_FILE Changelog: https://lists.x.org/archives/xorg-announce/2019-March/002975.html Sponsored by: B3 Init Modified: head/x11/libXext/Makefile head/x11/libXext/distinfo Modified: head/x11/libXext/Makefile ============================================================================== --- head/x11/libXext/Makefile Sun Jun 16 20:34:57 2019 (r504366) +++ head/x11/libXext/Makefile Sun Jun 16 20:36:24 2019 (r504367) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libXext -PORTVERSION= 1.3.3 -PORTREVISION= 3 +PORTVERSION= 1.3.4 PORTEPOCH= 1 CATEGORIES= x11 @@ -11,13 +10,15 @@ MAINTAINER= x11@FreeBSD.org COMMENT= X11 Extension library LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING +USES= cpe XORG_CAT= lib USE_XORG= x11 xau xorgproto +CPE_VENDOR= x +CPE_PRODUCT= libxext + CONFIGURE_ARGS+=--disable-specs --without-xmlto INSTALL_TARGET= install-strip -USES+= cpe -CPE_PRODUCT= libxext -CPE_VENDOR= x .include Modified: head/x11/libXext/distinfo ============================================================================== --- head/x11/libXext/distinfo Sun Jun 16 20:34:57 2019 (r504366) +++ head/x11/libXext/distinfo Sun Jun 16 20:36:24 2019 (r504367) @@ -1,2 +1,3 @@ -SHA256 (xorg/lib/libXext-1.3.3.tar.bz2) = b518d4d332231f313371fdefac59e3776f4f0823bcb23cf7c7305bfb57b16e35 -SIZE (xorg/lib/libXext-1.3.3.tar.bz2) = 389523 +TIMESTAMP = 1560362418 +SHA256 (xorg/lib/libXext-1.3.4.tar.bz2) = 59ad6fcce98deaecc14d39a672cf218ca37aba617c9a0f691cac3bcd28edf82b +SIZE (xorg/lib/libXext-1.3.4.tar.bz2) = 389114 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:37:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7844C15C8E4A; Sun, 16 Jun 2019 20:37:43 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1BC048EDD6; Sun, 16 Jun 2019 20:37:43 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E319B1B9A3; Sun, 16 Jun 2019 20:37:42 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKbgei002119; Sun, 16 Jun 2019 20:37:42 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKbgda002117; Sun, 16 Jun 2019 20:37:42 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162037.x5GKbgda002117@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:37:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504368 - head/x11/libXrandr X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/libXrandr X-SVN-Commit-Revision: 504368 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1BC048EDD6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:37:43 -0000 Author: zeising Date: Sun Jun 16 20:37:42 2019 New Revision: 504368 URL: https://svnweb.freebsd.org/changeset/ports/504368 Log: x11/libXrandr: Update to 1.5.2 Update x11/libXrandr to 1.5.2 This is a maintenance release, containing fixes to the build system and updates for the freedesktop.org gitlab move. pet portlint by moving USES= earlier INSTALL_TARGET=install-strip to strip binaries and libraries Changelog: https://lists.x.org/archives/xorg-announce/2019-March/002979.html Sponsored by: B3 Init Modified: head/x11/libXrandr/Makefile head/x11/libXrandr/distinfo Modified: head/x11/libXrandr/Makefile ============================================================================== --- head/x11/libXrandr/Makefile Sun Jun 16 20:36:24 2019 (r504367) +++ head/x11/libXrandr/Makefile Sun Jun 16 20:37:42 2019 (r504368) @@ -2,19 +2,21 @@ # $FreeBSD$ PORTNAME= libXrandr -PORTVERSION= 1.5.1 -PORTREVISION= 2 +PORTVERSION= 1.5.2 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org COMMENT= X Resize and Rotate extension library LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING +USES= cpe XORG_CAT= lib USE_XORG= x11 xext xrender xorgproto -USES+= cpe -CPE_PRODUCT= libxrandr CPE_VENDOR= x +CPE_PRODUCT= libxrandr + +INSTALL_TARGET= install-strip .include Modified: head/x11/libXrandr/distinfo ============================================================================== --- head/x11/libXrandr/distinfo Sun Jun 16 20:36:24 2019 (r504367) +++ head/x11/libXrandr/distinfo Sun Jun 16 20:37:42 2019 (r504368) @@ -1,3 +1,3 @@ -TIMESTAMP = 1475696152 -SHA256 (xorg/lib/libXrandr-1.5.1.tar.bz2) = 1ff9e7fa0e4adea912b16a5f0cfa7c1d35b0dcda0e216831f7715c8a3abcf51a -SIZE (xorg/lib/libXrandr-1.5.1.tar.bz2) = 315769 +TIMESTAMP = 1560362897 +SHA256 (xorg/lib/libXrandr-1.5.2.tar.bz2) = 8aea0ebe403d62330bb741ed595b53741acf45033d3bda1792f1d4cc3daee023 +SIZE (xorg/lib/libXrandr-1.5.2.tar.bz2) = 330726 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:39:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 070A315C8F05; Sun, 16 Jun 2019 20:39:04 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F43D8EF0E; Sun, 16 Jun 2019 20:39:03 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 891A51B9A5; Sun, 16 Jun 2019 20:39:03 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKd3JW002291; Sun, 16 Jun 2019 20:39:03 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKd3iZ002289; Sun, 16 Jun 2019 20:39:03 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162039.x5GKd3iZ002289@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:39:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504369 - head/x11/libXvMC X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/libXvMC X-SVN-Commit-Revision: 504369 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9F43D8EF0E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:39:04 -0000 Author: zeising Date: Sun Jun 16 20:39:02 2019 New Revision: 504369 URL: https://svnweb.freebsd.org/changeset/ports/504369 Log: x11/libXvMC: Update to 1.0.11 Update x11/libXvMC to 1.0.11 This release contains some minor fixes, and updates to the build system. add INSTALL_TARGET=install-strip to strip binaries and libraries Changelog: https://lists.x.org/archives/xorg-announce/2019-March/002981.html Sponsored by: B3 Init Modified: head/x11/libXvMC/Makefile head/x11/libXvMC/distinfo Modified: head/x11/libXvMC/Makefile ============================================================================== --- head/x11/libXvMC/Makefile Sun Jun 16 20:37:42 2019 (r504368) +++ head/x11/libXvMC/Makefile Sun Jun 16 20:39:02 2019 (r504369) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libXvMC -PORTVERSION= 1.0.10 -PORTREVISION= 2 +PORTVERSION= 1.0.11 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -15,7 +14,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cpe XORG_CAT= lib USE_XORG= x11 xext xv xorgproto -CPE_PRODUCT= libxvmc CPE_VENDOR= x +CPE_PRODUCT= libxvmc + +INSTALL_TARGET= install-strip .include Modified: head/x11/libXvMC/distinfo ============================================================================== --- head/x11/libXvMC/distinfo Sun Jun 16 20:37:42 2019 (r504368) +++ head/x11/libXvMC/distinfo Sun Jun 16 20:39:02 2019 (r504369) @@ -1,3 +1,3 @@ -TIMESTAMP = 1475697354 -SHA256 (xorg/lib/libXvMC-1.0.10.tar.bz2) = e501a079b5dfaef0897c56152770c77e05e362065cec58910289aa567277ee2e -SIZE (xorg/lib/libXvMC-1.0.10.tar.bz2) = 313887 +TIMESTAMP = 1560363169 +SHA256 (xorg/lib/libXvMC-1.0.11.tar.bz2) = 4a2e34d444a683a7c010b01b23cefe2b8043a063ce4dc6a9b855836b5262622d +SIZE (xorg/lib/libXvMC-1.0.11.tar.bz2) = 303516 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:40:50 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 13FA915C8FA7; Sun, 16 Jun 2019 20:40:50 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC6748F04C; Sun, 16 Jun 2019 20:40:49 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 824311BAC7; Sun, 16 Jun 2019 20:40:49 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKenaV002511; Sun, 16 Jun 2019 20:40:49 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKenRj002510; Sun, 16 Jun 2019 20:40:49 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162040.x5GKenRj002510@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:40:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504370 - head/x11/libXxf86dga X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/libXxf86dga X-SVN-Commit-Revision: 504370 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AC6748F04C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:40:50 -0000 Author: zeising Date: Sun Jun 16 20:40:48 2019 New Revision: 504370 URL: https://svnweb.freebsd.org/changeset/ports/504370 Log: x11/libXxf86dga: Update to 1.1.5 Update x11/libXxf86dga to 1.1.5 This release raises the minimun libX11 version 1o 1.6.0 it also contains various build system fixes add LICENSE_FILE pet portlint by moving USES= earlier add INSTALL_TARGET=install-strip to strip installed binaries and libraries Changelog: https://lists.x.org/archives/xorg-announce/2019-March/002982.html Sponsored by: B3 Init Modified: head/x11/libXxf86dga/Makefile head/x11/libXxf86dga/distinfo Modified: head/x11/libXxf86dga/Makefile ============================================================================== --- head/x11/libXxf86dga/Makefile Sun Jun 16 20:39:02 2019 (r504369) +++ head/x11/libXxf86dga/Makefile Sun Jun 16 20:40:48 2019 (r504370) @@ -2,19 +2,21 @@ # $FreeBSD$ PORTNAME= libXxf86dga -PORTVERSION= 1.1.4 -PORTREVISION= 5 +PORTVERSION= 1.1.5 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org COMMENT= X DGA Extension LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING +USES= cpe XORG_CAT= lib USE_XORG= x11 xext xorgproto -USES+= cpe -CPE_PRODUCT= libxxf86dga CPE_VENDOR= x +CPE_PRODUCT= libxxf86dga + +INSTALL_TARGET= install-strip .include Modified: head/x11/libXxf86dga/distinfo ============================================================================== --- head/x11/libXxf86dga/distinfo Sun Jun 16 20:39:02 2019 (r504369) +++ head/x11/libXxf86dga/distinfo Sun Jun 16 20:40:48 2019 (r504370) @@ -1,2 +1,3 @@ -SHA256 (xorg/lib/libXxf86dga-1.1.4.tar.bz2) = 8eecd4b6c1df9a3704c04733c2f4fa93ef469b55028af5510b25818e2456c77e -SIZE (xorg/lib/libXxf86dga-1.1.4.tar.bz2) = 280216 +TIMESTAMP = 1560364911 +SHA256 (xorg/lib/libXxf86dga-1.1.5.tar.bz2) = 2b98bc5f506c6140d4eddd3990842d30f5dae733b64f198a504f07461bdb7203 +SIZE (xorg/lib/libXxf86dga-1.1.5.tar.bz2) = 301685 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:41:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6CA2015C916C; Sun, 16 Jun 2019 20:41:54 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 13DBB8F1F9; Sun, 16 Jun 2019 20:41:54 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E31171BB17; Sun, 16 Jun 2019 20:41:53 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKfr61004210; Sun, 16 Jun 2019 20:41:53 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKfrhc004208; Sun, 16 Jun 2019 20:41:53 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162041.x5GKfrhc004208@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:41:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504371 - head/x11/libxkbcommon X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/libxkbcommon X-SVN-Commit-Revision: 504371 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 13DBB8F1F9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:41:54 -0000 Author: zeising Date: Sun Jun 16 20:41:53 2019 New Revision: 504371 URL: https://svnweb.freebsd.org/changeset/ports/504371 Log: x11/libxkbcommon: Update to 0.8.4 Update x11/libxkbcommon to 0.8.4 Sponsored by: B3 Init Modified: head/x11/libxkbcommon/Makefile head/x11/libxkbcommon/distinfo Modified: head/x11/libxkbcommon/Makefile ============================================================================== --- head/x11/libxkbcommon/Makefile Sun Jun 16 20:40:48 2019 (r504370) +++ head/x11/libxkbcommon/Makefile Sun Jun 16 20:41:53 2019 (r504371) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libxkbcommon -PORTVERSION= 0.8.0 -PORTREVISION= 1 +PORTVERSION= 0.8.4 CATEGORIES= x11 MASTER_SITES= http://xkbcommon.org/download/ Modified: head/x11/libxkbcommon/distinfo ============================================================================== --- head/x11/libxkbcommon/distinfo Sun Jun 16 20:40:48 2019 (r504370) +++ head/x11/libxkbcommon/distinfo Sun Jun 16 20:41:53 2019 (r504371) @@ -1,3 +1,3 @@ -TIMESTAMP = 1513526140 -SHA256 (xorg/lib/libxkbcommon-0.8.0.tar.xz) = e829265db04e0aebfb0591b6dc3377b64599558167846c3f5ee5c5e53641fe6d -SIZE (xorg/lib/libxkbcommon-0.8.0.tar.xz) = 643456 +TIMESTAMP = 1560365070 +SHA256 (xorg/lib/libxkbcommon-0.8.4.tar.xz) = 60ddcff932b7fd352752d51a5c4f04f3d0403230a584df9a2e0d5ed87c486c8b +SIZE (xorg/lib/libxkbcommon-0.8.4.tar.xz) = 648592 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:42:52 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6DB6C15C91B8; Sun, 16 Jun 2019 20:42:52 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 126F28F473; Sun, 16 Jun 2019 20:42:52 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ED0DC1BB49; Sun, 16 Jun 2019 20:42:51 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKgpoJ007779; Sun, 16 Jun 2019 20:42:51 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKgp0b007777; Sun, 16 Jun 2019 20:42:51 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162042.x5GKgp0b007777@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:42:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504372 - head/x11/libxkbfile X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/libxkbfile X-SVN-Commit-Revision: 504372 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 126F28F473 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:42:52 -0000 Author: zeising Date: Sun Jun 16 20:42:51 2019 New Revision: 504372 URL: https://svnweb.freebsd.org/changeset/ports/504372 Log: x11/libxkbfile: Update to 1.1.0 Update x11/libxkbfile to 1.1.0 This release adds support for the NoLock, NoUnlock and genKeyEvent flags, as well as other minor fixes. Add INSTALL_TARGET=install-strip to strip installed binaries and libraries Changelog: https://lists.x.org/archives/xorg-announce/2019-March/002977.html Sponsored by: B3 Init Modified: head/x11/libxkbfile/Makefile head/x11/libxkbfile/distinfo Modified: head/x11/libxkbfile/Makefile ============================================================================== --- head/x11/libxkbfile/Makefile Sun Jun 16 20:41:53 2019 (r504371) +++ head/x11/libxkbfile/Makefile Sun Jun 16 20:42:51 2019 (r504372) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libxkbfile -PORTVERSION= 1.0.9 -PORTREVISION= 2 +PORTVERSION= 1.1.0 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -14,5 +13,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING XORG_CAT= lib USE_XORG= x11 xorgproto + +INSTALL_TARGET= install-strip .include Modified: head/x11/libxkbfile/distinfo ============================================================================== --- head/x11/libxkbfile/distinfo Sun Jun 16 20:41:53 2019 (r504371) +++ head/x11/libxkbfile/distinfo Sun Jun 16 20:42:51 2019 (r504372) @@ -1,2 +1,3 @@ -SHA256 (xorg/lib/libxkbfile-1.0.9.tar.bz2) = 51817e0530961975d9513b773960b4edd275f7d5c72293d5a151ed4f42aeb16a -SIZE (xorg/lib/libxkbfile-1.0.9.tar.bz2) = 348009 +TIMESTAMP = 1560365203 +SHA256 (xorg/lib/libxkbfile-1.1.0.tar.bz2) = 758dbdaa20add2db4902df0b1b7c936564b7376c02a0acd1f2a331bd334b38c7 +SIZE (xorg/lib/libxkbfile-1.1.0.tar.bz2) = 364678 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:47:44 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AAAC715C92C1; Sun, 16 Jun 2019 20:47:44 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5067E8F5FE; Sun, 16 Jun 2019 20:47:44 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2A1B91BB5C; Sun, 16 Jun 2019 20:47:44 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKliSW008121; Sun, 16 Jun 2019 20:47:44 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKlhtP008119; Sun, 16 Jun 2019 20:47:43 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162047.x5GKlhtP008119@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:47:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504373 - in head/x11/libxshmfence: . files X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in head/x11/libxshmfence: . files X-SVN-Commit-Revision: 504373 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5067E8F5FE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:47:44 -0000 Author: zeising Date: Sun Jun 16 20:47:43 2019 New Revision: 504373 URL: https://svnweb.freebsd.org/changeset/ports/504373 Log: x11/libxshmfence: Update to 1.3 Update x11/libxshmfence to 1.3 This release contains fixes to the build system. Remove patch that's no longer needed add INSTALL_TARGET=install-strip to strip binaries and libraries Sponsored by: B3 Init Deleted: head/x11/libxshmfence/files/patch-src__xshmfence_futex.h Modified: head/x11/libxshmfence/Makefile head/x11/libxshmfence/distinfo Modified: head/x11/libxshmfence/Makefile ============================================================================== --- head/x11/libxshmfence/Makefile Sun Jun 16 20:42:51 2019 (r504372) +++ head/x11/libxshmfence/Makefile Sun Jun 16 20:47:43 2019 (r504373) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= libxshmfence -PORTVERSION= 1.2 -PORTREVISION= 4 +PORTVERSION= 1.3 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org Modified: head/x11/libxshmfence/distinfo ============================================================================== --- head/x11/libxshmfence/distinfo Sun Jun 16 20:42:51 2019 (r504372) +++ head/x11/libxshmfence/distinfo Sun Jun 16 20:47:43 2019 (r504373) @@ -1,2 +1,3 @@ -SHA256 (xorg/lib/libxshmfence-1.2.tar.bz2) = d21b2d1fd78c1efbe1f2c16dae1cb23f8fd231dcf891465b8debe636a9054b0c -SIZE (xorg/lib/libxshmfence-1.2.tar.bz2) = 267170 +TIMESTAMP = 1560369445 +SHA256 (xorg/lib/libxshmfence-1.3.tar.bz2) = b884300d26a14961a076fbebc762a39831cb75f92bed5ccf9836345b459220c7 +SIZE (xorg/lib/libxshmfence-1.3.tar.bz2) = 308644 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:49:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 87BBB15C933E; Sun, 16 Jun 2019 20:49:00 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2D5CB8F75C; Sun, 16 Jun 2019 20:49:00 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 052231BB5D; Sun, 16 Jun 2019 20:49:00 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKmxSF008319; Sun, 16 Jun 2019 20:48:59 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKmxu8008313; Sun, 16 Jun 2019 20:48:59 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162048.x5GKmxu8008313@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:48:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504374 - in head/x11/xkeyboard-config: . files X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in head/x11/xkeyboard-config: . files X-SVN-Commit-Revision: 504374 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2D5CB8F75C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:49:00 -0000 Author: zeising Date: Sun Jun 16 20:48:59 2019 New Revision: 504374 URL: https://svnweb.freebsd.org/changeset/ports/504374 Log: x11/xkeyboard-config: Update to 2.27 Update x11/xkeyboard-config to 2.27 Remove patch from upstream included in this release. add USES=gnome pet portlint by moving USES earlier Sponsored by: B3 Init Deleted: head/x11/xkeyboard-config/files/patch-symbols_am Modified: head/x11/xkeyboard-config/Makefile head/x11/xkeyboard-config/distinfo head/x11/xkeyboard-config/pkg-plist Modified: head/x11/xkeyboard-config/Makefile ============================================================================== --- head/x11/xkeyboard-config/Makefile Sun Jun 16 20:47:43 2019 (r504373) +++ head/x11/xkeyboard-config/Makefile Sun Jun 16 20:48:59 2019 (r504374) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= xkeyboard-config -PORTVERSION= 2.24 -PORTREVISION= 1 +PORTVERSION= 2.27 CATEGORIES= x11 MASTER_SITES= XORG/individual/${XORG_CAT}/${PORTNAME} @@ -14,11 +13,11 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= xkbcomp:x11/xkbcomp -XORG_CAT= data +USES= gmake gnome localbase pathfix perl5 +XORG_CAT= data NO_ARCH= yes -USES= gmake localbase pathfix perl5 -USE_GNOME= intlhack libxslt:build +USE_GNOME= libxslt:build USE_PERL5= build CONFIGURE_ARGS= --with-xkb-base=${PREFIX}/share/X11/xkb \ Modified: head/x11/xkeyboard-config/distinfo ============================================================================== --- head/x11/xkeyboard-config/distinfo Sun Jun 16 20:47:43 2019 (r504373) +++ head/x11/xkeyboard-config/distinfo Sun Jun 16 20:48:59 2019 (r504374) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528483215 -SHA256 (xorg/data/xkeyboard-config-2.24.tar.bz2) = 91b18580f46b4e4ea913707f6c8d68ab5286879c3a6591462f3b9e760d3ac4d7 -SIZE (xorg/data/xkeyboard-config-2.24.tar.bz2) = 1057889 +TIMESTAMP = 1560370074 +SHA256 (xorg/data/xkeyboard-config-2.27.tar.bz2) = 690daec8fea63526c07620c90e6f3f10aae34e94b6db6e30906173480721901f +SIZE (xorg/data/xkeyboard-config-2.27.tar.bz2) = 1664454 Modified: head/x11/xkeyboard-config/pkg-plist ============================================================================== --- head/x11/xkeyboard-config/pkg-plist Sun Jun 16 20:47:43 2019 (r504373) +++ head/x11/xkeyboard-config/pkg-plist Sun Jun 16 20:48:59 2019 (r504374) @@ -80,6 +80,7 @@ share/X11/xkb/rules/evdev share/X11/xkb/rules/evdev.extras.xml share/X11/xkb/rules/evdev.lst share/X11/xkb/rules/evdev.xml +share/X11/xkb/rules/xkb.its share/X11/xkb/rules/xfree98 share/X11/xkb/rules/xkb.dtd share/X11/xkb/rules/xorg @@ -317,6 +318,7 @@ share/X11/xkb/types/pc %%NLS%%share/locale/nb/LC_MESSAGES/xkeyboard-config.mo %%NLS%%share/locale/nl/LC_MESSAGES/xkeyboard-config.mo %%NLS%%share/locale/pl/LC_MESSAGES/xkeyboard-config.mo +%%NLS%%share/locale/pt/LC_MESSAGES/xkeyboard-config.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/xkeyboard-config.mo %%NLS%%share/locale/ro/LC_MESSAGES/xkeyboard-config.mo %%NLS%%share/locale/ru/LC_MESSAGES/xkeyboard-config.mo From owner-svn-ports-all@freebsd.org Sun Jun 16 20:57:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2503815C961C; Sun, 16 Jun 2019 20:57:23 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B68878FBDB; Sun, 16 Jun 2019 20:57:22 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A88501BD1B; Sun, 16 Jun 2019 20:57:22 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKvMCo013355; Sun, 16 Jun 2019 20:57:22 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKvMel013353; Sun, 16 Jun 2019 20:57:22 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201906162057.x5GKvMel013353@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Sun, 16 Jun 2019 20:57:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504375 - in head/games/dxx-rebirth: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: in head/games/dxx-rebirth: . files X-SVN-Commit-Revision: 504375 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B68878FBDB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:57:23 -0000 Author: pkubaj Date: Sun Jun 16 20:57:22 2019 New Revision: 504375 URL: https://svnweb.freebsd.org/changeset/ports/504375 Log: games/dxx-rebirth: update to 20190530, remove unnecessary patches Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D20661 Deleted: head/games/dxx-rebirth/files/ Modified: head/games/dxx-rebirth/Makefile head/games/dxx-rebirth/distinfo Modified: head/games/dxx-rebirth/Makefile ============================================================================== --- head/games/dxx-rebirth/Makefile Sun Jun 16 20:48:59 2019 (r504374) +++ head/games/dxx-rebirth/Makefile Sun Jun 16 20:57:22 2019 (r504375) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= dxx-rebirth -PORTVERSION= 20190523 +PORTVERSION= 20190530 DISTVERSIONSUFFIX= -src CATEGORIES= games -MASTER_SITES= https://www.dxx-rebirth.com/download/dxx/weekly/ +MASTER_SITES= https://www.dxx-rebirth.com/download/dxx/rebirth/ DISTNAME= ${PORTNAME}_${PORTVERSION}${DISTVERSIONSUFFIX} MAINTAINER= pkubaj@FreeBSD.org Modified: head/games/dxx-rebirth/distinfo ============================================================================== --- head/games/dxx-rebirth/distinfo Sun Jun 16 20:48:59 2019 (r504374) +++ head/games/dxx-rebirth/distinfo Sun Jun 16 20:57:22 2019 (r504375) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558946168 -SHA256 (dxx-rebirth_20190523-src.tar.xz) = a12c2defd587029b951d75a2b2e47e01d9ae7214aeac185b99cd413c970583e6 -SIZE (dxx-rebirth_20190523-src.tar.xz) = 1317288 +TIMESTAMP = 1560718581 +SHA256 (dxx-rebirth_20190530-src.tar.xz) = c7dcf8121a37fb1db6265f0cda110b22b6ea8828bb5fa74ac8daa26e5c21c415 +SIZE (dxx-rebirth_20190530-src.tar.xz) = 1319372 From owner-svn-ports-all@freebsd.org Sun Jun 16 20:58:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C094915C9666; Sun, 16 Jun 2019 20:58:51 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 671228FCE6; Sun, 16 Jun 2019 20:58:51 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 41B3C1BD22; Sun, 16 Jun 2019 20:58:51 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GKwp90013526; Sun, 16 Jun 2019 20:58:51 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GKwo9c013524; Sun, 16 Jun 2019 20:58:50 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906162058.x5GKwo9c013524@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sun, 16 Jun 2019 20:58:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504376 - head/x11/sessreg X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/sessreg X-SVN-Commit-Revision: 504376 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 671228FCE6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 20:58:51 -0000 Author: zeising Date: Sun Jun 16 20:58:50 2019 New Revision: 504376 URL: https://svnweb.freebsd.org/changeset/ports/504376 Log: x11/sessreg: Update to 1.1.2 Update x11/sessreg to 1.1.2 This is a maintenance release ChangeLog: https://lists.x.org/archives/xorg-announce/2019-June/002994.html Sponsored by: B3 Init Modified: head/x11/sessreg/Makefile head/x11/sessreg/distinfo Modified: head/x11/sessreg/Makefile ============================================================================== --- head/x11/sessreg/Makefile Sun Jun 16 20:57:22 2019 (r504375) +++ head/x11/sessreg/Makefile Sun Jun 16 20:58:50 2019 (r504376) @@ -1,13 +1,14 @@ # $FreeBSD$ PORTNAME= sessreg -PORTVERSION= 1.1.1 +PORTVERSION= 1.1.2 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org COMMENT= Manage utmp/wtmp entries for non-init X clients LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING XORG_CAT= app USE_XORG= x11 Modified: head/x11/sessreg/distinfo ============================================================================== --- head/x11/sessreg/distinfo Sun Jun 16 20:57:22 2019 (r504375) +++ head/x11/sessreg/distinfo Sun Jun 16 20:58:50 2019 (r504376) @@ -1,3 +1,3 @@ -TIMESTAMP = 1488318538 -SHA256 (xorg/app/sessreg-1.1.1.tar.bz2) = 78a76ae3f3f6a26547a34630d1b740f42344848b5fb6d7c9c7f7da255e35a6e1 -SIZE (xorg/app/sessreg-1.1.1.tar.bz2) = 136044 +TIMESTAMP = 1560718436 +SHA256 (xorg/app/sessreg-1.1.2.tar.bz2) = dfcb9e954273ace63879aec053c7880466f8755752a35aa9ced3fa5f04fd2c33 +SIZE (xorg/app/sessreg-1.1.2.tar.bz2) = 137612 From owner-svn-ports-all@freebsd.org Sun Jun 16 22:22:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E9F615CBE41; Sun, 16 Jun 2019 22:22:42 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DADDE6BF70; Sun, 16 Jun 2019 22:22:41 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 70A9D1CC07; Sun, 16 Jun 2019 22:22:41 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GMMfwu059920; Sun, 16 Jun 2019 22:22:41 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GMMfht059918; Sun, 16 Jun 2019 22:22:41 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201906162222.x5GMMfht059918@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Sun, 16 Jun 2019 22:22:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504377 - head/shells/zsh-autosuggestions X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: head/shells/zsh-autosuggestions X-SVN-Commit-Revision: 504377 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DADDE6BF70 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 22:22:42 -0000 Author: jrm Date: Sun Jun 16 22:22:40 2019 New Revision: 504377 URL: https://svnweb.freebsd.org/changeset/ports/504377 Log: shells/zsh-autosuggestions: Update to version 0.6.0 Upstream changelog: https://github.com/zsh-users/zsh-autosuggestions/blob/master/CHANGELOG.md#v060 Modified: head/shells/zsh-autosuggestions/Makefile (contents, props changed) head/shells/zsh-autosuggestions/distinfo (contents, props changed) Modified: head/shells/zsh-autosuggestions/Makefile ============================================================================== --- head/shells/zsh-autosuggestions/Makefile Sun Jun 16 20:58:50 2019 (r504376) +++ head/shells/zsh-autosuggestions/Makefile Sun Jun 16 22:22:40 2019 (r504377) @@ -2,7 +2,7 @@ PORTNAME= zsh-autosuggestions DISTVERSIONPREFIX= v -DISTVERSION= 0.5.2 +DISTVERSION= 0.6.0 CATEGORIES= shells MAINTAINER= jrm@FreeBSD.org Modified: head/shells/zsh-autosuggestions/distinfo ============================================================================== --- head/shells/zsh-autosuggestions/distinfo Sun Jun 16 20:58:50 2019 (r504376) +++ head/shells/zsh-autosuggestions/distinfo Sun Jun 16 22:22:40 2019 (r504377) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555512722 -SHA256 (zsh-users-zsh-autosuggestions-v0.5.2_GH0.tar.gz) = 7ac1c1dbab0d58e8d385dfc5fa9148707a53f029f43d046efb01092f68cc5218 -SIZE (zsh-users-zsh-autosuggestions-v0.5.2_GH0.tar.gz) = 21702 +TIMESTAMP = 1560722886 +SHA256 (zsh-users-zsh-autosuggestions-v0.6.0_GH0.tar.gz) = f8c55379a44fa18d774aa4f4f753e4a6d542e1bcc3732e7735bfc3251ad291d7 +SIZE (zsh-users-zsh-autosuggestions-v0.6.0_GH0.tar.gz) = 25240 From owner-svn-ports-all@freebsd.org Sun Jun 16 22:29:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E0B4D15CBEF2; Sun, 16 Jun 2019 22:29:04 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 787436C0A0; Sun, 16 Jun 2019 22:29:04 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 472381CC0A; Sun, 16 Jun 2019 22:29:04 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GMT4ge060285; Sun, 16 Jun 2019 22:29:04 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GMT3G1060283; Sun, 16 Jun 2019 22:29:03 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201906162229.x5GMT3G1060283@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Sun, 16 Jun 2019 22:29:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504378 - head/textproc/utf8proc X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: head/textproc/utf8proc X-SVN-Commit-Revision: 504378 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 787436C0A0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 22:29:05 -0000 Author: jrm Date: Sun Jun 16 22:29:03 2019 New Revision: 504378 URL: https://svnweb.freebsd.org/changeset/ports/504378 Log: textproc/utf8proc: Update to version 2.4.0 Upstream changes: https://github.com/JuliaStrings/utf8proc/releases/tag/v2.4.0 Approved by: hrs (maintainer, timeout) Differential Revision: https://reviews.freebsd.org/D20399 Modified: head/textproc/utf8proc/Makefile (contents, props changed) head/textproc/utf8proc/distinfo (contents, props changed) Modified: head/textproc/utf8proc/Makefile ============================================================================== --- head/textproc/utf8proc/Makefile Sun Jun 16 22:22:40 2019 (r504377) +++ head/textproc/utf8proc/Makefile Sun Jun 16 22:29:03 2019 (r504378) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= utf8proc -PORTVERSION= 2.2.0 +PORTVERSION= 2.4.0 DISTVERSIONPREFIX= v CATEGORIES= textproc devel @@ -22,7 +22,8 @@ PLIST_FILES= include/utf8proc.h \ lib/libutf8proc.a \ lib/libutf8proc.so \ lib/libutf8proc.so.2 \ - lib/libutf8proc.so.${PORTVERSION} + lib/libutf8proc.so.2.3.1 \ + libdata/pkgconfig/libutf8proc.pc PORTDOCS= NEWS.md README.md CONFLICTS= libutf8proc-[0-9]* Modified: head/textproc/utf8proc/distinfo ============================================================================== --- head/textproc/utf8proc/distinfo Sun Jun 16 22:22:40 2019 (r504377) +++ head/textproc/utf8proc/distinfo Sun Jun 16 22:29:03 2019 (r504378) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551427717 -SHA256 (JuliaStrings-utf8proc-v2.2.0_GH0.tar.gz) = 3f8fd1dbdb057ee5ba584a539d5cd1b3952141c0338557cb0bdf8cb9cfed5dbf -SIZE (JuliaStrings-utf8proc-v2.2.0_GH0.tar.gz) = 156334 +TIMESTAMP = 1558637980 +SHA256 (JuliaStrings-utf8proc-v2.4.0_GH0.tar.gz) = b2e5d547c1d94762a6d03a7e05cea46092aab68636460ff8648f1295e2cdfbd7 +SIZE (JuliaStrings-utf8proc-v2.4.0_GH0.tar.gz) = 154936 From owner-svn-ports-all@freebsd.org Sun Jun 16 22:58:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F1EFC15CCAA6; Sun, 16 Jun 2019 22:58:17 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9864F6CEDC; Sun, 16 Jun 2019 22:58:17 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 66A331D110; Sun, 16 Jun 2019 22:58:17 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5GMwHRW075842; Sun, 16 Jun 2019 22:58:17 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5GMwG96075840; Sun, 16 Jun 2019 22:58:16 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201906162258.x5GMwG96075840@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Sun, 16 Jun 2019 22:58:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504379 - in head/java/eclipse: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: in head/java/eclipse: . files X-SVN-Commit-Revision: 504379 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9864F6CEDC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Jun 2019 22:58:18 -0000 Author: pkubaj Date: Sun Jun 16 22:58:16 2019 New Revision: 504379 URL: https://svnweb.freebsd.org/changeset/ports/504379 Log: java/eclipse: fix build Require new GCC to build this port on GCC architectures. PR: 238489 Approved by: jonc@chen.org.nz (maintainer), tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D20667 Modified: head/java/eclipse/Makefile head/java/eclipse/files/patch-eclipse.platform.swt Modified: head/java/eclipse/Makefile ============================================================================== --- head/java/eclipse/Makefile Sun Jun 16 22:29:03 2019 (r504378) +++ head/java/eclipse/Makefile Sun Jun 16 22:58:16 2019 (r504379) @@ -54,7 +54,7 @@ BUILD_DEPENDS= git:devel/git-lite \ ${LOCALBASE}/share/java/maven/bin/mvn:devel/maven LIB_DEPENDS= libsecret-1.so:security/libsecret \ libwebkit2gtk-4.0.so:www/webkit2-gtk3 -USES= gmake pkgconfig gnome +USES= compiler:c++11-lang gmake pkgconfig gnome USE_GNOME= gtk30 USE_GITHUB= yes @@ -74,7 +74,7 @@ DESKTOP_ENTRIES="Eclipse" \ SUB_FILES= ${PORTNAME} -MAVEN_ENV= MAVEN_OPTS=-Xmx1024m +MAVEN_ENV= MAVEN_OPTS=-Xmx1024m CC=${CC} MAVEN_REPO= -Dmaven.repo.local=${WRKDIR}/${GH_PROJECT}-${PORTVERSION} MAVEN_ECLIPSE= -Dnative=gtk.freebsd.${ARCH} -Dcomparator.repo=file://${WRKDIR}/${GH_PROJECT}-${PORTVERSION}/p2-stub -DforceContextQualifier=v${ECLIPSE_TSTAMP} Modified: head/java/eclipse/files/patch-eclipse.platform.swt ============================================================================== --- head/java/eclipse/files/patch-eclipse.platform.swt Sun Jun 16 22:29:03 2019 (r504378) +++ head/java/eclipse/files/patch-eclipse.platform.swt Sun Jun 16 22:58:16 2019 (r504379) @@ -74,14 +74,11 @@ diff -ru eclipse.platform.swt/bundles/org.eclipse.swt/ *) SWT_ARCH=$MODEL AWT_ARCH=$MODEL -@@ -118,6 +116,16 @@ +@@ -118,6 +116,13 @@ esac case $SWT_OS.$SWT_ARCH in + "freebsd.ppc64") -+ if [ "${CC}" = "" ]; then -+ export CC=gcc -+ fi + if [ "${JAVA_HOME}" = "" ]; then + DYNAMIC_JAVA_HOME=`readlink -f /usr/local/bin/java | sed "s:jre/::" | sed "s:bin/java::"` + JAVA_HOME = $DYNAMIC_JAVA_HOME From owner-svn-ports-all@freebsd.org Mon Jun 17 00:10:25 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1E5A15CE31A; Mon, 17 Jun 2019 00:10:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6BF076E84C; Mon, 17 Jun 2019 00:10:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 58FDE1DCB3; Mon, 17 Jun 2019 00:10:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H0AO60012466; Mon, 17 Jun 2019 00:10:24 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H0ANI7012460; Mon, 17 Jun 2019 00:10:23 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906170010.x5H0ANI7012460@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 17 Jun 2019 00:10:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504380 - in head/devel: . mstch mstch/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . mstch mstch/files X-SVN-Commit-Revision: 504380 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6BF076E84C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 00:10:25 -0000 Author: yuri Date: Mon Jun 17 00:10:22 2019 New Revision: 504380 URL: https://svnweb.freebsd.org/changeset/ports/504380 Log: New port: devel/mstch: Complete implementation of {{mustache}} templates using modern C++ Added: head/devel/mstch/ head/devel/mstch/Makefile (contents, props changed) head/devel/mstch/distinfo (contents, props changed) head/devel/mstch/files/ head/devel/mstch/files/patch-src_CMakeLists.txt (contents, props changed) head/devel/mstch/pkg-descr (contents, props changed) head/devel/mstch/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 16 22:58:16 2019 (r504379) +++ head/devel/Makefile Mon Jun 17 00:10:22 2019 (r504380) @@ -1560,6 +1560,7 @@ SUBDIR += msgpuck SUBDIR += msp430-debug-stack SUBDIR += mspdebug + SUBDIR += mstch SUBDIR += mtbl SUBDIR += mutagen SUBDIR += myrepos Added: head/devel/mstch/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mstch/Makefile Mon Jun 17 00:10:22 2019 (r504380) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= mstch +DISTVERSION= 1.0.2-1 +DISTVERSIONSUFFIX= -g0fde1cf +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Complete implementation of {{mustache}} templates using modern C++ + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= boost-libs>0:devel/boost-libs + +USES= cmake compiler:c++11-lang +USE_GITHUB= yes +GH_ACCOUNT= no1msd +USE_LDCONFIG= yes + +CMAKE_ON= BUILD_SHARED_LIBS + +.include Added: head/devel/mstch/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mstch/distinfo Mon Jun 17 00:10:22 2019 (r504380) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560729411 +SHA256 (no1msd-mstch-1.0.2-1-g0fde1cf_GH0.tar.gz) = 8b21ffe8c289fecd3dba6af3fc9c32d7544409c754d714f71d9f8bd15c2a56a6 +SIZE (no1msd-mstch-1.0.2-1-g0fde1cf_GH0.tar.gz) = 24413 Added: head/devel/mstch/files/patch-src_CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mstch/files/patch-src_CMakeLists.txt Mon Jun 17 00:10:22 2019 (r504380) @@ -0,0 +1,11 @@ +--- src/CMakeLists.txt.orig 2019-06-16 23:58:00 UTC ++++ src/CMakeLists.txt +@@ -22,7 +22,7 @@ set(SRC + token.cpp + utils.cpp) + +-add_library(mstch STATIC ${SRC}) ++add_library(mstch ${SRC}) + + set_property(TARGET mstch PROPERTY VERSION ${mstch_VERSION}) + Added: head/devel/mstch/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mstch/pkg-descr Mon Jun 17 00:10:22 2019 (r504380) @@ -0,0 +1,4 @@ +mstch is a complete implementation of {{mustache}} templates using modern C++. +It's compliant with specifications v1.1.3, including the lambda module. + +WWW: https://github.com/no1msd/mstch Added: head/devel/mstch/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/mstch/pkg-plist Mon Jun 17 00:10:22 2019 (r504380) @@ -0,0 +1,7 @@ +include/mstch/mstch.hpp +lib/cmake/mstch/mstch-config-version.cmake +lib/cmake/mstch/mstch-config.cmake +lib/cmake/mstch/mstch-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/mstch/mstch-targets.cmake +lib/libmstch.so +lib/libmstch.so.1.0.1 From owner-svn-ports-all@freebsd.org Mon Jun 17 02:21:12 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3D2B15D0632; Mon, 17 Jun 2019 02:21:12 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 436E671F49; Mon, 17 Jun 2019 02:21:12 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 12F571F27E; Mon, 17 Jun 2019 02:21:12 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H2LBB1080165; Mon, 17 Jun 2019 02:21:11 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H2LBF0080163; Mon, 17 Jun 2019 02:21:11 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906170221.x5H2LBF0080163@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 17 Jun 2019 02:21:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504381 - head/devel/folly X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/folly X-SVN-Commit-Revision: 504381 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 436E671F49 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 02:21:12 -0000 Author: yuri Date: Mon Jun 17 02:21:11 2019 New Revision: 504381 URL: https://svnweb.freebsd.org/changeset/ports/504381 Log: devel/folly: Sync with the upstream GitHub pull request Modified: head/devel/folly/Makefile head/devel/folly/distinfo Modified: head/devel/folly/Makefile ============================================================================== --- head/devel/folly/Makefile Mon Jun 17 00:10:22 2019 (r504380) +++ head/devel/folly/Makefile Mon Jun 17 02:21:11 2019 (r504381) @@ -3,11 +3,11 @@ PORTNAME= folly DISTVERSIONPREFIX= v DISTVERSION= 2019.06.10.00 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PATCH_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/commit/ -PATCHFILES= 2461dea6d517515ebea623d162722910ede5e86f.patch:-p1 +PATCHFILES= 1df75a13c2f52ee275b6f95be87a02a474e3386f.patch:-p1 MAINTAINER= yuri@FreeBSD.org COMMENT= C++ library developed and used at Facebook Modified: head/devel/folly/distinfo ============================================================================== --- head/devel/folly/distinfo Mon Jun 17 00:10:22 2019 (r504380) +++ head/devel/folly/distinfo Mon Jun 17 02:21:11 2019 (r504381) @@ -1,5 +1,5 @@ TIMESTAMP = 1560670033 SHA256 (facebook-folly-v2019.06.10.00_GH0.tar.gz) = afecd68815a83865d95a3a6b861abe8096beefae45c89566e0d510279b631b57 SIZE (facebook-folly-v2019.06.10.00_GH0.tar.gz) = 2941638 -SHA256 (2461dea6d517515ebea623d162722910ede5e86f.patch) = eb55e3d3c696abfcb0f0e45e49e92df0772533b6eb62480187d72658291c8cae -SIZE (2461dea6d517515ebea623d162722910ede5e86f.patch) = 4996 +SHA256 (1df75a13c2f52ee275b6f95be87a02a474e3386f.patch) = 095fac5e28acc5bb2a70a5c0cd3d693dd8c0b1835f2cffc0170ef96e2441a7ad +SIZE (1df75a13c2f52ee275b6f95be87a02a474e3386f.patch) = 4837 From owner-svn-ports-all@freebsd.org Mon Jun 17 03:00:22 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0514715D122E; Mon, 17 Jun 2019 03:00:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9758072EA9; Mon, 17 Jun 2019 03:00:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6A4B01F8F4; Mon, 17 Jun 2019 03:00:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H30Ll7001084; Mon, 17 Jun 2019 03:00:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H30Ks4001073; Mon, 17 Jun 2019 03:00:20 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906170300.x5H30Ks4001073@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 17 Jun 2019 03:00:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504382 - in head/net: . rsocket-cpp rsocket-cpp/files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/net: . rsocket-cpp rsocket-cpp/files X-SVN-Commit-Revision: 504382 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9758072EA9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 03:00:22 -0000 Author: yuri Date: Mon Jun 17 03:00:19 2019 New Revision: 504382 URL: https://svnweb.freebsd.org/changeset/ports/504382 Log: New port: net/rsocket-cpp: C++ implementation of RSocket Added: head/net/rsocket-cpp/ head/net/rsocket-cpp/Makefile (contents, props changed) head/net/rsocket-cpp/distinfo (contents, props changed) head/net/rsocket-cpp/files/ head/net/rsocket-cpp/files/patch-CMakeLists.txt (contents, props changed) head/net/rsocket-cpp/pkg-descr (contents, props changed) head/net/rsocket-cpp/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Jun 17 02:21:11 2019 (r504381) +++ head/net/Makefile Mon Jun 17 03:00:19 2019 (r504382) @@ -1179,6 +1179,7 @@ SUBDIR += ripe-whois SUBDIR += routinator SUBDIR += rp-pppoe + SUBDIR += rsocket-cpp SUBDIR += rsplib SUBDIR += rsync SUBDIR += rsync-bpc Added: head/net/rsocket-cpp/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rsocket-cpp/Makefile Mon Jun 17 03:00:19 2019 (r504382) @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= rsocket-cpp +DISTVERSIONPREFIX= v +DISTVERSION= 0.10.0-942 +DISTVERSIONSUFFIX= -g3d878b1e +CATEGORIES= net + +MAINTAINER= yuri@FreeBSD.org +COMMENT= C++ implementation of RSocket + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libboost_atomic.so:devel/boost-libs \ + libdouble-conversion.so:devel/double-conversion \ + libevent.so:devel/libevent \ + libfolly.so:devel/folly \ + libgflags.so:devel/gflags \ + libglog.so:devel/glog \ + liblz4.so:archivers/liblz4 \ + libsnappy.so:archivers/snappy \ + libsodium.so:security/libsodium \ + libunwind.so:devel/libunwind \ + libzstd.so:archivers/zstd + +USES= cmake compiler:c++14-lang ssl +USE_GITHUB= yes +GH_ACCOUNT= rsocket +USE_LDCONFIG= yes + +CMAKE_ON= BUILD_SHARED_LIBS +CMAKE_OFF= BUILD_TESTS BUILD_EXAMPLES + +post-install: # https://github.com/rsocket/rsocket-cpp/issues/890 + @cd ${STAGEDIR}${LOCALBASE} && ${RM} -r include/rsocket/examples include/rsocket/test include/yarpl/cmake include/yarpl/perf include/yarpl/test + +.include Added: head/net/rsocket-cpp/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rsocket-cpp/distinfo Mon Jun 17 03:00:19 2019 (r504382) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560730851 +SHA256 (rsocket-rsocket-cpp-v0.10.0-942-g3d878b1e_GH0.tar.gz) = 578b0c5b3fc91b22dc6611d766136a6a21fc7114ca3b7441a8891387fb2325f1 +SIZE (rsocket-rsocket-cpp-v0.10.0-942-g3d878b1e_GH0.tar.gz) = 1798622 Added: head/net/rsocket-cpp/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rsocket-cpp/files/patch-CMakeLists.txt Mon Jun 17 03:00:19 2019 (r504382) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2019-06-17 00:26:16 UTC ++++ CMakeLists.txt +@@ -171,7 +171,7 @@ if (COMPILER_HAS_W_NOEXCEPT_TYPE) + endif() + + if (NOT MSVC) +- set(EXTRA_CXX_FLAGS ${EXTRA_CXX_FLAGS} -Werror) ++# set(EXTRA_CXX_FLAGS ${EXTRA_CXX_FLAGS} -Werror) + endif() + + if("${BUILD_TYPE_LOWER}" MATCHES "debug") Added: head/net/rsocket-cpp/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rsocket-cpp/pkg-descr Mon Jun 17 03:00:19 2019 (r504382) @@ -0,0 +1,11 @@ +RSocket is a binary protocol for use on byte stream transports such as TCP, +WebSockets, and Aeron. + +It enables the following symmetric interaction models via async message passing +over a single connection: +* request/response (stream of 1) +* request/stream (finite stream of many) +* fire-and-forget (no response) +* channel (bi-directional streams) + +WWW: http://rsocket.io/ Added: head/net/rsocket-cpp/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rsocket-cpp/pkg-plist Mon Jun 17 03:00:19 2019 (r504382) @@ -0,0 +1,127 @@ +include/rsocket/ColdResumeHandler.h +include/rsocket/ConnectionAcceptor.h +include/rsocket/ConnectionFactory.h +include/rsocket/DuplexConnection.h +include/rsocket/Payload.h +include/rsocket/RSocket.h +include/rsocket/RSocketClient.h +include/rsocket/RSocketConnectionEvents.h +include/rsocket/RSocketErrors.h +include/rsocket/RSocketException.h +include/rsocket/RSocketParameters.h +include/rsocket/RSocketRequester.h +include/rsocket/RSocketResponder.h +include/rsocket/RSocketServer.h +include/rsocket/RSocketServerState.h +include/rsocket/RSocketServiceHandler.h +include/rsocket/RSocketStats.h +include/rsocket/ResumeManager.h +include/rsocket/benchmarks/Fixture.h +include/rsocket/benchmarks/Latch.h +include/rsocket/benchmarks/Throughput.h +include/rsocket/framing/ErrorCode.h +include/rsocket/framing/Frame.h +include/rsocket/framing/FrameFlags.h +include/rsocket/framing/FrameHeader.h +include/rsocket/framing/FrameProcessor.h +include/rsocket/framing/FrameSerializer.h +include/rsocket/framing/FrameSerializer_v1_0.h +include/rsocket/framing/FrameTransport.h +include/rsocket/framing/FrameTransportImpl.h +include/rsocket/framing/FrameType.h +include/rsocket/framing/FramedDuplexConnection.h +include/rsocket/framing/FramedReader.h +include/rsocket/framing/Framer.h +include/rsocket/framing/ProtocolVersion.h +include/rsocket/framing/ResumeIdentificationToken.h +include/rsocket/framing/ScheduledFrameProcessor.h +include/rsocket/framing/ScheduledFrameTransport.h +include/rsocket/internal/Allowance.h +include/rsocket/internal/ClientResumeStatusCallback.h +include/rsocket/internal/Common.h +include/rsocket/internal/ConnectionSet.h +include/rsocket/internal/KeepaliveTimer.h +include/rsocket/internal/ScheduledRSocketResponder.h +include/rsocket/internal/ScheduledSingleObserver.h +include/rsocket/internal/ScheduledSingleSubscription.h +include/rsocket/internal/ScheduledSubscriber.h +include/rsocket/internal/ScheduledSubscription.h +include/rsocket/internal/SetupResumeAcceptor.h +include/rsocket/internal/StackTraceUtils.h +include/rsocket/internal/SwappableEventBase.h +include/rsocket/internal/WarmResumeManager.h +include/rsocket/statemachine/ChannelRequester.h +include/rsocket/statemachine/ChannelResponder.h +include/rsocket/statemachine/ConsumerBase.h +include/rsocket/statemachine/FireAndForgetResponder.h +include/rsocket/statemachine/PublisherBase.h +include/rsocket/statemachine/RSocketStateMachine.h +include/rsocket/statemachine/RequestResponseRequester.h +include/rsocket/statemachine/RequestResponseResponder.h +include/rsocket/statemachine/StreamFragmentAccumulator.h +include/rsocket/statemachine/StreamRequester.h +include/rsocket/statemachine/StreamResponder.h +include/rsocket/statemachine/StreamStateMachineBase.h +include/rsocket/statemachine/StreamsWriter.h +include/rsocket/tck-test/BaseSubscriber.h +include/rsocket/tck-test/FlowableSubscriber.h +include/rsocket/tck-test/MarbleProcessor.h +include/rsocket/tck-test/SingleSubscriber.h +include/rsocket/tck-test/TestFileParser.h +include/rsocket/tck-test/TestInterpreter.h +include/rsocket/tck-test/TestSuite.h +include/rsocket/tck-test/TypedCommands.h +include/rsocket/transports/RSocketTransport.h +include/rsocket/transports/tcp/TcpConnectionAcceptor.h +include/rsocket/transports/tcp/TcpConnectionFactory.h +include/rsocket/transports/tcp/TcpDuplexConnection.h +include/yarpl/Common.h +include/yarpl/Disposable.h +include/yarpl/Flowable.h +include/yarpl/Observable.h +include/yarpl/Refcounted.h +include/yarpl/Single.h +include/yarpl/examples/FlowableExamples.h +include/yarpl/flowable/CancelingSubscriber.h +include/yarpl/flowable/DeferFlowable.h +include/yarpl/flowable/EmitterFlowable.h +include/yarpl/flowable/Flowable.h +include/yarpl/flowable/FlowableConcatOperators.h +include/yarpl/flowable/FlowableDoOperator.h +include/yarpl/flowable/FlowableObserveOnOperator.h +include/yarpl/flowable/FlowableOperator.h +include/yarpl/flowable/FlowableTimeoutOperator.h +include/yarpl/flowable/Flowable_FromObservable.h +include/yarpl/flowable/Flowables.h +include/yarpl/flowable/PublishProcessor.h +include/yarpl/flowable/Subscriber.h +include/yarpl/flowable/Subscription.h +include/yarpl/flowable/TestSubscriber.h +include/yarpl/observable/DeferObservable.h +include/yarpl/observable/Observable.h +include/yarpl/observable/ObservableConcatOperators.h +include/yarpl/observable/ObservableDoOperator.h +include/yarpl/observable/ObservableOperator.h +include/yarpl/observable/Observables.h +include/yarpl/observable/Observer.h +include/yarpl/observable/Subscription.h +include/yarpl/observable/TestObserver.h +include/yarpl/single/Single.h +include/yarpl/single/SingleObserver.h +include/yarpl/single/SingleObservers.h +include/yarpl/single/SingleOperator.h +include/yarpl/single/SingleSubscription.h +include/yarpl/single/SingleSubscriptions.h +include/yarpl/single/SingleTestObserver.h +include/yarpl/single/Singles.h +include/yarpl/test_utils/Mocks.h +include/yarpl/test_utils/Tuple.h +include/yarpl/utils/credits.h +lib/cmake/rsocket/rsocket-config.cmake +lib/cmake/rsocket/rsocket-exports-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/rsocket/rsocket-exports.cmake +lib/cmake/yarpl/yarpl-config.cmake +lib/cmake/yarpl/yarpl-exports-%%CMAKE_BUILD_TYPE%%.cmake +lib/cmake/yarpl/yarpl-exports.cmake +lib/libReactiveSocket.so +lib/libyarpl.so From owner-svn-ports-all@freebsd.org Mon Jun 17 04:11:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E70815D2B20; Mon, 17 Jun 2019 04:11:45 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2115A75BCE; Mon, 17 Jun 2019 04:11:45 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EE7A3206A1; Mon, 17 Jun 2019 04:11:44 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H4BiHQ040318; Mon, 17 Jun 2019 04:11:44 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H4BitI040316; Mon, 17 Jun 2019 04:11:44 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201906170411.x5H4BitI040316@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Mon, 17 Jun 2019 04:11:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504383 - head/mail/postfix-current X-SVN-Group: ports-head X-SVN-Commit-Author: ohauer X-SVN-Commit-Paths: head/mail/postfix-current X-SVN-Commit-Revision: 504383 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2115A75BCE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 04:11:45 -0000 Author: ohauer Date: Mon Jun 17 04:11:44 2019 New Revision: 504383 URL: https://svnweb.freebsd.org/changeset/ports/504383 Log: - update to 3.5-20190615 Incompatibility with snapshot 20190615 ==================================== The Postfix TLS library by default no longer waits after sending a TLS 'close' notification. This should be safe with TLSv1.2 and later. Specify "tls_fast_shutdown_enable = no" to enable historical Postfix behavior. Major changes with snapshot 20190615 ==================================== After sending a TLS 'close' notification, the Postfix library by default no longer waits for the TLS peer to respond. According to RFC 2246 (TLSv1.2) section 7.2.1, "It is not required for the initiator of the close to wait for the responding close_notify alert before closing the read side of the connection." The SMTP+LMTP delivery agent can now prepend Delivered-To, X-Original-To and Return-Path headers, just like the pipe(8) delivery agent. This uses the same "flags=DOR" command-line flags in master.cf. See the smtp(8) manpage for details. This obsoletes the "lmtp_assume_final = yes" setting, and replaces it with "flags=...X...", for consistency with pipe(8). Modified: head/mail/postfix-current/Makefile head/mail/postfix-current/distinfo Modified: head/mail/postfix-current/Makefile ============================================================================== --- head/mail/postfix-current/Makefile Mon Jun 17 03:00:19 2019 (r504382) +++ head/mail/postfix-current/Makefile Mon Jun 17 04:11:44 2019 (r504383) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= postfix -DISTVERSION= 3.5-20190518 +DISTVERSION= 3.5-20190615 PORTREVISION?= 0 PORTEPOCH= 5 CATEGORIES= mail ipv6 Modified: head/mail/postfix-current/distinfo ============================================================================== --- head/mail/postfix-current/distinfo Mon Jun 17 03:00:19 2019 (r504382) +++ head/mail/postfix-current/distinfo Mon Jun 17 04:11:44 2019 (r504383) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558183337 -SHA256 (postfix/postfix-3.5-20190518.tar.gz) = 0d1a31f3b069a2beb83c16f59aa02c8aede09b3bf82e6c4a6d82525625eb0b84 -SIZE (postfix/postfix-3.5-20190518.tar.gz) = 4607314 +TIMESTAMP = 1560645746 +SHA256 (postfix/postfix-3.5-20190615.tar.gz) = 8a1f106eca6927d70983017df14007d2672edf93240bde67bf51c57794bb1ac7 +SIZE (postfix/postfix-3.5-20190615.tar.gz) = 4617409 From owner-svn-ports-all@freebsd.org Mon Jun 17 04:48:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5DF5515D31F1; Mon, 17 Jun 2019 04:48:13 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CBA2D76767; Mon, 17 Jun 2019 04:48:12 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A651D20BD7; Mon, 17 Jun 2019 04:48:12 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H4mCk5059367; Mon, 17 Jun 2019 04:48:12 GMT (envelope-from meta@FreeBSD.org) Received: (from meta@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H4mC3u059365; Mon, 17 Jun 2019 04:48:12 GMT (envelope-from meta@FreeBSD.org) Message-Id: <201906170448.x5H4mC3u059365@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: meta set sender to meta@FreeBSD.org using -f From: Koichiro Iwao Date: Mon, 17 Jun 2019 04:48:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504384 - head/devel/dash.el X-SVN-Group: ports-head X-SVN-Commit-Author: meta X-SVN-Commit-Paths: head/devel/dash.el X-SVN-Commit-Revision: 504384 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CBA2D76767 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 04:48:13 -0000 Author: meta Date: Mon Jun 17 04:48:11 2019 New Revision: 504384 URL: https://svnweb.freebsd.org/changeset/ports/504384 Log: devel/dash.el: Update to 2.16.0 PR: 238594 Submitted by: Yasuhiro KIMURA Modified: head/devel/dash.el/Makefile head/devel/dash.el/distinfo Modified: head/devel/dash.el/Makefile ============================================================================== --- head/devel/dash.el/Makefile Mon Jun 17 04:11:44 2019 (r504383) +++ head/devel/dash.el/Makefile Mon Jun 17 04:48:11 2019 (r504384) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= dash.el -PORTVERSION= 2.15.0 +PORTVERSION= 2.16.0 CATEGORIES= devel elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} Modified: head/devel/dash.el/distinfo ============================================================================== --- head/devel/dash.el/distinfo Mon Jun 17 04:11:44 2019 (r504383) +++ head/devel/dash.el/distinfo Mon Jun 17 04:48:11 2019 (r504384) @@ -1,3 +1,3 @@ -TIMESTAMP = 1548207590 -SHA256 (magnars-dash.el-2.15.0_GH0.tar.gz) = 8e0f91346a12882a1c94f57f23d0a827b45e760c6e3cf98d94cb7c5425bdf71f -SIZE (magnars-dash.el-2.15.0_GH0.tar.gz) = 146876 +TIMESTAMP = 1560666989 +SHA256 (magnars-dash.el-2.16.0_GH0.tar.gz) = a9a1e45bf158c6bef506a4835f2f2686087bddcaa4525c59f554636d4d965ba0 +SIZE (magnars-dash.el-2.16.0_GH0.tar.gz) = 148151 From owner-svn-ports-all@freebsd.org Mon Jun 17 04:55:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2A1B15D338A; Mon, 17 Jun 2019 04:55:12 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 83AE176AF0; Mon, 17 Jun 2019 04:55:12 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 59DDB20D78; Mon, 17 Jun 2019 04:55:12 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H4tCQV064466; Mon, 17 Jun 2019 04:55:12 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H4tBQd064462; Mon, 17 Jun 2019 04:55:11 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906170455.x5H4tBQd064462@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Mon, 17 Jun 2019 04:55:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504385 - in head/textproc: . py-patiencediff X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/textproc: . py-patiencediff X-SVN-Commit-Revision: 504385 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 83AE176AF0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 04:55:13 -0000 Author: kai Date: Mon Jun 17 04:55:11 2019 New Revision: 504385 URL: https://svnweb.freebsd.org/changeset/ports/504385 Log: New port: textproc/py-patiencediff This package contains the Python implementation of the "Patience Diff" algorithm, as first described by Bram Cohen. "Patience Diff" provides a good balance of performance, nice output for humans, and implementation simplicity. The code in this package was extracted from the Bazaar code base. WWW: https://pypi.org/project/patiencediff/ PR: 238299 Submitted by: fullermd@over-yonder.net Tested by: pkubaj (PowerPC64) Added: head/textproc/py-patiencediff/ head/textproc/py-patiencediff/Makefile (contents, props changed) head/textproc/py-patiencediff/distinfo (contents, props changed) head/textproc/py-patiencediff/pkg-descr (contents, props changed) Modified: head/textproc/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jun 17 04:48:11 2019 (r504384) +++ head/textproc/Makefile Mon Jun 17 04:55:11 2019 (r504385) @@ -1313,6 +1313,7 @@ SUBDIR += py-parsel SUBDIR += py-parsimonious SUBDIR += py-parso + SUBDIR += py-patiencediff SUBDIR += py-pdfminer SUBDIR += py-pdfminer.six SUBDIR += py-pdfminer3k Added: head/textproc/py-patiencediff/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-patiencediff/Makefile Mon Jun 17 04:55:11 2019 (r504385) @@ -0,0 +1,25 @@ +# $FreeBSD$ + +PORTNAME= patiencediff +PORTVERSION= 0.1.0 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= fullermd@over-yonder.net +COMMENT= Implementation of the "Patience Diff" algorithm + +LICENSE= GPLv2+ + +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>0:devel/py-pytest@${PY_FLAVOR} + +USES= python +USE_PYTHON= distutils autoplist + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/patiencediff/_patiencediff_c.so + +do-test: + cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v build/ + +.include Added: head/textproc/py-patiencediff/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-patiencediff/distinfo Mon Jun 17 04:55:11 2019 (r504385) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560686203 +SHA256 (patiencediff-0.1.0.tar.gz) = 7cd316f57f7b4086923cc0db80273886416134d82945dddd0aa24f0e95c7d302 +SIZE (patiencediff-0.1.0.tar.gz) = 19965 Added: head/textproc/py-patiencediff/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py-patiencediff/pkg-descr Mon Jun 17 04:55:11 2019 (r504385) @@ -0,0 +1,9 @@ +This package contains the Python implementation of the "Patience Diff" +algorithm, as first described by Bram Cohen. + +"Patience Diff" provides a good balance of performance, nice output for humans, +and implementation simplicity. + +The code in this package was extracted from the Bazaar code base. + +WWW: https://pypi.org/project/patiencediff/ From owner-svn-ports-all@freebsd.org Mon Jun 17 04:57:36 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 021B215D3414; Mon, 17 Jun 2019 04:57:36 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9D77476BFD; Mon, 17 Jun 2019 04:57:35 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6B16220D7A; Mon, 17 Jun 2019 04:57:35 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H4vZ1N064692; Mon, 17 Jun 2019 04:57:35 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H4vZCJ064691; Mon, 17 Jun 2019 04:57:35 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201906170457.x5H4vZCJ064691@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Mon, 17 Jun 2019 04:57:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504386 - head/devel/hs-cabal-install X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/devel/hs-cabal-install X-SVN-Commit-Revision: 504386 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9D77476BFD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 04:57:36 -0000 Author: pkubaj Date: Mon Jun 17 04:57:34 2019 New Revision: 504386 URL: https://svnweb.freebsd.org/changeset/ports/504386 Log: devel/hs-cabal-install: fix build Add USES=compiler:c11 to fix build: /usr/bin/ld: TOC section size exceeds 64k USE_BINUTILS could probably be used, but this port insists on using the compiler as LD. Approved by: mentors (implicite approval) Modified: head/devel/hs-cabal-install/Makefile Modified: head/devel/hs-cabal-install/Makefile ============================================================================== --- head/devel/hs-cabal-install/Makefile Mon Jun 17 04:55:11 2019 (r504385) +++ head/devel/hs-cabal-install/Makefile Mon Jun 17 04:57:34 2019 (r504386) @@ -12,7 +12,7 @@ LICENSE= BSD3CLAUSE BUILD_DEPENDS= ghc:lang/ghc -USES= cabal +USES= cabal compiler:c11 USE_CABAL= async-2.2.1_1 base16-bytestring-0.1.1.6 base64-bytestring-1.0.0.1 \ cryptohash-sha256-0.11.101.0_2 digest-0.0.1.2 echo-0.1.3_1 \ From owner-svn-ports-all@freebsd.org Mon Jun 17 05:14:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5B83E15D3A42; Mon, 17 Jun 2019 05:14:46 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EE2EB7749A; Mon, 17 Jun 2019 05:14:45 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C2F40210BD; Mon, 17 Jun 2019 05:14:45 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H5EjUl074905; Mon, 17 Jun 2019 05:14:45 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H5EiT5074898; Mon, 17 Jun 2019 05:14:44 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201906170514.x5H5EiT5074898@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Mon, 17 Jun 2019 05:14:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504387 - in head: net-mgmt/ccnet-server net-mgmt/seafile-server www/py-seafdav www/py-seafobj www/seahub X-SVN-Group: ports-head X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: in head: net-mgmt/ccnet-server net-mgmt/seafile-server www/py-seafdav www/py-seafobj www/seahub X-SVN-Commit-Revision: 504387 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EE2EB7749A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 05:14:46 -0000 Author: ultima Date: Mon Jun 17 05:14:44 2019 New Revision: 504387 URL: https://svnweb.freebsd.org/changeset/ports/504387 Log: Updated Seafile to 7.0.2 Updated Seahub to 7.0.3 Changes: https://manual.seafile.com/changelog/server-changelog.html Modified: head/net-mgmt/ccnet-server/distinfo head/net-mgmt/seafile-server/Makefile.include head/net-mgmt/seafile-server/distinfo head/www/py-seafdav/distinfo head/www/py-seafobj/distinfo head/www/seahub/distinfo head/www/seahub/pkg-plist Modified: head/net-mgmt/ccnet-server/distinfo ============================================================================== --- head/net-mgmt/ccnet-server/distinfo Mon Jun 17 04:57:34 2019 (r504386) +++ head/net-mgmt/ccnet-server/distinfo Mon Jun 17 05:14:44 2019 (r504387) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559327658 -SHA256 (haiwen-ccnet-server-v7.0.1-server_GH0.tar.gz) = 52d3824891daf0ba7361a46c290582e782ce8b8e5bd3964b80c5a0ced8c72ae7 -SIZE (haiwen-ccnet-server-v7.0.1-server_GH0.tar.gz) = 218014 +TIMESTAMP = 1560713635 +SHA256 (haiwen-ccnet-server-v7.0.2-server_GH0.tar.gz) = 9cd129e4c228d2028fd158dc56ea7e1d3d8c6f6d2602624a100e83582c131931 +SIZE (haiwen-ccnet-server-v7.0.2-server_GH0.tar.gz) = 218034 Modified: head/net-mgmt/seafile-server/Makefile.include ============================================================================== --- head/net-mgmt/seafile-server/Makefile.include Mon Jun 17 04:57:34 2019 (r504386) +++ head/net-mgmt/seafile-server/Makefile.include Mon Jun 17 05:14:44 2019 (r504387) @@ -1,7 +1,7 @@ # $FreeBSD$ -SEAFILE_VER=7.0.1 -SEAHUB_VER=7.0.2 +SEAFILE_VER=7.0.2 +SEAHUB_VER=7.0.3 # Various vars used in most/all the Makefiles Modified: head/net-mgmt/seafile-server/distinfo ============================================================================== --- head/net-mgmt/seafile-server/distinfo Mon Jun 17 04:57:34 2019 (r504386) +++ head/net-mgmt/seafile-server/distinfo Mon Jun 17 05:14:44 2019 (r504387) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559327660 -SHA256 (haiwen-seafile-server-v7.0.1-server_GH0.tar.gz) = 652607e3394e8fa944072637aed084d5eb70942a55e69fd44b4ef5ac596d847c -SIZE (haiwen-seafile-server-v7.0.1-server_GH0.tar.gz) = 747882 +TIMESTAMP = 1560713637 +SHA256 (haiwen-seafile-server-v7.0.2-server_GH0.tar.gz) = 1c77db3f8f7bf375346d1e92720a676141810723e12251fa607ab3d5f64652e3 +SIZE (haiwen-seafile-server-v7.0.2-server_GH0.tar.gz) = 747863 Modified: head/www/py-seafdav/distinfo ============================================================================== --- head/www/py-seafdav/distinfo Mon Jun 17 04:57:34 2019 (r504386) +++ head/www/py-seafdav/distinfo Mon Jun 17 05:14:44 2019 (r504387) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558051273 -SHA256 (haiwen-seafdav-v7.0.2-pro_GH0.tar.gz) = e5682f8424e8e8bfcf816a25e607525a54713df3ef8e1679e14c230a6162e106 -SIZE (haiwen-seafdav-v7.0.2-pro_GH0.tar.gz) = 2556408 +TIMESTAMP = 1560713638 +SHA256 (haiwen-seafdav-v7.0.3-pro_GH0.tar.gz) = bd6c3f9f376cf1bd208c13a946f240c32da16d53aff7f3499cc42dc462ecd01a +SIZE (haiwen-seafdav-v7.0.3-pro_GH0.tar.gz) = 2556429 Modified: head/www/py-seafobj/distinfo ============================================================================== --- head/www/py-seafobj/distinfo Mon Jun 17 04:57:34 2019 (r504386) +++ head/www/py-seafobj/distinfo Mon Jun 17 05:14:44 2019 (r504387) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558051275 -SHA256 (haiwen-seafobj-v7.0.2-pro_GH0.tar.gz) = 4ea822ed8c7cd2f2b28e7a46a18b9c98b5b242de812a2b8e453406ac32f8a3ef -SIZE (haiwen-seafobj-v7.0.2-pro_GH0.tar.gz) = 10058178 +TIMESTAMP = 1560713641 +SHA256 (haiwen-seafobj-v7.0.3-pro_GH0.tar.gz) = 3f5895b841b98d6ab1322b65f159fe46af3c96cb3acf19cf697b74a69b248bcc +SIZE (haiwen-seafobj-v7.0.3-pro_GH0.tar.gz) = 10058198 Modified: head/www/seahub/distinfo ============================================================================== --- head/www/seahub/distinfo Mon Jun 17 04:57:34 2019 (r504386) +++ head/www/seahub/distinfo Mon Jun 17 05:14:44 2019 (r504387) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560059571 -SHA256 (haiwen-seahub-v7.0.2-pro_GH0.tar.gz) = fb1509b56830edae330dfa61dfb2f01adba3579ae21caa27d54e330ab37513cb -SIZE (haiwen-seahub-v7.0.2-pro_GH0.tar.gz) = 28904855 +TIMESTAMP = 1560713646 +SHA256 (haiwen-seahub-v7.0.3-pro_GH0.tar.gz) = 2a2b399c780b9491f9640577de7b61c38baf45c1adc16bee37d0ff17098b7bfb +SIZE (haiwen-seahub-v7.0.3-pro_GH0.tar.gz) = 29650779 Modified: head/www/seahub/pkg-plist ============================================================================== --- head/www/seahub/pkg-plist Mon Jun 17 04:57:34 2019 (r504386) +++ head/www/seahub/pkg-plist Mon Jun 17 05:14:44 2019 (r504387) @@ -25,6 +25,8 @@ %%SEAHUBDIR%%/frontend/build/frontend/css/fileHistoryOld.css %%SEAHUBDIR%%/frontend/build/frontend/css/markdownEditor.css %%SEAHUBDIR%%/frontend/build/frontend/css/orgAdmin.css +%%SEAHUBDIR%%/frontend/build/frontend/css/repoFolderTrash.css +%%SEAHUBDIR%%/frontend/build/frontend/css/repoHistory.css %%SEAHUBDIR%%/frontend/build/frontend/css/repoview.css %%SEAHUBDIR%%/frontend/build/frontend/css/search.css %%SEAHUBDIR%%/frontend/build/frontend/css/settings.css @@ -60,6 +62,8 @@ %%SEAHUBDIR%%/frontend/build/frontend/js/fileHistoryOld.js %%SEAHUBDIR%%/frontend/build/frontend/js/markdownEditor.js %%SEAHUBDIR%%/frontend/build/frontend/js/orgAdmin.js +%%SEAHUBDIR%%/frontend/build/frontend/js/repoFolderTrash.js +%%SEAHUBDIR%%/frontend/build/frontend/js/repoHistory.js %%SEAHUBDIR%%/frontend/build/frontend/js/repoview.js %%SEAHUBDIR%%/frontend/build/frontend/js/search.js %%SEAHUBDIR%%/frontend/build/frontend/js/settings.js @@ -108,6 +112,11 @@ %%SEAHUBDIR%%/frontend/build/frontend/media/fa-solid-900.ttf %%SEAHUBDIR%%/frontend/build/frontend/media/fa-solid-900.woff %%SEAHUBDIR%%/frontend/build/frontend/media/fa-solid-900.woff2 +%%SEAHUBDIR%%/frontend/build/frontend/media/iconfont.eot +%%SEAHUBDIR%%/frontend/build/frontend/media/iconfont.svg +%%SEAHUBDIR%%/frontend/build/frontend/media/iconfont.ttf +%%SEAHUBDIR%%/frontend/build/frontend/media/iconfont.woff +%%SEAHUBDIR%%/frontend/build/frontend/media/iconfont.woff2 %%SEAHUBDIR%%/frontend/config/env.js %%SEAHUBDIR%%/frontend/config/jest/cssTransform.js %%SEAHUBDIR%%/frontend/config/jest/fileTransform.js @@ -152,6 +161,8 @@ %%SEAHUBDIR%%/frontend/src/components/dialog/add-related-file-dialog.js %%SEAHUBDIR%%/frontend/src/components/dialog/add-reviewer-dialog.js %%SEAHUBDIR%%/frontend/src/components/dialog/change-repo-password-dialog.js +%%SEAHUBDIR%%/frontend/src/components/dialog/clean-trash.js +%%SEAHUBDIR%%/frontend/src/components/dialog/commit-details.js %%SEAHUBDIR%%/frontend/src/components/dialog/confirm-delete-account.js %%SEAHUBDIR%%/frontend/src/components/dialog/confirm-disconnect-wechat.js %%SEAHUBDIR%%/frontend/src/components/dialog/copy-dirent-dialog.js @@ -165,6 +176,7 @@ %%SEAHUBDIR%%/frontend/src/components/dialog/delete-repo-dialog.js %%SEAHUBDIR%%/frontend/src/components/dialog/dismiss-group-dialog.js %%SEAHUBDIR%%/frontend/src/components/dialog/edit-filetag-dialog.js +%%SEAHUBDIR%%/frontend/src/components/dialog/edit-repo-commit-labels.js %%SEAHUBDIR%%/frontend/src/components/dialog/generate-share-link.js %%SEAHUBDIR%%/frontend/src/components/dialog/generate-upload-link.js %%SEAHUBDIR%%/frontend/src/components/dialog/image-dialog.js @@ -223,6 +235,7 @@ %%SEAHUBDIR%%/frontend/src/components/dir-view-mode/dir-column-view.js %%SEAHUBDIR%%/frontend/src/components/dir-view-mode/dir-grid-view.js %%SEAHUBDIR%%/frontend/src/components/dir-view-mode/dir-list-view.js +%%SEAHUBDIR%%/frontend/src/components/dirent-detail/detail-comments-list.js %%SEAHUBDIR%%/frontend/src/components/dirent-detail/detail-list-view.js %%SEAHUBDIR%%/frontend/src/components/dirent-detail/dirent-details.js %%SEAHUBDIR%%/frontend/src/components/dirent-detail/lib-details.js @@ -234,13 +247,14 @@ %%SEAHUBDIR%%/frontend/src/components/draft-list-view/draft-list-item.js %%SEAHUBDIR%%/frontend/src/components/draft-list-view/draft-list-view.js %%SEAHUBDIR%%/frontend/src/components/dropdown-menu/item-dropdown-menu.js -%%SEAHUBDIR%%/frontend/src/components/file-chooser/dirent-list-item.js -%%SEAHUBDIR%%/frontend/src/components/file-chooser/dirent-list-view.js +%%SEAHUBDIR%%/frontend/src/components/empty-tip.js %%SEAHUBDIR%%/frontend/src/components/file-chooser/file-chooser.js %%SEAHUBDIR%%/frontend/src/components/file-chooser/repo-list-item.js %%SEAHUBDIR%%/frontend/src/components/file-chooser/repo-list-view.js %%SEAHUBDIR%%/frontend/src/components/file-chooser/searched-list-item.js %%SEAHUBDIR%%/frontend/src/components/file-chooser/searched-list-view.js +%%SEAHUBDIR%%/frontend/src/components/file-chooser/tree-list-item.js +%%SEAHUBDIR%%/frontend/src/components/file-chooser/tree-list-view.js %%SEAHUBDIR%%/frontend/src/components/file-uploader/file-uploader.js %%SEAHUBDIR%%/frontend/src/components/file-uploader/upload-list-item.js %%SEAHUBDIR%%/frontend/src/components/file-uploader/upload-progress-dialog.js @@ -342,6 +356,7 @@ %%SEAHUBDIR%%/frontend/src/css/group-view.css %%SEAHUBDIR%%/frontend/src/css/groups.css %%SEAHUBDIR%%/frontend/src/css/image-file-view.css +%%SEAHUBDIR%%/frontend/src/css/index-viewer.css %%SEAHUBDIR%%/frontend/src/css/insert-repo-image-dialog.css %%SEAHUBDIR%%/frontend/src/css/internal-link.css %%SEAHUBDIR%%/frontend/src/css/invitations.css @@ -359,6 +374,8 @@ %%SEAHUBDIR%%/frontend/src/css/pdf-file-view.css %%SEAHUBDIR%%/frontend/src/css/react-context-menu.css %%SEAHUBDIR%%/frontend/src/css/related-files-list.css +%%SEAHUBDIR%%/frontend/src/css/repo-folder-trash.css +%%SEAHUBDIR%%/frontend/src/css/repo-history.css %%SEAHUBDIR%%/frontend/src/css/repo-info-bar.css %%SEAHUBDIR%%/frontend/src/css/repo-tag.css %%SEAHUBDIR%%/frontend/src/css/review-comment-dialog.css @@ -382,6 +399,7 @@ %%SEAHUBDIR%%/frontend/src/css/user-settings.css %%SEAHUBDIR%%/frontend/src/css/video-file-view.css %%SEAHUBDIR%%/frontend/src/css/wiki.css +%%SEAHUBDIR%%/frontend/src/css/work-weixin-departments.css %%SEAHUBDIR%%/frontend/src/draft.js %%SEAHUBDIR%%/frontend/src/draw/draw-viewer.js %%SEAHUBDIR%%/frontend/src/draw/draw.js @@ -478,9 +496,16 @@ %%SEAHUBDIR%%/frontend/src/pages/sys-admin/index.js %%SEAHUBDIR%%/frontend/src/pages/sys-admin/main-panel.js %%SEAHUBDIR%%/frontend/src/pages/sys-admin/side-panel.js +%%SEAHUBDIR%%/frontend/src/pages/sys-admin/work-weixin-departments.js +%%SEAHUBDIR%%/frontend/src/pages/sys-admin/work-weixin/index.js +%%SEAHUBDIR%%/frontend/src/pages/sys-admin/work-weixin/work-weixin-department-members-list.js +%%SEAHUBDIR%%/frontend/src/pages/sys-admin/work-weixin/work-weixin-departments-tree-node.js +%%SEAHUBDIR%%/frontend/src/pages/sys-admin/work-weixin/work-weixin-departments-tree-panel.js %%SEAHUBDIR%%/frontend/src/pages/wiki/main-panel.js %%SEAHUBDIR%%/frontend/src/pages/wiki/side-panel.js %%SEAHUBDIR%%/frontend/src/pages/wikis/wikis.js +%%SEAHUBDIR%%/frontend/src/repo-folder-trash.js +%%SEAHUBDIR%%/frontend/src/repo-history.js %%SEAHUBDIR%%/frontend/src/repo-wiki-mode.js %%SEAHUBDIR%%/frontend/src/settings.js %%SEAHUBDIR%%/frontend/src/shared-dir-view.js @@ -710,174 +735,182 @@ %%SEAHUBDIR%%/media/assets/css/select2.png %%SEAHUBDIR%%/media/assets/css/select2x2.49e3f0060186.png %%SEAHUBDIR%%/media/assets/css/select2x2.png -%%SEAHUBDIR%%/media/assets/frontend/commons/bundle.common.7cac895a81e8.js +%%SEAHUBDIR%%/media/assets/frontend/commons/bundle.common.ccc9d0ce6ba1.js %%SEAHUBDIR%%/media/assets/frontend/commons/bundle.common.js -%%SEAHUBDIR%%/media/assets/frontend/css/app.98f2eb6d1ca0.css +%%SEAHUBDIR%%/media/assets/frontend/css/app.a8ee01c6246c.css %%SEAHUBDIR%%/media/assets/frontend/css/app.css -%%SEAHUBDIR%%/media/assets/frontend/css/draft.6fe9b2831115.css -%%SEAHUBDIR%%/media/assets/frontend/css/draft.78c5b13610c1.css +%%SEAHUBDIR%%/media/assets/frontend/css/draft.87a2a717c82c.css %%SEAHUBDIR%%/media/assets/frontend/css/draft.css -%%SEAHUBDIR%%/media/assets/frontend/css/fileHistory.2f00d066a472.css +%%SEAHUBDIR%%/media/assets/frontend/css/draft.fba1470bb821.css +%%SEAHUBDIR%%/media/assets/frontend/css/fileHistory.5451ea878641.css +%%SEAHUBDIR%%/media/assets/frontend/css/fileHistory.55106dfd9869.css %%SEAHUBDIR%%/media/assets/frontend/css/fileHistory.css -%%SEAHUBDIR%%/media/assets/frontend/css/fileHistory.d1592cc040e7.css -%%SEAHUBDIR%%/media/assets/frontend/css/fileHistoryOld.42b6d7977be2.css +%%SEAHUBDIR%%/media/assets/frontend/css/fileHistoryOld.b87ecee57a91.css +%%SEAHUBDIR%%/media/assets/frontend/css/fileHistoryOld.c712b36e2792.css %%SEAHUBDIR%%/media/assets/frontend/css/fileHistoryOld.css -%%SEAHUBDIR%%/media/assets/frontend/css/fileHistoryOld.f59caddf7aff.css -%%SEAHUBDIR%%/media/assets/frontend/css/markdownEditor.60e40151f9a6.css -%%SEAHUBDIR%%/media/assets/frontend/css/markdownEditor.ae7f849e3f1e.css +%%SEAHUBDIR%%/media/assets/frontend/css/markdownEditor.4948f6b4ae80.css +%%SEAHUBDIR%%/media/assets/frontend/css/markdownEditor.4aa8e4e4f41d.css %%SEAHUBDIR%%/media/assets/frontend/css/markdownEditor.css -%%SEAHUBDIR%%/media/assets/frontend/css/orgAdmin.483442275e51.css -%%SEAHUBDIR%%/media/assets/frontend/css/orgAdmin.706a65ddf8cd.css +%%SEAHUBDIR%%/media/assets/frontend/css/orgAdmin.1bb0197c0e60.css +%%SEAHUBDIR%%/media/assets/frontend/css/orgAdmin.78811545f494.css %%SEAHUBDIR%%/media/assets/frontend/css/orgAdmin.css -%%SEAHUBDIR%%/media/assets/frontend/css/repoview.195001dc4ec9.css -%%SEAHUBDIR%%/media/assets/frontend/css/repoview.8cf1629180ec.css +%%SEAHUBDIR%%/media/assets/frontend/css/repoFolderTrash.045473b0c299.css +%%SEAHUBDIR%%/media/assets/frontend/css/repoFolderTrash.css +%%SEAHUBDIR%%/media/assets/frontend/css/repoHistory.218ad079718f.css +%%SEAHUBDIR%%/media/assets/frontend/css/repoHistory.css +%%SEAHUBDIR%%/media/assets/frontend/css/repoview.55575f067adc.css +%%SEAHUBDIR%%/media/assets/frontend/css/repoview.9e0baa3cedc3.css %%SEAHUBDIR%%/media/assets/frontend/css/repoview.css +%%SEAHUBDIR%%/media/assets/frontend/css/search.06ddfa329cbf.css %%SEAHUBDIR%%/media/assets/frontend/css/search.css -%%SEAHUBDIR%%/media/assets/frontend/css/search.ff4614427b60.css -%%SEAHUBDIR%%/media/assets/frontend/css/settings.aa856fd1d9d4.css +%%SEAHUBDIR%%/media/assets/frontend/css/settings.60c8b2bf20a9.css %%SEAHUBDIR%%/media/assets/frontend/css/settings.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedDirView.6d14a71ae85b.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedDirView.css -%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewAudio.61a93ef496ba.css +%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewAudio.632867f5ae2d.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewAudio.css -%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewDocument.2632d8b353fa.css +%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewDocument.7ff87e0a3508.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewDocument.css -%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewImage.17811b0c63fb.css +%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewImage.3d1c1b157ef5.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewImage.css -%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewMarkdown.5fbe97947225.css +%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewMarkdown.929364a1df15.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewMarkdown.css -%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewPDF.2632d8b353fa.css +%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewPDF.7ff87e0a3508.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewPDF.css -%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewSVG.37f57ef15eaf.css +%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewSVG.2f4ffaeb512b.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewSVG.css -%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewSpreadsheet.3f4443fbceb6.css +%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewSpreadsheet.2ec7ece14722.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewSpreadsheet.css -%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewText.430c66dd6f0d.css +%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewText.316b287c627a.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewText.css +%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewUnknown.7d2303a10f56.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewUnknown.css -%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewUnknown.f2351e03d465.css +%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewVideo.2aafc0a69d3d.css %%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewVideo.css -%%SEAHUBDIR%%/media/assets/frontend/css/sharedFileViewVideo.eded581e49fd.css -%%SEAHUBDIR%%/media/assets/frontend/css/sysAdmin.596456831c10.css +%%SEAHUBDIR%%/media/assets/frontend/css/sysAdmin.5ac0a4fa4f95.css +%%SEAHUBDIR%%/media/assets/frontend/css/sysAdmin.5d72dfa804e3.css %%SEAHUBDIR%%/media/assets/frontend/css/sysAdmin.css -%%SEAHUBDIR%%/media/assets/frontend/css/sysAdmin.ed7819eca5dc.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewCdoc.2ca65055119b.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewCdoc.797ce1067bb4.css %%SEAHUBDIR%%/media/assets/frontend/css/viewCdoc.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewCdoc.fc8df192a488.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewDataGrid.1e991a87b182.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewCdoc.e9e6b9b61bdd.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewDataGrid.06168f384cce.css %%SEAHUBDIR%%/media/assets/frontend/css/viewDataGrid.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewFileAudio.129437325c53.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewFileAudio.33667e146b0c.css %%SEAHUBDIR%%/media/assets/frontend/css/viewFileAudio.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewFileDocument.97b53a3c606e.css %%SEAHUBDIR%%/media/assets/frontend/css/viewFileDocument.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewFileImage.a899b310f0ec.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewFileDocument.f012743744fc.css %%SEAHUBDIR%%/media/assets/frontend/css/viewFileImage.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewFilePDF.97b53a3c606e.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewFileImage.e5f704501582.css %%SEAHUBDIR%%/media/assets/frontend/css/viewFilePDF.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewFileSVG.997485b0fd4a.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewFilePDF.f012743744fc.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewFileSVG.c62e57b93ba8.css %%SEAHUBDIR%%/media/assets/frontend/css/viewFileSVG.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewFileSpreadsheet.43449af9f2a9.css %%SEAHUBDIR%%/media/assets/frontend/css/viewFileSpreadsheet.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewFileSpreadsheet.f473dfc597ee.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewFileText.083f7fa69fc0.css %%SEAHUBDIR%%/media/assets/frontend/css/viewFileText.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewFileText.d54c1e7648a3.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewFileUnknown.3d086a75fbe3.css %%SEAHUBDIR%%/media/assets/frontend/css/viewFileUnknown.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewFileUnknown.fa1a33af2d01.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewFileVideo.00835efddeb9.css %%SEAHUBDIR%%/media/assets/frontend/css/viewFileVideo.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewFileVideo.f154b965a76f.css -%%SEAHUBDIR%%/media/assets/frontend/css/viewFileXmind.a899b310f0ec.css %%SEAHUBDIR%%/media/assets/frontend/css/viewFileXmind.css -%%SEAHUBDIR%%/media/assets/frontend/css/wiki.13db2ff3bfe6.css -%%SEAHUBDIR%%/media/assets/frontend/css/wiki.b68dfc0cc7ed.css +%%SEAHUBDIR%%/media/assets/frontend/css/viewFileXmind.e5f704501582.css +%%SEAHUBDIR%%/media/assets/frontend/css/wiki.87f24b81e0fa.css %%SEAHUBDIR%%/media/assets/frontend/css/wiki.css -%%SEAHUBDIR%%/media/assets/frontend/js/app.f8a2712fdb45.js +%%SEAHUBDIR%%/media/assets/frontend/css/wiki.e44173d7483a.css +%%SEAHUBDIR%%/media/assets/frontend/js/app.ec3e6f78529c.js %%SEAHUBDIR%%/media/assets/frontend/js/app.js -%%SEAHUBDIR%%/media/assets/frontend/js/draft.611e212abe1b.js +%%SEAHUBDIR%%/media/assets/frontend/js/draft.b334e9a028d7.js %%SEAHUBDIR%%/media/assets/frontend/js/draft.js -%%SEAHUBDIR%%/media/assets/frontend/js/draw.2b9a41ed7df3.js +%%SEAHUBDIR%%/media/assets/frontend/js/draw.ec11750cbfb7.js %%SEAHUBDIR%%/media/assets/frontend/js/draw.js -%%SEAHUBDIR%%/media/assets/frontend/js/fileHistory.f158528ae0ef.js +%%SEAHUBDIR%%/media/assets/frontend/js/fileHistory.fd62fed31ac9.js %%SEAHUBDIR%%/media/assets/frontend/js/fileHistory.js -%%SEAHUBDIR%%/media/assets/frontend/js/fileHistoryOld.34e8f921445f.js +%%SEAHUBDIR%%/media/assets/frontend/js/fileHistoryOld.8e1b474e9864.js %%SEAHUBDIR%%/media/assets/frontend/js/fileHistoryOld.js -%%SEAHUBDIR%%/media/assets/frontend/js/markdownEditor.0693a296baa2.js +%%SEAHUBDIR%%/media/assets/frontend/js/markdownEditor.33f57fdd4bff.js %%SEAHUBDIR%%/media/assets/frontend/js/markdownEditor.js -%%SEAHUBDIR%%/media/assets/frontend/js/orgAdmin.3a6f706b2503.js +%%SEAHUBDIR%%/media/assets/frontend/js/orgAdmin.64f5fa7e5c87.js %%SEAHUBDIR%%/media/assets/frontend/js/orgAdmin.js -%%SEAHUBDIR%%/media/assets/frontend/js/repoview.c0e15b8d351a.js +%%SEAHUBDIR%%/media/assets/frontend/js/repoFolderTrash.d6fcc348d13f.js +%%SEAHUBDIR%%/media/assets/frontend/js/repoFolderTrash.js +%%SEAHUBDIR%%/media/assets/frontend/js/repoHistory.8f4b5586a829.js +%%SEAHUBDIR%%/media/assets/frontend/js/repoHistory.js +%%SEAHUBDIR%%/media/assets/frontend/js/repoview.f26e6d42a569.js %%SEAHUBDIR%%/media/assets/frontend/js/repoview.js -%%SEAHUBDIR%%/media/assets/frontend/js/search.fb8f630e3f10.js +%%SEAHUBDIR%%/media/assets/frontend/js/search.3e6c9f48fe93.js %%SEAHUBDIR%%/media/assets/frontend/js/search.js -%%SEAHUBDIR%%/media/assets/frontend/js/settings.e24ccaa541dc.js +%%SEAHUBDIR%%/media/assets/frontend/js/settings.bccfe8bfcc67.js %%SEAHUBDIR%%/media/assets/frontend/js/settings.js -%%SEAHUBDIR%%/media/assets/frontend/js/sharedDirView.21cac1d0e736.js +%%SEAHUBDIR%%/media/assets/frontend/js/sharedDirView.345cffa97812.js %%SEAHUBDIR%%/media/assets/frontend/js/sharedDirView.js -%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewAudio.5fb395d0da29.js +%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewAudio.4e03602cc8b1.js %%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewAudio.js -%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewDocument.c18c1d7f9c79.js +%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewDocument.7b1372255c2d.js %%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewDocument.js -%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewImage.dd827b2de250.js +%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewImage.ca9ef685439e.js %%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewImage.js -%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewMarkdown.7ecb4445033f.js +%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewMarkdown.8b9a9f856dc4.js %%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewMarkdown.js -%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewPDF.88e36ae293c6.js +%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewPDF.cb096e398a68.js %%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewPDF.js -%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewSVG.72a0f5580c0f.js +%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewSVG.5b0ded3569fb.js %%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewSVG.js -%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewSpreadsheet.e85644b1f930.js +%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewSpreadsheet.4dbb8dfd56d3.js %%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewSpreadsheet.js -%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewText.145882ac143f.js +%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewText.1f997c966639.js %%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewText.js -%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewUnknown.162ee1f2644f.js +%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewUnknown.d58fd5567f34.js %%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewUnknown.js -%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewVideo.b9d6628ab8ae.js +%%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewVideo.421105d6b377.js %%SEAHUBDIR%%/media/assets/frontend/js/sharedFileViewVideo.js -%%SEAHUBDIR%%/media/assets/frontend/js/sysAdmin.698c97eb0d2a.js +%%SEAHUBDIR%%/media/assets/frontend/js/sysAdmin.61bf95e0901a.js %%SEAHUBDIR%%/media/assets/frontend/js/sysAdmin.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewCdoc.cf53d4524a71.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewCdoc.b90c3c75fef3.js %%SEAHUBDIR%%/media/assets/frontend/js/viewCdoc.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewDataGrid.04701c814b14.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewDataGrid.d8e04ee5dc6d.js %%SEAHUBDIR%%/media/assets/frontend/js/viewDataGrid.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewFileAudio.6fea48e19732.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewFileAudio.29446283fe13.js %%SEAHUBDIR%%/media/assets/frontend/js/viewFileAudio.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewFileDocument.b07cf2daacfe.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewFileDocument.0499467d1ee1.js %%SEAHUBDIR%%/media/assets/frontend/js/viewFileDocument.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewFileImage.c7c1134953d7.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewFileImage.ba8ab8996430.js %%SEAHUBDIR%%/media/assets/frontend/js/viewFileImage.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewFilePDF.74a581699c75.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewFilePDF.33d524bd2de1.js %%SEAHUBDIR%%/media/assets/frontend/js/viewFilePDF.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewFileSVG.4c17a73ec3f2.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewFileSVG.5ad56bd9dc6e.js %%SEAHUBDIR%%/media/assets/frontend/js/viewFileSVG.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewFileSpreadsheet.a7c77c2b0bc2.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewFileSpreadsheet.51365e2818b0.js %%SEAHUBDIR%%/media/assets/frontend/js/viewFileSpreadsheet.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewFileText.7a448d822f6b.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewFileText.534eea1fb9cd.js %%SEAHUBDIR%%/media/assets/frontend/js/viewFileText.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewFileUnknown.2728198d5f59.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewFileUnknown.a8afc31c3b4d.js %%SEAHUBDIR%%/media/assets/frontend/js/viewFileUnknown.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewFileVideo.2370a227a911.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewFileVideo.c88e90f9b930.js %%SEAHUBDIR%%/media/assets/frontend/js/viewFileVideo.js -%%SEAHUBDIR%%/media/assets/frontend/js/viewFileXmind.1c55e6298a3d.js +%%SEAHUBDIR%%/media/assets/frontend/js/viewFileXmind.0c95f421fc99.js %%SEAHUBDIR%%/media/assets/frontend/js/viewFileXmind.js -%%SEAHUBDIR%%/media/assets/frontend/js/wiki.8fb35c44c795.js +%%SEAHUBDIR%%/media/assets/frontend/js/wiki.7d444880832d.js %%SEAHUBDIR%%/media/assets/frontend/js/wiki.js -%%SEAHUBDIR%%/media/assets/frontend/locales/cs/translations.2d8aa6d169fa.json +%%SEAHUBDIR%%/media/assets/frontend/locales/cs/translations.b923244ce0a8.json %%SEAHUBDIR%%/media/assets/frontend/locales/cs/translations.json -%%SEAHUBDIR%%/media/assets/frontend/locales/de/translations.908bead92b7b.json +%%SEAHUBDIR%%/media/assets/frontend/locales/de/translations.9aca9494ec23.json %%SEAHUBDIR%%/media/assets/frontend/locales/de/translations.json -%%SEAHUBDIR%%/media/assets/frontend/locales/en/translations.4a46bc81afc0.json +%%SEAHUBDIR%%/media/assets/frontend/locales/en/translations.6dcc00fb84dc.json %%SEAHUBDIR%%/media/assets/frontend/locales/en/translations.json -%%SEAHUBDIR%%/media/assets/frontend/locales/es-AR/translations.0beade70e582.json +%%SEAHUBDIR%%/media/assets/frontend/locales/es-AR/translations.9b11760aa1ed.json %%SEAHUBDIR%%/media/assets/frontend/locales/es-AR/translations.json -%%SEAHUBDIR%%/media/assets/frontend/locales/es-MX/translations.0beade70e582.json +%%SEAHUBDIR%%/media/assets/frontend/locales/es-MX/translations.9b11760aa1ed.json %%SEAHUBDIR%%/media/assets/frontend/locales/es-MX/translations.json -%%SEAHUBDIR%%/media/assets/frontend/locales/es/translations.0beade70e582.json +%%SEAHUBDIR%%/media/assets/frontend/locales/es/translations.9b11760aa1ed.json %%SEAHUBDIR%%/media/assets/frontend/locales/es/translations.json -%%SEAHUBDIR%%/media/assets/frontend/locales/fr/translations.1d190c37fa3e.json +%%SEAHUBDIR%%/media/assets/frontend/locales/fr/translations.5ebc64c29390.json %%SEAHUBDIR%%/media/assets/frontend/locales/fr/translations.json -%%SEAHUBDIR%%/media/assets/frontend/locales/it/translations.b25cc192c2b6.json +%%SEAHUBDIR%%/media/assets/frontend/locales/it/translations.fca9d52b663d.json %%SEAHUBDIR%%/media/assets/frontend/locales/it/translations.json -%%SEAHUBDIR%%/media/assets/frontend/locales/ru/translations.d6e7c31e1ce0.json +%%SEAHUBDIR%%/media/assets/frontend/locales/ru/translations.9dfedf1a633d.json %%SEAHUBDIR%%/media/assets/frontend/locales/ru/translations.json -%%SEAHUBDIR%%/media/assets/frontend/locales/zh-CN/translations.733fcc3ecff7.json +%%SEAHUBDIR%%/media/assets/frontend/locales/zh-CN/translations.e93bc3927491.json %%SEAHUBDIR%%/media/assets/frontend/locales/zh-CN/translations.json %%SEAHUBDIR%%/media/assets/frontend/media/fa-regular-400.33f727ccde4b.woff2 %%SEAHUBDIR%%/media/assets/frontend/media/fa-regular-400.3929b3ef871f.svg @@ -899,6 +932,16 @@ %%SEAHUBDIR%%/media/assets/frontend/media/fa-solid-900.ttf %%SEAHUBDIR%%/media/assets/frontend/media/fa-solid-900.woff %%SEAHUBDIR%%/media/assets/frontend/media/fa-solid-900.woff2 +%%SEAHUBDIR%%/media/assets/frontend/media/iconfont.6cd761eb7eb2.ttf +%%SEAHUBDIR%%/media/assets/frontend/media/iconfont.730c639f2025.eot +%%SEAHUBDIR%%/media/assets/frontend/media/iconfont.a12ff25b19f7.svg +%%SEAHUBDIR%%/media/assets/frontend/media/iconfont.ab2084ddd494.woff2 +%%SEAHUBDIR%%/media/assets/frontend/media/iconfont.eot +%%SEAHUBDIR%%/media/assets/frontend/media/iconfont.f35cf3584885.woff +%%SEAHUBDIR%%/media/assets/frontend/media/iconfont.svg +%%SEAHUBDIR%%/media/assets/frontend/media/iconfont.ttf +%%SEAHUBDIR%%/media/assets/frontend/media/iconfont.woff +%%SEAHUBDIR%%/media/assets/frontend/media/iconfont.woff2 %%SEAHUBDIR%%/media/assets/scripts/app/collections/activities.77ea3149773c.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/activities.js %%SEAHUBDIR%%/media/assets/scripts/app/collections/deleted-repos.cb357ea8a224.js @@ -1193,67 +1236,67 @@ %%SEAHUBDIR%%/media/assets/scripts/dist/sysadmin-main.js %%SEAHUBDIR%%/media/assets/scripts/file-tree.ef19875b8f54.js %%SEAHUBDIR%%/media/assets/scripts/file-tree.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/ar/djangojs.fb884fc6f821.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/ar/djangojs.5a5b2b009efa.js %%SEAHUBDIR%%/media/assets/scripts/i18n/ar/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/ca/djangojs.02aa4c695837.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/ca/djangojs.940630368110.js %%SEAHUBDIR%%/media/assets/scripts/i18n/ca/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/cs/djangojs.0daa8aa4e580.js %%SEAHUBDIR%%/media/assets/scripts/i18n/cs/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/de/djangojs.04e2bd5fbe54.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/de/djangojs.334ee8d7f9e0.js %%SEAHUBDIR%%/media/assets/scripts/i18n/de/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/el/djangojs.3cd7ab51dc81.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/el/djangojs.cd8be1e5e864.js %%SEAHUBDIR%%/media/assets/scripts/i18n/el/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/en/djangojs.e37eef1ffc63.js %%SEAHUBDIR%%/media/assets/scripts/i18n/en/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/es-ar/djangojs.36afad213e35.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/es-ar/djangojs.ca21287add6c.js %%SEAHUBDIR%%/media/assets/scripts/i18n/es-ar/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/es-mx/djangojs.9f6430328cf8.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/es-mx/djangojs.493803dbf51c.js %%SEAHUBDIR%%/media/assets/scripts/i18n/es-mx/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/es/djangojs.60adf3aba295.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/es/djangojs.be37b860e8d9.js %%SEAHUBDIR%%/media/assets/scripts/i18n/es/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/fi/djangojs.127574a927bd.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/fi/djangojs.86ffee8168a3.js %%SEAHUBDIR%%/media/assets/scripts/i18n/fi/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/fr/djangojs.35dde8c13877.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/fr/djangojs.01244f7e7caa.js %%SEAHUBDIR%%/media/assets/scripts/i18n/fr/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/he/djangojs.6e3c2bdaf018.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/he/djangojs.b0245284cf4d.js %%SEAHUBDIR%%/media/assets/scripts/i18n/he/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/hu/djangojs.104b2f1fd08f.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/hu/djangojs.51e8866bc296.js %%SEAHUBDIR%%/media/assets/scripts/i18n/hu/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/is/djangojs.7712f81d493d.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/is/djangojs.cfbc7c724d94.js %%SEAHUBDIR%%/media/assets/scripts/i18n/is/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/it/djangojs.46de68e4d630.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/it/djangojs.e7ec20ef266b.js %%SEAHUBDIR%%/media/assets/scripts/i18n/it/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/ja/djangojs.21a7c5ccfbac.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/ja/djangojs.59c0e51ec15b.js %%SEAHUBDIR%%/media/assets/scripts/i18n/ja/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/ko/djangojs.2799e4f245b9.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/ko/djangojs.d243a0154ad1.js %%SEAHUBDIR%%/media/assets/scripts/i18n/ko/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/lv/djangojs.046aea11e594.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/lv/djangojs.3d5ef0e703f2.js %%SEAHUBDIR%%/media/assets/scripts/i18n/lv/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/nl/djangojs.08eee3336424.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/nl/djangojs.fb6bf113f27b.js %%SEAHUBDIR%%/media/assets/scripts/i18n/nl/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/pl/djangojs.27ac7dee29e9.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/pl/djangojs.7897ac3d804c.js %%SEAHUBDIR%%/media/assets/scripts/i18n/pl/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/pt-br/djangojs.73e3ba53b675.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/pt-br/djangojs.2781e0ffda6f.js %%SEAHUBDIR%%/media/assets/scripts/i18n/pt-br/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/ru/djangojs.0613521e63ad.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/ru/djangojs.87c2c343d5f0.js %%SEAHUBDIR%%/media/assets/scripts/i18n/ru/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/i18n/sk/djangojs.06183425c030.js %%SEAHUBDIR%%/media/assets/scripts/i18n/sk/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/sl/djangojs.88af047920eb.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/sl/djangojs.171727814862.js %%SEAHUBDIR%%/media/assets/scripts/i18n/sl/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/sv/djangojs.b8168b8fa389.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/sv/djangojs.307e13f004e7.js %%SEAHUBDIR%%/media/assets/scripts/i18n/sv/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/th/djangojs.851166b7ad48.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/th/djangojs.b3ff25158123.js %%SEAHUBDIR%%/media/assets/scripts/i18n/th/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/tr/djangojs.171fb2e6e2df.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/tr/djangojs.a4fda887bf5c.js %%SEAHUBDIR%%/media/assets/scripts/i18n/tr/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/uk/djangojs.82eebdafb06d.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/uk/djangojs.63525523a361.js %%SEAHUBDIR%%/media/assets/scripts/i18n/uk/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/vi/djangojs.f5a36e18a136.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/vi/djangojs.3e1ac2708eaf.js %%SEAHUBDIR%%/media/assets/scripts/i18n/vi/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/zh-cn/djangojs.a913df0b37b0.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/zh-cn/djangojs.079e1622ed62.js %%SEAHUBDIR%%/media/assets/scripts/i18n/zh-cn/djangojs.js -%%SEAHUBDIR%%/media/assets/scripts/i18n/zh-tw/djangojs.aeae35637e8d.js +%%SEAHUBDIR%%/media/assets/scripts/i18n/zh-tw/djangojs.88100829d985.js %%SEAHUBDIR%%/media/assets/scripts/i18n/zh-tw/djangojs.js %%SEAHUBDIR%%/media/assets/scripts/lib/backbone.c1a39c11a835.js %%SEAHUBDIR%%/media/assets/scripts/lib/backbone.js @@ -1478,6 +1521,13 @@ %%SEAHUBDIR%%/media/css/sf_font2/%%USERS%%-font2.svg %%SEAHUBDIR%%/media/css/sf_font2/%%USERS%%-font2.ttf %%SEAHUBDIR%%/media/css/sf_font2/%%USERS%%-font2.woff +%%SEAHUBDIR%%/media/css/sf_font3/iconfont.css +%%SEAHUBDIR%%/media/css/sf_font3/iconfont.eot +%%SEAHUBDIR%%/media/css/sf_font3/iconfont.js +%%SEAHUBDIR%%/media/css/sf_font3/iconfont.svg +%%SEAHUBDIR%%/media/css/sf_font3/iconfont.ttf +%%SEAHUBDIR%%/media/css/sf_font3/iconfont.woff +%%SEAHUBDIR%%/media/css/sf_font3/iconfont.woff2 %%SEAHUBDIR%%/media/css/spreadsheet_convert.css %%SEAHUBDIR%%/media/css/video-js.min.css %%SEAHUBDIR%%/media/fontawesome/css/fontawesome-all.min.css @@ -1647,12 +1697,18 @@ %%SEAHUBDIR%%/media/img/help/sync-a-sub-folder.png %%SEAHUBDIR%%/media/img/help/sync-with-an-existing-01.png %%SEAHUBDIR%%/media/img/help/sync-with-an-existing-02.png +%%SEAHUBDIR%%/media/img/lib/24/lib-cloud-preview-edit.png +%%SEAHUBDIR%%/media/img/lib/24/lib-cloud-preview.png %%SEAHUBDIR%%/media/img/lib/24/lib-encrypted.png %%SEAHUBDIR%%/media/img/lib/24/lib-readonly.png %%SEAHUBDIR%%/media/img/lib/24/lib.png +%%SEAHUBDIR%%/media/img/lib/256/lib-cloud-preview-edit.png +%%SEAHUBDIR%%/media/img/lib/256/lib-cloud-preview.png %%SEAHUBDIR%%/media/img/lib/256/lib-encrypted.png %%SEAHUBDIR%%/media/img/lib/256/lib-readonly.png %%SEAHUBDIR%%/media/img/lib/256/lib.png +%%SEAHUBDIR%%/media/img/lib/48/lib-cloud-preview-edit.png +%%SEAHUBDIR%%/media/img/lib/48/lib-cloud-preview.png %%SEAHUBDIR%%/media/img/lib/48/lib-encrypted.png %%SEAHUBDIR%%/media/img/lib/48/lib-readonly.png %%SEAHUBDIR%%/media/img/lib/48/lib.png @@ -1661,8 +1717,10 @@ %%SEAHUBDIR%%/media/img/loading-icon.gif %%SEAHUBDIR%%/media/img/lock.png %%SEAHUBDIR%%/media/img/login-bg.jpg +%%SEAHUBDIR%%/media/img/member-list-empty-2x.png %%SEAHUBDIR%%/media/img/minus.png %%SEAHUBDIR%%/media/img/nav.png +%%SEAHUBDIR%%/media/img/no-items-tip.png %%SEAHUBDIR%%/media/img/rm.png %%SEAHUBDIR%%/media/img/seacloud_logo.png %%SEAHUBDIR%%/media/img/%%USERS%%-docs-logo.png @@ -1905,9 +1963,11 @@ %%SEAHUBDIR%%/seahub/api2/endpoints/admin/trash_libraries.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/two_factor_auth.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/upload_links.py +%%SEAHUBDIR%%/seahub/api2/endpoints/admin/user_activities.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/users.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/users_batch.py %%SEAHUBDIR%%/seahub/api2/endpoints/admin/utils.py +%%SEAHUBDIR%%/seahub/api2/endpoints/admin/work_weixin.py %%SEAHUBDIR%%/seahub/api2/endpoints/all_groups.py %%SEAHUBDIR%%/seahub/api2/endpoints/be_shared_repo.py %%SEAHUBDIR%%/seahub/api2/endpoints/cancel_zip_task.py @@ -1938,6 +1998,7 @@ %%SEAHUBDIR%%/seahub/api2/endpoints/query_copy_move_progress.py %%SEAHUBDIR%%/seahub/api2/endpoints/query_zip_progress.py %%SEAHUBDIR%%/seahub/api2/endpoints/related_files.py +%%SEAHUBDIR%%/seahub/api2/endpoints/repo_commit_dir.py %%SEAHUBDIR%%/seahub/api2/endpoints/repo_draft_info.py %%SEAHUBDIR%%/seahub/api2/endpoints/repo_file_uploaded_bytes.py %%SEAHUBDIR%%/seahub/api2/endpoints/repo_history.py @@ -2091,6 +2152,7 @@ %%SEAHUBDIR%%/seahub/drafts/migrations/0001_initial.py %%SEAHUBDIR%%/seahub/drafts/migrations/0002_draftreview_author.py %%SEAHUBDIR%%/seahub/drafts/migrations/0003_auto_20190301_0648.py +%%SEAHUBDIR%%/seahub/drafts/migrations/0004_auto_20190610_0628.py %%SEAHUBDIR%%/seahub/drafts/migrations/__init__.py %%SEAHUBDIR%%/seahub/drafts/models.py %%SEAHUBDIR%%/seahub/drafts/signals.py @@ -2366,8 +2428,13 @@ %%SEAHUBDIR%%/seahub/templates/registration/register_complete_email_subject.html %%SEAHUBDIR%%/seahub/templates/registration/registration_complete.html %%SEAHUBDIR%%/seahub/templates/registration/registration_form.html +%%SEAHUBDIR%%/seahub/templates/remote_user/create_unknown_user_false.html +%%SEAHUBDIR%%/seahub/templates/remote_user/error.html +%%SEAHUBDIR%%/seahub/templates/remote_user/not_active.html %%SEAHUBDIR%%/seahub/templates/repo_dir_recycle_view.html +%%SEAHUBDIR%%/seahub/templates/repo_folder_trash_react.html %%SEAHUBDIR%%/seahub/templates/repo_history.html +%%SEAHUBDIR%%/seahub/templates/repo_history_react.html %%SEAHUBDIR%%/seahub/templates/repo_history_view.html %%SEAHUBDIR%%/seahub/templates/rest_framework/api.html %%SEAHUBDIR%%/seahub/templates/rest_framework/base.html @@ -2417,7 +2484,6 @@ %%SEAHUBDIR%%/seahub/templates/sysadmin/snippets/sys_org_info_nav.html %%SEAHUBDIR%%/seahub/templates/sysadmin/snippets/sys_statistic_nav.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sudo_mode.html -%%SEAHUBDIR%%/seahub/templates/sysadmin/sys_file_scan_records_react.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_inst_admin.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_inst_info_admins.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_inst_info_base.html @@ -2450,6 +2516,7 @@ %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_useradmin_paid.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sys_virus_scan_records.html %%SEAHUBDIR%%/seahub/templates/sysadmin/sysadmin_backbone.html +%%SEAHUBDIR%%/seahub/templates/sysadmin/sysadmin_react_app.html %%SEAHUBDIR%%/seahub/templates/sysadmin/user_activation_email.html %%SEAHUBDIR%%/seahub/templates/sysadmin/user_add_email.html %%SEAHUBDIR%%/seahub/templates/sysadmin/user_batch_add_email.html @@ -2627,6 +2694,11 @@ %%SEAHUBDIR%%/seahub/wopi/urls.py %%SEAHUBDIR%%/seahub/wopi/utils.py %%SEAHUBDIR%%/seahub/wopi/views.py +%%SEAHUBDIR%%/seahub/work_weixin/__init__.py +%%SEAHUBDIR%%/seahub/work_weixin/settings.py +%%SEAHUBDIR%%/seahub/work_weixin/urls.py +%%SEAHUBDIR%%/seahub/work_weixin/utils.py +%%SEAHUBDIR%%/seahub/work_weixin/views.py %%SEAHUBDIR%%/seahub/wsgi.py %%SEAHUBDIR%%/send_user_notifications.sh.template %%SEAHUBDIR%%/setenv.sh.template @@ -2939,6 +3011,7 @@ %%SEAHUBDIR%%/tests/api/endpoints/test_invitations.py %%SEAHUBDIR%%/tests/api/endpoints/test_notifications.py %%SEAHUBDIR%%/tests/api/endpoints/test_query_zip_progress.py +%%SEAHUBDIR%%/tests/api/endpoints/test_repo_commit_dir.py %%SEAHUBDIR%%/tests/api/endpoints/test_repo_history.py %%SEAHUBDIR%%/tests/api/endpoints/test_repo_set_password.py %%SEAHUBDIR%%/tests/api/endpoints/test_repo_trash.py From owner-svn-ports-all@freebsd.org Mon Jun 17 05:24:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1405615D3DFE; Mon, 17 Jun 2019 05:24:53 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A323077949; Mon, 17 Jun 2019 05:24:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 75CF821274; Mon, 17 Jun 2019 05:24:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H5OqLl080522; Mon, 17 Jun 2019 05:24:52 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H5Op3n080521; Mon, 17 Jun 2019 05:24:52 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906170524.x5H5Op3n080521@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 17 Jun 2019 05:24:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504388 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 504388 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A323077949 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 05:24:53 -0000 Author: tobik Date: Mon Jun 17 05:24:51 2019 New Revision: 504388 URL: https://svnweb.freebsd.org/changeset/ports/504388 Log: Fix version range of recent ImageMagick6 entry graphics/ImageMagick6 has PORTEPOCH=1 (ImageMagick7 does not) but it is not included in vuln.xml. The recent vulnerabilities are never raised by pkg audit as a result and users are left uninformed about them. Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Mon Jun 17 05:14:44 2019 (r504387) +++ head/security/vuxml/vuln.xml Mon Jun 17 05:24:51 2019 (r504388) @@ -549,11 +549,11 @@ Notes: ImageMagick6 - 6.9.10.47 + 6.9.10.47,1 ImageMagick6-nox11 - 6.9.10.47 + 6.9.10.47,1 @@ -597,7 +597,7 @@ Notes: 2019-03-07 2019-05-30 - 2019-06-04 + 2019-06-17 From owner-svn-ports-all@freebsd.org Mon Jun 17 05:42:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9467315AC4F9; Mon, 17 Jun 2019 05:42:43 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3974A8026E; Mon, 17 Jun 2019 05:42:43 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 135F9215C9; Mon, 17 Jun 2019 05:42:43 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H5gggg090688; Mon, 17 Jun 2019 05:42:42 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H5ggsL090683; Mon, 17 Jun 2019 05:42:42 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201906170542.x5H5ggsL090683@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Mon, 17 Jun 2019 05:42:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504389 - in head/databases: mysql-connector-java mysql-connector-java51 X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: in head/databases: mysql-connector-java mysql-connector-java51 X-SVN-Commit-Revision: 504389 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3974A8026E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 05:42:43 -0000 Author: matthew Date: Mon Jun 17 05:42:42 2019 New Revision: 504389 URL: https://svnweb.freebsd.org/changeset/ports/504389 Log: Hand these ports over to Richard Gallamore Modified: head/databases/mysql-connector-java/Makefile head/databases/mysql-connector-java51/Makefile Modified: head/databases/mysql-connector-java/Makefile ============================================================================== --- head/databases/mysql-connector-java/Makefile Mon Jun 17 05:24:51 2019 (r504388) +++ head/databases/mysql-connector-java/Makefile Mon Jun 17 05:42:42 2019 (r504389) @@ -6,7 +6,7 @@ PORTVERSION= 8.0.16 CATEGORIES= databases java MASTER_SITES= MYSQL/Connector-J -MAINTAINER= matthew@FreeBSD.org +MAINTAINER= ultima@FreeBSD.org COMMENT= MySQL Connector/J: JDBC interface for MySQL LICENSE= GPLv2 Modified: head/databases/mysql-connector-java51/Makefile ============================================================================== --- head/databases/mysql-connector-java51/Makefile Mon Jun 17 05:24:51 2019 (r504388) +++ head/databases/mysql-connector-java51/Makefile Mon Jun 17 05:42:42 2019 (r504389) @@ -7,7 +7,7 @@ CATEGORIES= databases java MASTER_SITES= MYSQL/Connector-J PKGNAMESUFFIX= 51 -MAINTAINER= matthew@FreeBSD.org +MAINTAINER= ultima@FreeBSD.org COMMENT= MySQL Connector/J: JDBC interface for MySQL LICENSE= GPLv2 From owner-svn-ports-all@freebsd.org Mon Jun 17 05:51:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3F5C15AC853; Mon, 17 Jun 2019 05:51:20 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 692C58067F; Mon, 17 Jun 2019 05:51:20 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4315A21724; Mon, 17 Jun 2019 05:51:20 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H5pKqT093522; Mon, 17 Jun 2019 05:51:20 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H5pJmS093516; Mon, 17 Jun 2019 05:51:19 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201906170551.x5H5pJmS093516@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Mon, 17 Jun 2019 05:51:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504390 - in head/net: . knxd knxd/files X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head/net: . knxd knxd/files X-SVN-Commit-Revision: 504390 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 692C58067F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 05:51:21 -0000 Author: mfechner Date: Mon Jun 17 05:51:18 2019 New Revision: 504390 URL: https://svnweb.freebsd.org/changeset/ports/504390 Log: Added new port net/knxd. The port can work as a router and/or gateway for knx based communication. Added: head/net/knxd/ head/net/knxd/Makefile (contents, props changed) head/net/knxd/distinfo (contents, props changed) head/net/knxd/files/ head/net/knxd/files/knxd.in (contents, props changed) head/net/knxd/pkg-descr (contents, props changed) head/net/knxd/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Jun 17 05:42:42 2019 (r504389) +++ head/net/Makefile Mon Jun 17 05:51:18 2019 (r504390) @@ -312,6 +312,7 @@ SUBDIR += kmbox SUBDIR += kmime SUBDIR += knc + SUBDIR += knxd SUBDIR += kontactinterface SUBDIR += kpimtextedit SUBDIR += krdc Added: head/net/knxd/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/knxd/Makefile Mon Jun 17 05:51:18 2019 (r504390) @@ -0,0 +1,32 @@ +# Created by: mfechner@FreeBSD.org +# $FreeBSD$ + +PORTNAME= knxd +PORTVERSION= 0.14.29 +CATEGORIES= net + +MAINTAINER= mfechner@FreeBSD.org +COMMENT= Advanced router/gateway for KNX + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libargp.so:devel/argp-standalone \ + libev.so:devel/libev \ + libfmt.so:devel/libfmt + +USES= autoreconf compiler:c11 gmake libtool pkgconfig +USE_RC_SUBR= knxd +USE_GITHUB= yes +USE_LDCONFIG= yes + +INSTALL_TARGET= install-strip +GH_ACCOUNT= knxd +GH_PROJECT= knxd +GH_TAGNAME= fd4effbd9b3c525dff6b07607e1043fc339b64e2 +GNU_CONFIGURE= yes +CONFIGURE_ARGS?=--disable-systemd --disable-usb \ + CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-I${LOCALBASE}/include -L/${LOCALBASE}/lib" + +.include Added: head/net/knxd/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/knxd/distinfo Mon Jun 17 05:51:18 2019 (r504390) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560685003 +SHA256 (knxd-knxd-0.14.29-fd4effbd9b3c525dff6b07607e1043fc339b64e2_GH0.tar.gz) = 962c88b6cace673156481c0654f3231939b59f68aa2a1ab37aeedcff84afe120 +SIZE (knxd-knxd-0.14.29-fd4effbd9b3c525dff6b07607e1043fc339b64e2_GH0.tar.gz) = 309589 Added: head/net/knxd/files/knxd.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/knxd/files/knxd.in Mon Jun 17 05:51:18 2019 (r504390) @@ -0,0 +1,38 @@ +#!/bin/sh +# $FreeBSD$ + +# PROVIDE: knxd +# REQUIRE: DAEMON +# BEFORE: LOGIN +# KEYWORD: shutdown +# +# Execute the following line to enable knxd: +# +# sysrc knxd_enable="YES": Set to "YES" to enable knxd +# +# sysrc knxd_local_address="15.15.1" Set the bus address of knxd to 0.0.1, make sure this address is free on your KNX bus +# +# sysrc knxd_child_address="15.15.2:8" Give client connecting to knxd this address +# +# sysrc knxd_address="ipt:192.168.0.117" The address of the commercial IP interface knxd should connect to +# +# sysrc knxd_ + +. /etc/rc.subr + +name=knxd +rcvar=knxd_enable + +load_rc_config $name + +: ${knxd_enable:="NO"} +: ${knxd_local_address:="15.15.1"} +: ${knxd_child_address:="15.15.2:8"} +: ${knxd_address:="ipt:192.168.0.117"} +: ${knxd_flags="-d -e ${knxd_local_address} -E ${knxd_child_address} -D -T -S -b ${knxd_address} -u /var/run/knxd"} + +command="%%PREFIX%%/bin/knxd" +#command_args="" +#stop_postcmd="rm -f $pidfile" + +run_rc_command "$1" Added: head/net/knxd/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/knxd/pkg-descr Mon Jun 17 05:51:18 2019 (r504390) @@ -0,0 +1,5 @@ +KNX is a very common building automation protocol which runs on dedicated +9600-baud wire as well as IP multicast. knxd is an advanced router/gateway +which runs on any Linux computer; it can talk to all known KNX interfaces. + +WWW: https://github.com/knxd/knxd Added: head/net/knxd/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/knxd/pkg-plist Mon Jun 17 05:51:18 2019 (r504390) @@ -0,0 +1,72 @@ +bin/knxd +bin/knxtool +include/eibclient.h +include/eibloadresult.h +include/eibtypes.h +lib/libeibclient.a +lib/libeibclient.so +lib/libeibclient.so.0 +lib/libeibclient.so.0.0.0 +libexec/knxd/busmonitor1 +libexec/knxd/busmonitor2 +libexec/knxd/busmonitor3 +libexec/knxd/eibread-cgi +libexec/knxd/eibwrite-cgi +libexec/knxd/groupcacheclear +libexec/knxd/groupcachedisable +libexec/knxd/groupcacheenable +libexec/knxd/groupcachelastupdates +libexec/knxd/groupcacheread +libexec/knxd/groupcachereadsync +libexec/knxd/groupcacheremove +libexec/knxd/grouplisten +libexec/knxd/groupread +libexec/knxd/groupreadresponse +libexec/knxd/groupresponse +libexec/knxd/groupsocketlisten +libexec/knxd/groupsocketread +libexec/knxd/groupsocketswrite +libexec/knxd/groupsocketwrite +libexec/knxd/groupsresponse +libexec/knxd/groupswrite +libexec/knxd/groupwrite +libexec/knxd/madcread +libexec/knxd/maskver +libexec/knxd/mmaskver +libexec/knxd/mpeitype +libexec/knxd/mprogmodeoff +libexec/knxd/mprogmodeon +libexec/knxd/mprogmodestatus +libexec/knxd/mprogmodetoggle +libexec/knxd/mpropdesc +libexec/knxd/mpropread +libexec/knxd/mpropscan +libexec/knxd/mpropscanpoll +libexec/knxd/mpropwrite +libexec/knxd/mread +libexec/knxd/mrestart +libexec/knxd/msetkey +libexec/knxd/mwrite +libexec/knxd/mwriteplain +libexec/knxd/progmodeoff +libexec/knxd/progmodeon +libexec/knxd/progmodestatus +libexec/knxd/progmodetoggle +libexec/knxd/readindividual +libexec/knxd/vbusmonitor1 +libexec/knxd/vbusmonitor1poll +libexec/knxd/vbusmonitor1time +libexec/knxd/vbusmonitor2 +libexec/knxd/vbusmonitor3 +libexec/knxd/writeaddress +libexec/knxd/xpropread +libexec/knxd/xpropwrite +libexec/knxd_args +%%DATADIR%%/EIBConnection.cs +%%DATADIR%%/EIBConnection.go +%%DATADIR%%/EIBConnection.lua +%%DATADIR%%/EIBConnection.pm +%%DATADIR%%/EIBConnection.py +%%DATADIR%%/EIBConnection.rb +%%DATADIR%%/EIBD.pas +%%DATADIR%%/eibclient.php From owner-svn-ports-all@freebsd.org Mon Jun 17 05:51:32 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3C62915AC87C; Mon, 17 Jun 2019 05:51:32 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2967680730; Mon, 17 Jun 2019 05:51:30 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7B7492172B; Mon, 17 Jun 2019 05:51:26 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H5pQDq093727; Mon, 17 Jun 2019 05:51:26 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H5pPrA093718; Mon, 17 Jun 2019 05:51:25 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906170551.x5H5pPrA093718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Mon, 17 Jun 2019 05:51:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504391 - in head: . security security/py-bro-pkg security/py-zkg X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head: . security security/py-bro-pkg security/py-zkg X-SVN-Commit-Revision: 504391 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2967680730 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 05:51:32 -0000 Author: kai Date: Mon Jun 17 05:51:24 2019 New Revision: 504391 URL: https://svnweb.freebsd.org/changeset/ports/504391 Log: security/py-bro-pkg: Rename to security/py-zkg and update to 2.0.0 The project name of upstream has changed from "Bro" to "Zeek". This also affects the repositories and offered packages. * Rename the port to security/py-zkg * Adapt the text references in COMMENT and pkg-{descr,message} accordingly. * Update to 2.0.0 Changelog: https://github.com/zeek/package-manager/blob/v2.0.0/CHANGES PR: 237634 Submitted by: Shirkdog (maintainer) Reviewed by: koobs Added: head/security/py-zkg/ - copied from r504390, head/security/py-bro-pkg/ Deleted: head/security/py-bro-pkg/ Modified: head/MOVED head/security/Makefile head/security/py-zkg/Makefile head/security/py-zkg/distinfo head/security/py-zkg/pkg-descr head/security/py-zkg/pkg-message Modified: head/MOVED ============================================================================== --- head/MOVED Mon Jun 17 05:51:18 2019 (r504390) +++ head/MOVED Mon Jun 17 05:51:24 2019 (r504391) @@ -12803,3 +12803,4 @@ databases/postgis21|databases/postgis23|2019-06-16|Has databases/postgis20|databases/postgis23|2019-06-16|Has expired: Upstream no longer maintained databases/postgis22|databases/postgis23|2019-06-16|Has expired: Upstream no longer maintained games/freeciv-sounds||2019-06-16|Unused and already part of games/freeciv +security/py-bro-pkg|security/py-zkg|2019-06-17|Renamed to match upstream changes Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Jun 17 05:51:18 2019 (r504390) +++ head/security/Makefile Mon Jun 17 05:51:24 2019 (r504391) @@ -860,7 +860,6 @@ SUBDIR += py-backports.ssl_match_hostname SUBDIR += py-bcrypt SUBDIR += py-borg.localrole - SUBDIR += py-bro-pkg SUBDIR += py-btchip-python SUBDIR += py-cerealizer SUBDIR += py-certbot @@ -1018,6 +1017,7 @@ SUBDIR += py-xmlsec SUBDIR += py-yara SUBDIR += py-yubikey-manager + SUBDIR += py-zkg SUBDIR += py-zope.app.authentication SUBDIR += py-zope.app.localpermission SUBDIR += py-zope.app.principalannotation Modified: head/security/py-zkg/Makefile ============================================================================== --- head/security/py-bro-pkg/Makefile Mon Jun 17 05:51:18 2019 (r504390) +++ head/security/py-zkg/Makefile Mon Jun 17 05:51:24 2019 (r504391) @@ -1,14 +1,13 @@ # $FreeBSD$ -PORTNAME= bro-pkg +PORTNAME= zkg DISTVERSIONPREFIX= v -DISTVERSION= 1.4.2 -PORTREVISION= 1 +DISTVERSION= 2.0.0 CATEGORIES= security python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= mshirk@daemon-security.com -COMMENT= Bro NSM package manager +COMMENT= Zeek NSM package manager LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING @@ -16,13 +15,14 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}GitPython>=2.1.8:devel/py-gitpython@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}btest>=0:devel/py-btest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}configparser>=0:devel/py-configparser@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}semantic_version>=0:devel/py-semantic_version@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}semantic_version>=0:devel/py-semantic_version@${PY_FLAVOR} \ + git:devel/git USES= python USE_PYTHON= distutils autoplist concurrent USE_GITHUB= yes -GH_ACCOUNT= bro +GH_ACCOUNT= zeek GH_PROJECT= package-manager NO_ARCH= yes Modified: head/security/py-zkg/distinfo ============================================================================== --- head/security/py-bro-pkg/distinfo Mon Jun 17 05:51:18 2019 (r504390) +++ head/security/py-zkg/distinfo Mon Jun 17 05:51:24 2019 (r504391) @@ -1,3 +1,3 @@ -TIMESTAMP = 1538253976 -SHA256 (bro-package-manager-v1.4.2_GH0.tar.gz) = 25e9ed42066cece276023dbbde65eff02fd7e879127883b02a4ae3a6350b0d1d -SIZE (bro-package-manager-v1.4.2_GH0.tar.gz) = 87843 +TIMESTAMP = 1560496581 +SHA256 (zeek-package-manager-v2.0.0_GH0.tar.gz) = 1f2e348b57c2fbbcb519450bc431f81cf8f1fde794a0d176b2e19da8b31f26d8 +SIZE (zeek-package-manager-v2.0.0_GH0.tar.gz) = 95526 Modified: head/security/py-zkg/pkg-descr ============================================================================== --- head/security/py-bro-pkg/pkg-descr Mon Jun 17 05:51:18 2019 (r504390) +++ head/security/py-zkg/pkg-descr Mon Jun 17 05:51:24 2019 (r504391) @@ -1,18 +1,19 @@ -The Bro Package Manager makes it easy for Bro users to install -and manage third party scripts as well as plugins for Bro and -BroControl. The command-line tool is preconfigured scripts as -well as plugins for Bro and BroControl. The command-line tool -is preconfigured to download packages from the Bro package source, -a GitHub repository that has been setup such that any developer -can request their Bro package be included. See the README file -of that repository for information regarding the package submission -process. NOTE: It's left up to users to decide for themselves -via code review, GitHub comments/stars, or other metrics whether -any given package is trustworthy as there is no implied guarantees -that it's secure just because it's been accepted into the default -package source. See the package manager documentation for further -usage information, how-to guides, and walkthroughs. For offline -reading, it's also available in the doc/ directory of the -source code distribution. +The Zeek Package Manager makes it easy for Zeek users to install and manage +third party scripts as well as plugins for Zeek and ZeekControl. -WWW: https://github.com/bro/package-manager/ +The command-line tool is preconfigured to download packages from the Zeek +package source, a GitHub repository that has been setup such that any developer +can request their Zeek package be included. + +See the README file of that repository for information regarding the package +submission process. + +NOTE: + +It's left up to users to decide for themselves via code review, GitHub +comments/stars, or other metrics whether any given package is trustworthy as +there is no implied guarantees that it's secure just because it's been accepted +into the default package source. See the package manager documentation for +further usage information, how-to guides, and walkthroughs. + +WWW: https://github.com/zeek/package-manager Modified: head/security/py-zkg/pkg-message ============================================================================== --- head/security/py-bro-pkg/pkg-message Mon Jun 17 05:51:18 2019 (r504390) +++ head/security/py-zkg/pkg-message Mon Jun 17 05:51:24 2019 (r504391) @@ -1,7 +1,13 @@ ====================================================================== -Run the following to configure bro-pkg: +Run the following to configure zkg: -bro-pkg autoconfig +zkg autoconfig + +NOTE: + +The previous command "bro-pkg" can also be used intermittently for a +while but its usage is deprecated and may be removed in a future +release. ====================================================================== From owner-svn-ports-all@freebsd.org Mon Jun 17 06:36:21 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E6B515AD6BE; Mon, 17 Jun 2019 06:36:21 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B904F8176E; Mon, 17 Jun 2019 06:36:20 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 87E7621E44; Mon, 17 Jun 2019 06:36:20 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H6aK5f018043; Mon, 17 Jun 2019 06:36:20 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H6aKCq018041; Mon, 17 Jun 2019 06:36:20 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906170636.x5H6aKCq018041@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Mon, 17 Jun 2019 06:36:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504392 - head/devel/pecl-event X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/pecl-event X-SVN-Commit-Revision: 504392 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B904F8176E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 06:36:21 -0000 Author: joneum Date: Mon Jun 17 06:36:19 2019 New Revision: 504392 URL: https://svnweb.freebsd.org/changeset/ports/504392 Log: Update to 2.5.2 Changelog: - Fixed build warnings with PHP 7.3 - Fixed the value of EINPROGRESS constant in WIN32 Sponsored by: Netzkommune GmbH Modified: head/devel/pecl-event/Makefile head/devel/pecl-event/distinfo Modified: head/devel/pecl-event/Makefile ============================================================================== --- head/devel/pecl-event/Makefile Mon Jun 17 05:51:24 2019 (r504391) +++ head/devel/pecl-event/Makefile Mon Jun 17 06:36:19 2019 (r504392) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= event -PORTVERSION= 2.5.0 +PORTVERSION= 2.5.2 CATEGORIES= devel MAINTAINER= joneum@FreeBSD.org Modified: head/devel/pecl-event/distinfo ============================================================================== --- head/devel/pecl-event/distinfo Mon Jun 17 05:51:24 2019 (r504391) +++ head/devel/pecl-event/distinfo Mon Jun 17 06:36:19 2019 (r504392) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557749928 -SHA256 (PECL/event-2.5.0.tgz) = 1bf4cd70729832ce55755314050830a958e7e53559c9c0e9f9041d4d14edebc5 -SIZE (PECL/event-2.5.0.tgz) = 140534 +TIMESTAMP = 1560752998 +SHA256 (PECL/event-2.5.2.tgz) = 8edd69354177351a910b2855f112e2914a83e56cc2e2cb5ed03f33e73d5f3f2d +SIZE (PECL/event-2.5.2.tgz) = 140689 From owner-svn-ports-all@freebsd.org Mon Jun 17 06:39:41 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C386B15AD7D9; Mon, 17 Jun 2019 06:39:40 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 66702818F6; Mon, 17 Jun 2019 06:39:40 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 498ED21E46; Mon, 17 Jun 2019 06:39:40 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H6deTD018648; Mon, 17 Jun 2019 06:39:40 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H6dd4k018645; Mon, 17 Jun 2019 06:39:39 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906170639.x5H6dd4k018645@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 17 Jun 2019 06:39:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504393 - in head/x11/alacritty: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/x11/alacritty: . files X-SVN-Commit-Revision: 504393 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 66702818F6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.975,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 06:39:41 -0000 Author: tobik Date: Mon Jun 17 06:39:39 2019 New Revision: 504393 URL: https://svnweb.freebsd.org/changeset/ports/504393 Log: x11/alacritty: Update to 0.3.3 While here - Revert some commits in the winit crate to workaround freezes on X11 when there are no X input events - Pet portclippy Changes: https://github.com/jwilm/alacritty/releases/tag/v0.3.3 Added: head/x11/alacritty/files/ head/x11/alacritty/files/patch-cargo-crates_winit-0.19.1_src_platform_linux_x11_mod.rs (contents, props changed) head/x11/alacritty/files/patch-cargo-crates_winit-0.19.1_src_platform_linux_x11_xdisplay.rs (contents, props changed) Modified: head/x11/alacritty/Makefile head/x11/alacritty/distinfo Modified: head/x11/alacritty/Makefile ============================================================================== --- head/x11/alacritty/Makefile Mon Jun 17 06:36:19 2019 (r504392) +++ head/x11/alacritty/Makefile Mon Jun 17 06:39:39 2019 (r504393) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= alacritty -PORTVERSION= 0.3.2 DISTVERSIONPREFIX= v -PORTREVISION= 2 +DISTVERSION= 0.3.3 CATEGORIES= x11 MAINTAINER= tobik@FreeBSD.org @@ -15,25 +14,12 @@ LICENSE_FILE= ${WRKSRC}/LICENSE-APACHE LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 -USES= cargo ssl - +USES= cargo python:3.6+,build ssl:build USE_GITHUB= yes GH_ACCOUNT= jwilm +USE_XORG= xcb -OPTIONS_DEFINE= EXAMPLES - -PLIST_FILES= bin/alacritty \ - etc/bash_completion.d/alacritty.bash \ - man/man1/alacritty.1.gz \ - share/fish/completions/alacritty.fish \ - share/pixmaps/Alacritty.svg \ - share/zsh/site-functions/_alacritty \ - ${DESKTOPDIR:S,^${PREFIX}/,,}/alacritty.desktop - -PORTEXAMPLES= alacritty.yml - -CARGO_CRATES= MacTypes-sys-2.1.0 \ - adler32-1.0.3 \ +CARGO_CRATES= adler32-1.0.3 \ aho-corasick-0.6.10 \ aho-corasick-0.7.3 \ andrew-0.2.1 \ @@ -44,92 +30,76 @@ CARGO_CRATES= MacTypes-sys-2.1.0 \ argon2rs-0.2.5 \ arrayvec-0.4.10 \ atty-0.2.11 \ - autocfg-0.1.2 \ - backtrace-0.3.15 \ + autocfg-0.1.4 \ + backtrace-0.3.30 \ backtrace-sys-0.1.28 \ base64-0.10.1 \ bindgen-0.33.2 \ - bitflags-0.7.0 \ - bitflags-1.0.4 \ + bitflags-1.1.0 \ blake2-rfc-0.2.18 \ block-0.1.6 \ - build_const-0.2.1 \ - byteorder-1.3.1 \ - bytes-0.4.12 \ + byteorder-1.3.2 \ bzip2-0.3.3 \ bzip2-sys-0.1.7 \ - cc-1.0.35 \ + cc-1.0.37 \ cexpr-0.2.3 \ - cfg-if-0.1.7 \ + cfg-if-0.1.9 \ cgl-0.2.3 \ clang-sys-0.22.0 \ clap-2.33.0 \ - clipboard-0.5.0 \ - clipboard-win-2.1.2 \ + clipboard-win-2.2.0 \ cloudabi-0.0.3 \ - cmake-0.1.38 \ + cmake-0.1.40 \ cocoa-0.18.4 \ color_quant-1.0.1 \ constant_time_eq-0.1.3 \ - cookie-0.11.0 \ - cookie_store-0.5.1 \ - core-foundation-0.5.1 \ core-foundation-0.6.4 \ - core-foundation-sys-0.5.1 \ core-foundation-sys-0.6.2 \ - core-graphics-0.14.0 \ core-graphics-0.17.3 \ - core-text-10.0.0 \ core-text-13.2.0 \ - crc-1.8.1 \ crc32fast-1.2.0 \ crossbeam-channel-0.3.8 \ - crossbeam-deque-0.2.0 \ - crossbeam-deque-0.7.1 \ - crossbeam-epoch-0.3.1 \ + crossbeam-deque-0.6.3 \ crossbeam-epoch-0.7.1 \ crossbeam-queue-0.1.2 \ - crossbeam-utils-0.2.2 \ crossbeam-utils-0.6.5 \ deflate-0.7.19 \ derivative-1.0.2 \ dirs-1.0.5 \ dlib-0.4.1 \ downcast-rs-1.0.4 \ - dtoa-0.4.3 \ + dtoa-0.4.4 \ dunce-1.0.0 \ + dwrote-0.9.0 \ either-1.5.2 \ embed-resource-1.2.0 \ - encoding_rs-0.8.17 \ env_logger-0.5.13 \ env_logger-0.6.1 \ errno-0.2.4 \ errno-dragonfly-0.1.1 \ - error-chain-0.12.0 \ - euclid-0.19.8 \ + euclid-0.19.9 \ euclid_macros-0.1.0 \ expat-sys-2.1.6 \ failure-0.1.5 \ failure_derive-0.1.5 \ - filetime-0.2.4 \ - flate2-1.0.7 \ + filetime-0.2.5 \ fnv-1.0.6 \ - font-loader-0.8.0 \ foreign-types-0.3.2 \ + foreign-types-0.4.0 \ + foreign-types-macros-0.1.0 \ foreign-types-shared-0.1.1 \ + foreign-types-shared-0.2.0 \ freetype-rs-0.19.1 \ freetype-sys-0.7.1 \ - fsevent-0.2.17 \ - fsevent-sys-0.1.6 \ + fsevent-0.4.0 \ + fsevent-sys-2.0.1 \ fuchsia-cprng-0.1.1 \ fuchsia-zircon-0.3.3 \ fuchsia-zircon-sys-0.3.3 \ - futures-0.1.26 \ - futures-cpupool-0.1.8 \ gcc-0.3.55 \ - gif-0.10.1 \ + gif-0.10.2 \ gl_generator-0.11.0 \ - gleam-0.6.16 \ + gleam-0.6.17 \ glob-0.2.11 \ glutin-0.21.0 \ glutin_egl_sys-0.1.3 \ @@ -137,28 +107,23 @@ CARGO_CRATES= MacTypes-sys-2.1.0 \ glutin_gles2_sys-0.1.3 \ glutin_glx_sys-0.1.5 \ glutin_wgl_sys-0.1.3 \ - h2-0.1.18 \ - http-0.1.17 \ - httparse-1.3.3 \ + http_req-0.5.0 \ humantime-1.2.0 \ - hyper-0.12.27 \ - hyper-tls-0.3.2 \ idna-0.1.5 \ - image-0.21.1 \ - indexmap-1.0.2 \ + image-0.21.2 \ inflate-0.4.5 \ inotify-0.6.1 \ inotify-sys-0.1.3 \ iovec-0.1.2 \ - itoa-0.4.3 \ + itoa-0.4.4 \ jpeg-decoder-0.1.15 \ kernel32-sys-0.2.2 \ khronos_api-3.1.0 \ lazy_static-1.3.0 \ lazycell-1.2.1 \ - libc-0.2.51 \ - libflate-0.1.22 \ - libloading-0.5.0 \ + libc-0.2.58 \ + libflate-0.1.23 \ + libloading-0.5.1 \ libz-sys-1.0.25 \ line_drawing-0.7.0 \ linked-hash-map-0.5.2 \ @@ -171,11 +136,7 @@ CARGO_CRATES= MacTypes-sys-2.1.0 \ memchr-2.2.0 \ memmap-0.7.0 \ memoffset-0.2.1 \ - mime-0.3.13 \ - mime_guess-2.0.0-alpha.6 \ - miniz_oxide-0.2.1 \ - miniz_oxide_c_api-0.2.1 \ - mio-0.6.16 \ + mio-0.6.19 \ mio-anonymous-pipes-0.1.0 \ mio-extras-2.0.5 \ mio-named-pipes-0.1.6 \ @@ -183,26 +144,26 @@ CARGO_CRATES= MacTypes-sys-2.1.0 \ miow-0.2.1 \ miow-0.3.3 \ named_pipe-0.3.0 \ - native-tls-0.2.2 \ + native-tls-0.2.3 \ net2-0.2.33 \ - nix-0.13.0 \ + nix-0.14.1 \ nodrop-0.1.13 \ nom-3.2.1 \ nom-4.2.3 \ - notify-4.0.10 \ - num-derive-0.2.4 \ - num-integer-0.1.39 \ - num-iter-0.1.37 \ - num-rational-0.2.1 \ - num-traits-0.2.6 \ - num_cpus-1.10.0 \ + notify-4.0.12 \ + num-derive-0.2.5 \ + num-integer-0.1.41 \ + num-iter-0.1.39 \ + num-rational-0.2.2 \ + num-traits-0.2.8 \ + num_cpus-1.10.1 \ numtoa-0.1.0 \ objc-0.2.6 \ objc-foundation-0.1.1 \ objc_id-0.1.1 \ - openssl-0.10.20 \ + openssl-0.10.23 \ openssl-probe-0.1.2 \ - openssl-sys-0.9.43 \ + openssl-sys-0.9.47 \ ordered-float-1.0.2 \ osmesa-sys-0.1.2 \ owning_ref-0.4.0 \ @@ -215,10 +176,9 @@ CARGO_CRATES= MacTypes-sys-2.1.0 \ phf_generator-0.7.24 \ phf_shared-0.7.24 \ pkg-config-0.3.14 \ - png-0.14.0 \ + png-0.14.1 \ podio-0.1.6 \ - proc-macro2-0.4.27 \ - publicsuffix-1.5.2 \ + proc-macro2-0.4.30 \ quick-error-1.2.2 \ quote-0.3.15 \ quote-0.6.12 \ @@ -228,87 +188,74 @@ CARGO_CRATES= MacTypes-sys-2.1.0 \ rand_core-0.4.0 \ rand_hc-0.1.0 \ rand_isaac-0.1.1 \ - rand_jitter-0.1.3 \ + rand_jitter-0.1.4 \ rand_os-0.1.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ - rayon-1.0.3 \ - rayon-core-1.4.1 \ + rayon-1.1.0 \ + rayon-core-1.5.0 \ rdrand-0.4.0 \ redox_syscall-0.1.54 \ redox_termios-0.1.1 \ redox_users-0.3.0 \ regex-0.2.11 \ - regex-1.1.6 \ + regex-1.1.7 \ regex-syntax-0.5.6 \ - regex-syntax-0.6.6 \ - remove_dir_all-0.5.1 \ - reqwest-0.9.15 \ - rustc-demangle-0.1.14 \ + regex-syntax-0.6.7 \ + remove_dir_all-0.5.2 \ + rustc-demangle-0.1.15 \ + rustc_tools_util-0.2.0 \ rustc_version-0.2.3 \ - rusttype-0.7.6 \ - ryu-0.2.7 \ + rusttype-0.7.7 \ + ryu-0.2.8 \ same-file-1.0.4 \ schannel-0.1.15 \ scoped_threadpool-0.1.9 \ scopeguard-0.3.3 \ - security-framework-0.2.2 \ - security-framework-sys-0.2.3 \ + security-framework-0.3.1 \ + security-framework-sys-0.3.1 \ semver-0.9.0 \ semver-parser-0.7.0 \ - serde-1.0.90 \ - serde_derive-1.0.90 \ + serde-1.0.92 \ + serde_derive-1.0.92 \ serde_json-1.0.39 \ - serde_urlencoded-0.5.5 \ - serde_yaml-0.8.8 \ + serde_yaml-0.8.9 \ servo-fontconfig-0.4.0 \ servo-fontconfig-sys-4.0.7 \ shared_library-0.1.9 \ - signal-hook-0.1.8 \ + signal-hook-0.1.9 \ + signal-hook-registry-1.0.1 \ siphasher-0.2.3 \ slab-0.4.2 \ - smallvec-0.6.9 \ - smithay-client-toolkit-0.4.5 \ - socket2-0.3.8 \ + smallvec-0.6.10 \ + smithay-client-toolkit-0.4.6 \ + smithay-client-toolkit-0.6.2 \ + smithay-clipboard-0.3.3 \ + socket2-0.3.9 \ spsc-buffer-0.1.1 \ stable_deref_trait-1.1.1 \ - static_assertions-0.3.1 \ + static_assertions-0.3.3 \ stb_truetype-0.2.6 \ - string-0.1.3 \ strsim-0.8.0 \ - syn-0.15.32 \ - synstructure-0.10.1 \ - tempfile-3.0.7 \ - termcolor-1.0.4 \ + syn-0.15.36 \ + synstructure-0.10.2 \ + tempfile-3.0.8 \ + termcolor-1.0.5 \ terminfo-0.6.1 \ - termion-1.5.2 \ + termion-1.5.3 \ textwrap-0.11.0 \ thread_local-0.3.6 \ tiff-0.2.2 \ time-0.1.42 \ - tokio-0.1.18 \ - tokio-current-thread-0.1.6 \ - tokio-executor-0.1.7 \ - tokio-io-0.1.12 \ - tokio-reactor-0.1.9 \ - tokio-sync-0.1.4 \ - tokio-tcp-0.1.3 \ - tokio-threadpool-0.1.13 \ - tokio-timer-0.2.10 \ - tokio-trace-core-0.1.0 \ - try-lock-0.2.2 \ - try_from-0.3.2 \ ucd-util-0.1.3 \ - unicase-1.4.2 \ - unicase-2.3.0 \ + unicase-2.4.0 \ unicode-bidi-0.3.4 \ unicode-normalization-0.1.8 \ unicode-width-0.1.5 \ unicode-xid-0.1.0 \ url-1.7.2 \ - utf8-ranges-1.0.2 \ + utf8-ranges-1.0.3 \ utf8parse-0.1.1 \ - uuid-0.7.4 \ vcpkg-0.2.6 \ vec_map-0.8.1 \ version_check-0.1.5 \ @@ -316,13 +263,17 @@ CARGO_CRATES= MacTypes-sys-2.1.0 \ vswhom-0.1.0 \ vswhom-sys-0.1.0 \ vte-0.3.3 \ - walkdir-2.2.7 \ - want-0.0.6 \ - wayland-client-0.21.12 \ - wayland-commons-0.21.12 \ - wayland-protocols-0.21.12 \ - wayland-scanner-0.21.12 \ - wayland-sys-0.21.12 \ + walkdir-2.2.8 \ + wayland-client-0.21.13 \ + wayland-client-0.23.5 \ + wayland-commons-0.21.13 \ + wayland-commons-0.23.5 \ + wayland-protocols-0.21.13 \ + wayland-protocols-0.23.5 \ + wayland-scanner-0.21.13 \ + wayland-scanner-0.23.5 \ + wayland-sys-0.21.13 \ + wayland-sys-0.23.5 \ which-1.0.5 \ widestring-0.4.0 \ winapi-0.2.8 \ @@ -336,13 +287,29 @@ CARGO_CRATES= MacTypes-sys-2.1.0 \ winpty-sys-0.4.3 \ winreg-0.5.1 \ ws2_32-sys-0.2.1 \ - x11-clipboard-0.3.1 \ + x11-clipboard-0.3.2 \ x11-dl-2.18.3 \ xcb-0.8.2 \ xdg-2.2.0 \ xml-rs-0.8.0 \ yaml-rust-0.4.3 \ zip-0.5.2 + +CARGO_INSTALL_PATH= alacritty + +# For xcb crate +BINARY_ALIAS= python3=${PYTHON_CMD} + +PLIST_FILES= bin/alacritty \ + etc/bash_completion.d/alacritty.bash \ + man/man1/alacritty.1.gz \ + share/fish/completions/alacritty.fish \ + share/pixmaps/Alacritty.svg \ + share/zsh/site-functions/_alacritty \ + ${DESKTOPDIR:S,^${PREFIX}/,,}/alacritty.desktop +PORTEXAMPLES= alacritty.yml + +OPTIONS_DEFINE= EXAMPLES post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/alacritty Modified: head/x11/alacritty/distinfo ============================================================================== --- head/x11/alacritty/distinfo Mon Jun 17 06:36:19 2019 (r504392) +++ head/x11/alacritty/distinfo Mon Jun 17 06:39:39 2019 (r504393) @@ -1,6 +1,4 @@ -TIMESTAMP = 1555997281 -SHA256 (rust/crates/MacTypes-sys-2.1.0.tar.gz) = eaf9f0d0b1cc33a4d2aee14fb4b2eac03462ef4db29c8ac4057327d8a71ad86f -SIZE (rust/crates/MacTypes-sys-2.1.0.tar.gz) = 9274 +TIMESTAMP = 1560727506 SHA256 (rust/crates/adler32-1.0.3.tar.gz) = 7e522997b529f05601e05166c07ed17789691f562762c7f3b987263d2dedee5c SIZE (rust/crates/adler32-1.0.3.tar.gz) = 5734 SHA256 (rust/crates/aho-corasick-0.6.10.tar.gz) = 81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5 @@ -23,98 +21,70 @@ SHA256 (rust/crates/arrayvec-0.4.10.tar.gz) = 92c7fb76 SIZE (rust/crates/arrayvec-0.4.10.tar.gz) = 26133 SHA256 (rust/crates/atty-0.2.11.tar.gz) = 9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652 SIZE (rust/crates/atty-0.2.11.tar.gz) = 5916 -SHA256 (rust/crates/autocfg-0.1.2.tar.gz) = a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799 -SIZE (rust/crates/autocfg-0.1.2.tar.gz) = 10444 -SHA256 (rust/crates/backtrace-0.3.15.tar.gz) = f106c02a3604afcdc0df5d36cc47b44b55917dbaf3d808f71c163a0ddba64637 -SIZE (rust/crates/backtrace-0.3.15.tar.gz) = 33807 +SHA256 (rust/crates/autocfg-0.1.4.tar.gz) = 0e49efa51329a5fd37e7c79db4621af617cd4e3e5bc224939808d076077077bf +SIZE (rust/crates/autocfg-0.1.4.tar.gz) = 10937 +SHA256 (rust/crates/backtrace-0.3.30.tar.gz) = ada4c783bb7e7443c14e0480f429ae2cc99da95065aeab7ee1b81ada0419404f +SIZE (rust/crates/backtrace-0.3.30.tar.gz) = 49787 SHA256 (rust/crates/backtrace-sys-0.1.28.tar.gz) = 797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6 SIZE (rust/crates/backtrace-sys-0.1.28.tar.gz) = 522603 SHA256 (rust/crates/base64-0.10.1.tar.gz) = 0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e SIZE (rust/crates/base64-0.10.1.tar.gz) = 41988 SHA256 (rust/crates/bindgen-0.33.2.tar.gz) = 603ed8d8392ace9581e834e26bd09799bf1e989a79bd1aedbb893e72962bdc6e SIZE (rust/crates/bindgen-0.33.2.tar.gz) = 172844 -SHA256 (rust/crates/bitflags-0.7.0.tar.gz) = aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d -SIZE (rust/crates/bitflags-0.7.0.tar.gz) = 10851 -SHA256 (rust/crates/bitflags-1.0.4.tar.gz) = 228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12 -SIZE (rust/crates/bitflags-1.0.4.tar.gz) = 15282 +SHA256 (rust/crates/bitflags-1.1.0.tar.gz) = 3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd +SIZE (rust/crates/bitflags-1.1.0.tar.gz) = 16322 SHA256 (rust/crates/blake2-rfc-0.2.18.tar.gz) = 5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400 SIZE (rust/crates/blake2-rfc-0.2.18.tar.gz) = 15676 SHA256 (rust/crates/block-0.1.6.tar.gz) = 0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a SIZE (rust/crates/block-0.1.6.tar.gz) = 4077 -SHA256 (rust/crates/build_const-0.2.1.tar.gz) = 39092a32794787acd8525ee150305ff051b0aa6cc2abaf193924f5ab05425f39 -SIZE (rust/crates/build_const-0.2.1.tar.gz) = 4499 -SHA256 (rust/crates/byteorder-1.3.1.tar.gz) = a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb -SIZE (rust/crates/byteorder-1.3.1.tar.gz) = 20959 -SHA256 (rust/crates/bytes-0.4.12.tar.gz) = 206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c -SIZE (rust/crates/bytes-0.4.12.tar.gz) = 46361 +SHA256 (rust/crates/byteorder-1.3.2.tar.gz) = a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5 +SIZE (rust/crates/byteorder-1.3.2.tar.gz) = 21596 SHA256 (rust/crates/bzip2-0.3.3.tar.gz) = 42b7c3cbf0fa9c1b82308d57191728ca0256cb821220f4e2fd410a72ade26e3b SIZE (rust/crates/bzip2-0.3.3.tar.gz) = 15346 SHA256 (rust/crates/bzip2-sys-0.1.7.tar.gz) = 6584aa36f5ad4c9247f5323b0a42f37802b37a836f0ad87084d7a33961abe25f SIZE (rust/crates/bzip2-sys-0.1.7.tar.gz) = 609563 -SHA256 (rust/crates/cc-1.0.35.tar.gz) = 5e5f3fee5eeb60324c2781f1e41286bdee933850fff9b3c672587fed5ec58c83 -SIZE (rust/crates/cc-1.0.35.tar.gz) = 44369 +SHA256 (rust/crates/cc-1.0.37.tar.gz) = 39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d +SIZE (rust/crates/cc-1.0.37.tar.gz) = 44499 SHA256 (rust/crates/cexpr-0.2.3.tar.gz) = 42aac45e9567d97474a834efdee3081b3c942b2205be932092f53354ce503d6c SIZE (rust/crates/cexpr-0.2.3.tar.gz) = 15747 -SHA256 (rust/crates/cfg-if-0.1.7.tar.gz) = 11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4 -SIZE (rust/crates/cfg-if-0.1.7.tar.gz) = 7360 +SHA256 (rust/crates/cfg-if-0.1.9.tar.gz) = b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33 +SIZE (rust/crates/cfg-if-0.1.9.tar.gz) = 7353 SHA256 (rust/crates/cgl-0.2.3.tar.gz) = 55e7ec0b74fe5897894cbc207092c577e87c52f8a59e8ca8d97ef37551f60a49 SIZE (rust/crates/cgl-0.2.3.tar.gz) = 7488 SHA256 (rust/crates/clang-sys-0.22.0.tar.gz) = 939a1a34310b120d26eba35c29475933128b0ec58e24b43327f8dbe6036fc538 SIZE (rust/crates/clang-sys-0.22.0.tar.gz) = 30872 SHA256 (rust/crates/clap-2.33.0.tar.gz) = 5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9 SIZE (rust/crates/clap-2.33.0.tar.gz) = 196458 -SHA256 (rust/crates/clipboard-0.5.0.tar.gz) = 25a904646c0340239dcf7c51677b33928bf24fdf424b79a57909c0109075b2e7 -SIZE (rust/crates/clipboard-0.5.0.tar.gz) = 10009 -SHA256 (rust/crates/clipboard-win-2.1.2.tar.gz) = 289da2fc09ab964a4948a63287c94fcb4698fa823c46da84c3792928c9d36110 -SIZE (rust/crates/clipboard-win-2.1.2.tar.gz) = 8972 +SHA256 (rust/crates/clipboard-win-2.2.0.tar.gz) = e3a093d6fed558e5fe24c3dfc85a68bb68f1c824f440d3ba5aca189e2998786b +SIZE (rust/crates/clipboard-win-2.2.0.tar.gz) = 11079 SHA256 (rust/crates/cloudabi-0.0.3.tar.gz) = ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f SIZE (rust/crates/cloudabi-0.0.3.tar.gz) = 22156 -SHA256 (rust/crates/cmake-0.1.38.tar.gz) = 96210eec534fc3fbfc0452a63769424eaa80205fda6cea98e5b61cb3d97bcec8 -SIZE (rust/crates/cmake-0.1.38.tar.gz) = 13624 +SHA256 (rust/crates/cmake-0.1.40.tar.gz) = 2ca4386c8954b76a8415b63959337d940d724b336cabd3afe189c2b51a7e1ff0 +SIZE (rust/crates/cmake-0.1.40.tar.gz) = 14241 SHA256 (rust/crates/cocoa-0.18.4.tar.gz) = cf79daa4e11e5def06e55306aa3601b87de6b5149671529318da048f67cdd77b SIZE (rust/crates/cocoa-0.18.4.tar.gz) = 41217 SHA256 (rust/crates/color_quant-1.0.1.tar.gz) = 0dbbb57365263e881e805dc77d94697c9118fd94d8da011240555aa7b23445bd SIZE (rust/crates/color_quant-1.0.1.tar.gz) = 5702 SHA256 (rust/crates/constant_time_eq-0.1.3.tar.gz) = 8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e SIZE (rust/crates/constant_time_eq-0.1.3.tar.gz) = 1279 -SHA256 (rust/crates/cookie-0.11.0.tar.gz) = 1465f8134efa296b4c19db34d909637cb2bf0f7aaf21299e23e18fa29ac557cf -SIZE (rust/crates/cookie-0.11.0.tar.gz) = 25906 -SHA256 (rust/crates/cookie_store-0.5.1.tar.gz) = b0d2f2ecb21dce00e2453268370312978af9b8024020c7a37ae2cc6dbbe64685 -SIZE (rust/crates/cookie_store-0.5.1.tar.gz) = 25071 -SHA256 (rust/crates/core-foundation-0.5.1.tar.gz) = 286e0b41c3a20da26536c6000a280585d519fd07b3956b43aed8a79e9edce980 -SIZE (rust/crates/core-foundation-0.5.1.tar.gz) = 22519 SHA256 (rust/crates/core-foundation-0.6.4.tar.gz) = 25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d SIZE (rust/crates/core-foundation-0.6.4.tar.gz) = 25233 -SHA256 (rust/crates/core-foundation-sys-0.5.1.tar.gz) = 716c271e8613ace48344f723b60b900a93150271e5be206212d052bbc0883efa -SIZE (rust/crates/core-foundation-sys-0.5.1.tar.gz) = 15974 SHA256 (rust/crates/core-foundation-sys-0.6.2.tar.gz) = e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b SIZE (rust/crates/core-foundation-sys-0.6.2.tar.gz) = 16204 -SHA256 (rust/crates/core-graphics-0.14.0.tar.gz) = e54c4ab33705fa1fc8af375bb7929d68e1c1546c1ecef408966d8c3e49a1d84a -SIZE (rust/crates/core-graphics-0.14.0.tar.gz) = 22125 SHA256 (rust/crates/core-graphics-0.17.3.tar.gz) = 56790968ab1c8a1202a102e6de05fc6e1ec87da99e4e93e9a7d13efbfc1e95a9 SIZE (rust/crates/core-graphics-0.17.3.tar.gz) = 26460 -SHA256 (rust/crates/core-text-10.0.0.tar.gz) = 81f59bff773954e5cd058a3f5983406b52bec7cc65202bef340ba64a0c40ac91 -SIZE (rust/crates/core-text-10.0.0.tar.gz) = 13083 SHA256 (rust/crates/core-text-13.2.0.tar.gz) = d95a72b5e50e549969dd88eff3047495fe5b8c6f028635442c2b708be707e669 SIZE (rust/crates/core-text-13.2.0.tar.gz) = 15396 -SHA256 (rust/crates/crc-1.8.1.tar.gz) = d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb -SIZE (rust/crates/crc-1.8.1.tar.gz) = 9114 SHA256 (rust/crates/crc32fast-1.2.0.tar.gz) = ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1 SIZE (rust/crates/crc32fast-1.2.0.tar.gz) = 39161 SHA256 (rust/crates/crossbeam-channel-0.3.8.tar.gz) = 0f0ed1a4de2235cabda8558ff5840bffb97fcb64c97827f354a451307df5f72b SIZE (rust/crates/crossbeam-channel-0.3.8.tar.gz) = 79923 -SHA256 (rust/crates/crossbeam-deque-0.2.0.tar.gz) = f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3 -SIZE (rust/crates/crossbeam-deque-0.2.0.tar.gz) = 12638 -SHA256 (rust/crates/crossbeam-deque-0.7.1.tar.gz) = b18cd2e169ad86297e6bc0ad9aa679aee9daa4f19e8163860faf7c164e4f5a71 -SIZE (rust/crates/crossbeam-deque-0.7.1.tar.gz) = 19407 -SHA256 (rust/crates/crossbeam-epoch-0.3.1.tar.gz) = 927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150 -SIZE (rust/crates/crossbeam-epoch-0.3.1.tar.gz) = 33093 +SHA256 (rust/crates/crossbeam-deque-0.6.3.tar.gz) = 05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13 +SIZE (rust/crates/crossbeam-deque-0.6.3.tar.gz) = 14238 SHA256 (rust/crates/crossbeam-epoch-0.7.1.tar.gz) = 04c9e3102cc2d69cd681412141b390abd55a362afc1540965dad0ad4d34280b4 SIZE (rust/crates/crossbeam-epoch-0.7.1.tar.gz) = 35215 SHA256 (rust/crates/crossbeam-queue-0.1.2.tar.gz) = 7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b SIZE (rust/crates/crossbeam-queue-0.1.2.tar.gz) = 14104 -SHA256 (rust/crates/crossbeam-utils-0.2.2.tar.gz) = 2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9 -SIZE (rust/crates/crossbeam-utils-0.2.2.tar.gz) = 11901 SHA256 (rust/crates/crossbeam-utils-0.6.5.tar.gz) = f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c SIZE (rust/crates/crossbeam-utils-0.6.5.tar.gz) = 31735 SHA256 (rust/crates/deflate-0.7.19.tar.gz) = 8a6abb26e16e8d419b5c78662aa9f82857c2386a073da266840e474d5055ec86 @@ -127,16 +97,16 @@ SHA256 (rust/crates/dlib-0.4.1.tar.gz) = 77e51249a9d82 SIZE (rust/crates/dlib-0.4.1.tar.gz) = 3761 SHA256 (rust/crates/downcast-rs-1.0.4.tar.gz) = f2b92dfd5c2f75260cbf750572f95d387e7ca0ba5e3fbe9e1a33f23025be020f SIZE (rust/crates/downcast-rs-1.0.4.tar.gz) = 9611 -SHA256 (rust/crates/dtoa-0.4.3.tar.gz) = 6d301140eb411af13d3115f9a562c85cc6b541ade9dfa314132244aaee7489dd -SIZE (rust/crates/dtoa-0.4.3.tar.gz) = 14456 +SHA256 (rust/crates/dtoa-0.4.4.tar.gz) = ea57b42383d091c85abcc2706240b94ab2a8fa1fc81c10ff23c4de06e2a90b5e +SIZE (rust/crates/dtoa-0.4.4.tar.gz) = 14818 SHA256 (rust/crates/dunce-1.0.0.tar.gz) = d0ad6bf6a88548d1126045c413548df1453d9be094a8ab9fd59bf1fdd338da4f SIZE (rust/crates/dunce-1.0.0.tar.gz) = 5167 +SHA256 (rust/crates/dwrote-0.9.0.tar.gz) = 0bd1369e02db5e9b842a9b67bce8a2fcc043beafb2ae8a799dd482d46ea1ff0d +SIZE (rust/crates/dwrote-0.9.0.tar.gz) = 22254 SHA256 (rust/crates/either-1.5.2.tar.gz) = 5527cfe0d098f36e3f8839852688e63c8fff1c90b2b405aef730615f9a7bcf7b SIZE (rust/crates/either-1.5.2.tar.gz) = 12124 SHA256 (rust/crates/embed-resource-1.2.0.tar.gz) = ee11dd277e159f3a7845341f8c800899cf918a366956e31dd52f35eff638a403 SIZE (rust/crates/embed-resource-1.2.0.tar.gz) = 7854 -SHA256 (rust/crates/encoding_rs-0.8.17.tar.gz) = 4155785c79f2f6701f185eb2e6b4caf0555ec03477cb4c70db67b465311620ed -SIZE (rust/crates/encoding_rs-0.8.17.tar.gz) = 1401378 SHA256 (rust/crates/env_logger-0.5.13.tar.gz) = 15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38 SIZE (rust/crates/env_logger-0.5.13.tar.gz) = 25275 SHA256 (rust/crates/env_logger-0.6.1.tar.gz) = b61fa891024a945da30a9581546e8cfaf5602c7b3f4c137a2805cf388f92075a @@ -145,10 +115,8 @@ SHA256 (rust/crates/errno-0.2.4.tar.gz) = c2a071601ed0 SIZE (rust/crates/errno-0.2.4.tar.gz) = 8486 SHA256 (rust/crates/errno-dragonfly-0.1.1.tar.gz) = 14ca354e36190500e1e1fb267c647932382b54053c50b14970856c0b00a35067 SIZE (rust/crates/errno-dragonfly-0.1.1.tar.gz) = 1370 -SHA256 (rust/crates/error-chain-0.12.0.tar.gz) = 07e791d3be96241c77c43846b665ef1384606da2cd2a48730abe606a12906e02 -SIZE (rust/crates/error-chain-0.12.0.tar.gz) = 27056 -SHA256 (rust/crates/euclid-0.19.8.tar.gz) = 7a4719a544a67ed3fc33784c2bd2c6581663dfe83b719a6ae05c6dabc3b51c73 -SIZE (rust/crates/euclid-0.19.8.tar.gz) = 57229 +SHA256 (rust/crates/euclid-0.19.9.tar.gz) = 596b99621b9477e7a5f94d2d8dd13a9c5c302ac358b822c67a42b6f1054450e1 +SIZE (rust/crates/euclid-0.19.9.tar.gz) = 57417 SHA256 (rust/crates/euclid_macros-0.1.0.tar.gz) = fdcb84c18ea5037a1c5a23039b4ff29403abce2e0d6b1daa11cf0bde2b30be15 SIZE (rust/crates/euclid_macros-0.1.0.tar.gz) = 7196 SHA256 (rust/crates/expat-sys-2.1.6.tar.gz) = 658f19728920138342f68408b7cf7644d90d4784353d8ebc32e7e8663dbe45fa @@ -157,44 +125,42 @@ SHA256 (rust/crates/failure-0.1.5.tar.gz) = 795bd83d3a SIZE (rust/crates/failure-0.1.5.tar.gz) = 36749 SHA256 (rust/crates/failure_derive-0.1.5.tar.gz) = ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1 SIZE (rust/crates/failure_derive-0.1.5.tar.gz) = 4884 -SHA256 (rust/crates/filetime-0.2.4.tar.gz) = a2df5c1a8c4be27e7707789dc42ae65976e60b394afd293d1419ab915833e646 -SIZE (rust/crates/filetime-0.2.4.tar.gz) = 12044 -SHA256 (rust/crates/flate2-1.0.7.tar.gz) = f87e68aa82b2de08a6e037f1385455759df6e445a8df5e005b4297191dbf18aa -SIZE (rust/crates/flate2-1.0.7.tar.gz) = 65912 +SHA256 (rust/crates/filetime-0.2.5.tar.gz) = 2f8c63033fcba1f51ef744505b3cad42510432b904c062afa67ad7ece008429d +SIZE (rust/crates/filetime-0.2.5.tar.gz) = 12129 SHA256 (rust/crates/fnv-1.0.6.tar.gz) = 2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3 SIZE (rust/crates/fnv-1.0.6.tar.gz) = 11131 -SHA256 (rust/crates/font-loader-0.8.0.tar.gz) = 4ece0e8a5dd99a65f8de977b4a3f89e3b5a5259e15ae610952cdb894e96f5e2e -SIZE (rust/crates/font-loader-0.8.0.tar.gz) = 7145 SHA256 (rust/crates/foreign-types-0.3.2.tar.gz) = f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1 SIZE (rust/crates/foreign-types-0.3.2.tar.gz) = 7504 +SHA256 (rust/crates/foreign-types-0.4.0.tar.gz) = 3684708dacd3b83f4bbe6506d4ccb08bed3c16f521d34366f131b9ecd1884431 +SIZE (rust/crates/foreign-types-0.4.0.tar.gz) = 7787 +SHA256 (rust/crates/foreign-types-macros-0.1.0.tar.gz) = 66626064d64b429efe601d7aabd7b0a9721b2611548ca684e78c4ecde48bd29b +SIZE (rust/crates/foreign-types-macros-0.1.0.tar.gz) = 7656 SHA256 (rust/crates/foreign-types-shared-0.1.1.tar.gz) = 00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b SIZE (rust/crates/foreign-types-shared-0.1.1.tar.gz) = 5672 +SHA256 (rust/crates/foreign-types-shared-0.2.0.tar.gz) = c61f9b85573bf0f203eed3633f5018abce85250886a62ca073e0eee022ed564d +SIZE (rust/crates/foreign-types-shared-0.2.0.tar.gz) = 5833 SHA256 (rust/crates/freetype-rs-0.19.1.tar.gz) = 28cc92a7040ee7b631e4279e263f9a83aedc1eb6085c68d8ca4d072b5644e705 SIZE (rust/crates/freetype-rs-0.19.1.tar.gz) = 103875 SHA256 (rust/crates/freetype-sys-0.7.1.tar.gz) = 0f9c8666cce7cf6e51a290623647febfbab92480b4c3e0f495cb9d4d312b5d38 SIZE (rust/crates/freetype-sys-0.7.1.tar.gz) = 10156 -SHA256 (rust/crates/fsevent-0.2.17.tar.gz) = c4bbbf71584aeed076100b5665ac14e3d85eeb31fdbb45fbd41ef9a682b5ec05 -SIZE (rust/crates/fsevent-0.2.17.tar.gz) = 5860 -SHA256 (rust/crates/fsevent-sys-0.1.6.tar.gz) = 1a772d36c338d07a032d5375a36f15f9a7043bf0cb8ce7cee658e037c6032874 -SIZE (rust/crates/fsevent-sys-0.1.6.tar.gz) = 3397 +SHA256 (rust/crates/fsevent-0.4.0.tar.gz) = 5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6 +SIZE (rust/crates/fsevent-0.4.0.tar.gz) = 7292 +SHA256 (rust/crates/fsevent-sys-2.0.1.tar.gz) = f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0 +SIZE (rust/crates/fsevent-sys-2.0.1.tar.gz) = 3984 SHA256 (rust/crates/fuchsia-cprng-0.1.1.tar.gz) = a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba SIZE (rust/crates/fuchsia-cprng-0.1.1.tar.gz) = 2950 SHA256 (rust/crates/fuchsia-zircon-0.3.3.tar.gz) = 2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82 SIZE (rust/crates/fuchsia-zircon-0.3.3.tar.gz) = 22565 SHA256 (rust/crates/fuchsia-zircon-sys-0.3.3.tar.gz) = 3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7 SIZE (rust/crates/fuchsia-zircon-sys-0.3.3.tar.gz) = 7191 -SHA256 (rust/crates/futures-0.1.26.tar.gz) = 62941eff9507c8177d448bd83a44d9b9760856e184081d8cd79ba9f03dd24981 -SIZE (rust/crates/futures-0.1.26.tar.gz) = 158085 -SHA256 (rust/crates/futures-cpupool-0.1.8.tar.gz) = ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4 -SIZE (rust/crates/futures-cpupool-0.1.8.tar.gz) = 10583 SHA256 (rust/crates/gcc-0.3.55.tar.gz) = 8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2 SIZE (rust/crates/gcc-0.3.55.tar.gz) = 37262 -SHA256 (rust/crates/gif-0.10.1.tar.gz) = dd4bca55ac1f213920ce3527ccd62386f1f15fa3f1714aeee1cf93f2c416903f -SIZE (rust/crates/gif-0.10.1.tar.gz) = 25076 +SHA256 (rust/crates/gif-0.10.2.tar.gz) = 86c2f2b597d6e05c86ee5947b2223bda468fe8dad3e88e2a6520869322aaf568 +SIZE (rust/crates/gif-0.10.2.tar.gz) = 25307 SHA256 (rust/crates/gl_generator-0.11.0.tar.gz) = 39a23d5e872a275135d66895d954269cf5e8661d234eb1c2480f4ce0d586acbd SIZE (rust/crates/gl_generator-0.11.0.tar.gz) = 22189 -SHA256 (rust/crates/gleam-0.6.16.tar.gz) = 39bb69499005e11b7b7cc0af38404a1bc0f53d954bffa8adcdb6e8d5b14f75d5 -SIZE (rust/crates/gleam-0.6.16.tar.gz) = 26363 +SHA256 (rust/crates/gleam-0.6.17.tar.gz) = 7f46fd8874e043ffac0d638ed1567a2584f7814f6d72b4db37ab1689004a26c4 +SIZE (rust/crates/gleam-0.6.17.tar.gz) = 26456 SHA256 (rust/crates/glob-0.2.11.tar.gz) = 8be18de09a56b60ed0edf84bc9df007e30040691af7acd1c41874faac5895bfb SIZE (rust/crates/glob-0.2.11.tar.gz) = 18065 SHA256 (rust/crates/glutin-0.21.0.tar.gz) = cb26027a84c3b9e1949ef0df0b6a3db8d0c124243a5c161ea25c7def90cb1474 @@ -209,24 +175,14 @@ SHA256 (rust/crates/glutin_glx_sys-0.1.5.tar.gz) = 129 SIZE (rust/crates/glutin_glx_sys-0.1.5.tar.gz) = 1701 SHA256 (rust/crates/glutin_wgl_sys-0.1.3.tar.gz) = f801bbc91efc22dd1c4818a47814fc72bf74d024510451b119381579bfa39021 SIZE (rust/crates/glutin_wgl_sys-0.1.3.tar.gz) = 1555 -SHA256 (rust/crates/h2-0.1.18.tar.gz) = 85ab6286db06040ddefb71641b50017c06874614001a134b423783e2db2920bd -SIZE (rust/crates/h2-0.1.18.tar.gz) = 143024 -SHA256 (rust/crates/http-0.1.17.tar.gz) = eed324f0f0daf6ec10c474f150505af2c143f251722bf9dbd1261bd1f2ee2c1a -SIZE (rust/crates/http-0.1.17.tar.gz) = 98437 -SHA256 (rust/crates/httparse-1.3.3.tar.gz) = e8734b0cfd3bc3e101ec59100e101c2eecd19282202e87808b3037b442777a83 -SIZE (rust/crates/httparse-1.3.3.tar.gz) = 23689 +SHA256 (rust/crates/http_req-0.5.0.tar.gz) = 06dc3c469026e12585cb2b783bbfdd853386907558a5e1b86c4c127d50167806 +SIZE (rust/crates/http_req-0.5.0.tar.gz) = 63776 SHA256 (rust/crates/humantime-1.2.0.tar.gz) = 3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114 SIZE (rust/crates/humantime-1.2.0.tar.gz) = 16795 -SHA256 (rust/crates/hyper-0.12.27.tar.gz) = 4f2777434f26af6e4ce4fdcdccd3bed9d861d11e87bcbe72c0f51ddaca8ff848 -SIZE (rust/crates/hyper-0.12.27.tar.gz) = 117953 -SHA256 (rust/crates/hyper-tls-0.3.2.tar.gz) = 3a800d6aa50af4b5850b2b0f659625ce9504df908e9733b635720483be26174f -SIZE (rust/crates/hyper-tls-0.3.2.tar.gz) = 8901 SHA256 (rust/crates/idna-0.1.5.tar.gz) = 38f09e0f0b1fb55fdee1f17470ad800da77af5186a1a76c026b679358b7e844e SIZE (rust/crates/idna-0.1.5.tar.gz) = 258735 -SHA256 (rust/crates/image-0.21.1.tar.gz) = 293e54ce142a936a39da748ba8178ae6aa1914b82d846a4278f11590c89bf116 -SIZE (rust/crates/image-0.21.1.tar.gz) = 140858 -SHA256 (rust/crates/indexmap-1.0.2.tar.gz) = 7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d -SIZE (rust/crates/indexmap-1.0.2.tar.gz) = 38255 +SHA256 (rust/crates/image-0.21.2.tar.gz) = 99198e595d012efccf12abf4abc08da2d97be0b0355a2b08d101347527476ba4 +SIZE (rust/crates/image-0.21.2.tar.gz) = 142274 SHA256 (rust/crates/inflate-0.4.5.tar.gz) = 1cdb29978cc5797bd8dcc8e5bf7de604891df2a8dc576973d71a281e916db2ff SIZE (rust/crates/inflate-0.4.5.tar.gz) = 17715 SHA256 (rust/crates/inotify-0.6.1.tar.gz) = 40b54539f3910d6f84fbf9a643efd6e3aa6e4f001426c0329576128255994718 @@ -235,8 +191,8 @@ SHA256 (rust/crates/inotify-sys-0.1.3.tar.gz) = e74a1a SIZE (rust/crates/inotify-sys-0.1.3.tar.gz) = 8327 SHA256 (rust/crates/iovec-0.1.2.tar.gz) = dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08 SIZE (rust/crates/iovec-0.1.2.tar.gz) = 8565 -SHA256 (rust/crates/itoa-0.4.3.tar.gz) = 1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b -SIZE (rust/crates/itoa-0.4.3.tar.gz) = 11061 +SHA256 (rust/crates/itoa-0.4.4.tar.gz) = 501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f +SIZE (rust/crates/itoa-0.4.4.tar.gz) = 11147 SHA256 (rust/crates/jpeg-decoder-0.1.15.tar.gz) = c8b7d43206b34b3f94ea9445174bda196e772049b9bddbc620c9d29b2d20110d SIZE (rust/crates/jpeg-decoder-0.1.15.tar.gz) = 29660 SHA256 (rust/crates/kernel32-sys-0.2.2.tar.gz) = 7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d @@ -247,12 +203,12 @@ SHA256 (rust/crates/lazy_static-1.3.0.tar.gz) = bc5729 SIZE (rust/crates/lazy_static-1.3.0.tar.gz) = 10616 SHA256 (rust/crates/lazycell-1.2.1.tar.gz) = b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f SIZE (rust/crates/lazycell-1.2.1.tar.gz) = 11691 -SHA256 (rust/crates/libc-0.2.51.tar.gz) = bedcc7a809076656486ffe045abeeac163da1b558e963a31e29fbfbeba916917 -SIZE (rust/crates/libc-0.2.51.tar.gz) = 397323 -SHA256 (rust/crates/libflate-0.1.22.tar.gz) = c52384aeb22d0ce82a10d8ddf35f7fb4717d1b23eac5b94cd38d2050fb53766a -SIZE (rust/crates/libflate-0.1.22.tar.gz) = 35923 -SHA256 (rust/crates/libloading-0.5.0.tar.gz) = 9c3ad660d7cb8c5822cd83d10897b0f1f1526792737a179e73896152f85b88c2 -SIZE (rust/crates/libloading-0.5.0.tar.gz) = 15990 +SHA256 (rust/crates/libc-0.2.58.tar.gz) = 6281b86796ba5e4366000be6e9e18bf35580adf9e63fbe2294aadb587613a319 +SIZE (rust/crates/libc-0.2.58.tar.gz) = 409031 +SHA256 (rust/crates/libflate-0.1.23.tar.gz) = 76912aa0196b6f0e06d9c43ee877be45369157c06172ade12fe20ac3ee5ffa15 +SIZE (rust/crates/libflate-0.1.23.tar.gz) = 35964 +SHA256 (rust/crates/libloading-0.5.1.tar.gz) = a5692f82b51823e27c4118b3e5c0d98aee9be90633ebc71ad12afef380b50219 +SIZE (rust/crates/libloading-0.5.1.tar.gz) = 19502 SHA256 (rust/crates/libz-sys-1.0.25.tar.gz) = 2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe SIZE (rust/crates/libz-sys-1.0.25.tar.gz) = 650151 SHA256 (rust/crates/line_drawing-0.7.0.tar.gz) = 5cc7ad3d82c845bdb5dde34ffdcc7a5fb4d2996e1e1ee0f19c33bc80e15196b9 @@ -277,16 +233,8 @@ SHA256 (rust/crates/memmap-0.7.0.tar.gz) = 6585fd95e7b SIZE (rust/crates/memmap-0.7.0.tar.gz) = 15214 SHA256 (rust/crates/memoffset-0.2.1.tar.gz) = 0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3 SIZE (rust/crates/memoffset-0.2.1.tar.gz) = 4618 -SHA256 (rust/crates/mime-0.3.13.tar.gz) = 3e27ca21f40a310bd06d9031785f4801710d566c184a6e15bad4f1d9b65f9425 -SIZE (rust/crates/mime-0.3.13.tar.gz) = 14939 -SHA256 (rust/crates/mime_guess-2.0.0-alpha.6.tar.gz) = 30de2e4613efcba1ec63d8133f344076952090c122992a903359be5a4f99c3ed -SIZE (rust/crates/mime_guess-2.0.0-alpha.6.tar.gz) = 17579 -SHA256 (rust/crates/miniz_oxide-0.2.1.tar.gz) = c468f2369f07d651a5d0bb2c9079f8488a66d5466efe42d0c5c6466edcb7f71e -SIZE (rust/crates/miniz_oxide-0.2.1.tar.gz) = 49241 -SHA256 (rust/crates/miniz_oxide_c_api-0.2.1.tar.gz) = b7fe927a42e3807ef71defb191dc87d4e24479b221e67015fe38ae2b7b447bab -SIZE (rust/crates/miniz_oxide_c_api-0.2.1.tar.gz) = 163410 -SHA256 (rust/crates/mio-0.6.16.tar.gz) = 71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432 -SIZE (rust/crates/mio-0.6.16.tar.gz) = 126174 +SHA256 (rust/crates/mio-0.6.19.tar.gz) = 83f51996a3ed004ef184e16818edc51fadffe8e7ca68be67f9dee67d84d0ff23 +SIZE (rust/crates/mio-0.6.19.tar.gz) = 128192 SHA256 (rust/crates/mio-anonymous-pipes-0.1.0.tar.gz) = f8c274c3c52dcd1d78c5d7ed841eca1e9ea2db8353f3b8ec25789cc62c471aaf SIZE (rust/crates/mio-anonymous-pipes-0.1.0.tar.gz) = 3771 SHA256 (rust/crates/mio-extras-2.0.5.tar.gz) = 46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40 @@ -301,32 +249,32 @@ SHA256 (rust/crates/miow-0.3.3.tar.gz) = 396aa0f2003d7 SIZE (rust/crates/miow-0.3.3.tar.gz) = 22850 SHA256 (rust/crates/named_pipe-0.3.0.tar.gz) = 8ed10a5ac4f5f7e5d75552b12c1d5d542debca81e573279dd1e4c19fde6efa6d SIZE (rust/crates/named_pipe-0.3.0.tar.gz) = 12840 -SHA256 (rust/crates/native-tls-0.2.2.tar.gz) = ff8e08de0070bbf4c31f452ea2a70db092f36f6f2e4d897adf5674477d488fb2 -SIZE (rust/crates/native-tls-0.2.2.tar.gz) = 29238 +SHA256 (rust/crates/native-tls-0.2.3.tar.gz) = 4b2df1a4c22fd44a62147fd8f13dd0f95c9d8ca7b2610299b2a2f9cf8964274e +SIZE (rust/crates/native-tls-0.2.3.tar.gz) = 29087 SHA256 (rust/crates/net2-0.2.33.tar.gz) = 42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88 SIZE (rust/crates/net2-0.2.33.tar.gz) = 20936 -SHA256 (rust/crates/nix-0.13.0.tar.gz) = 46f0f3210768d796e8fa79ec70ee6af172dacbe7147f5e69be5240a47778302b -SIZE (rust/crates/nix-0.13.0.tar.gz) = 176804 +SHA256 (rust/crates/nix-0.14.1.tar.gz) = 6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce +SIZE (rust/crates/nix-0.14.1.tar.gz) = 185227 SHA256 (rust/crates/nodrop-0.1.13.tar.gz) = 2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945 SIZE (rust/crates/nodrop-0.1.13.tar.gz) = 7508 SHA256 (rust/crates/nom-3.2.1.tar.gz) = 05aec50c70fd288702bcd93284a8444607f3292dbdf2a30de5ea5dcdbe72287b SIZE (rust/crates/nom-3.2.1.tar.gz) = 104073 SHA256 (rust/crates/nom-4.2.3.tar.gz) = 2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6 SIZE (rust/crates/nom-4.2.3.tar.gz) = 115343 -SHA256 (rust/crates/notify-4.0.10.tar.gz) = abb1581693e44d8a0ec347ef12289625063f52a1dddc3f3c9befd5fc59e88943 -SIZE (rust/crates/notify-4.0.10.tar.gz) = 48124 -SHA256 (rust/crates/num-derive-0.2.4.tar.gz) = d9fe8fcafd1b86a37ce8a1cfa15ae504817e0c8c2e7ad42767371461ac1d316d -SIZE (rust/crates/num-derive-0.2.4.tar.gz) = 12925 -SHA256 (rust/crates/num-integer-0.1.39.tar.gz) = e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea -SIZE (rust/crates/num-integer-0.1.39.tar.gz) = 17881 -SHA256 (rust/crates/num-iter-0.1.37.tar.gz) = af3fdbbc3291a5464dc57b03860ec37ca6bf915ed6ee385e7c6c052c422b2124 -SIZE (rust/crates/num-iter-0.1.37.tar.gz) = 10201 -SHA256 (rust/crates/num-rational-0.2.1.tar.gz) = 4e96f040177bb3da242b5b1ecf3f54b5d5af3efbbfb18608977a5d2767b22f10 -SIZE (rust/crates/num-rational-0.2.1.tar.gz) = 19311 -SHA256 (rust/crates/num-traits-0.2.6.tar.gz) = 0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1 -SIZE (rust/crates/num-traits-0.2.6.tar.gz) = 39923 -SHA256 (rust/crates/num_cpus-1.10.0.tar.gz) = 1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba -SIZE (rust/crates/num_cpus-1.10.0.tar.gz) = 10669 +SHA256 (rust/crates/notify-4.0.12.tar.gz) = 3572d71f13ea8ed41867accd971fd564aa75934cf7a1fae03ddb8c74a8a49943 +SIZE (rust/crates/notify-4.0.12.tar.gz) = 48182 +SHA256 (rust/crates/num-derive-0.2.5.tar.gz) = eafd0b45c5537c3ba526f79d3e75120036502bebacbb3f3220914067ce39dbf2 +SIZE (rust/crates/num-derive-0.2.5.tar.gz) = 13137 +SHA256 (rust/crates/num-integer-0.1.41.tar.gz) = b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09 +SIZE (rust/crates/num-integer-0.1.41.tar.gz) = 19399 +SHA256 (rust/crates/num-iter-0.1.39.tar.gz) = 76bd5272412d173d6bf9afdf98db8612bbabc9a7a830b7bfc9c188911716132e +SIZE (rust/crates/num-iter-0.1.39.tar.gz) = 9616 +SHA256 (rust/crates/num-rational-0.2.2.tar.gz) = f2885278d5fe2adc2f75ced642d52d879bffaceb5a2e0b1d4309ffdfb239b454 +SIZE (rust/crates/num-rational-0.2.2.tar.gz) = 18821 +SHA256 (rust/crates/num-traits-0.2.8.tar.gz) = 6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32 +SIZE (rust/crates/num-traits-0.2.8.tar.gz) = 39965 +SHA256 (rust/crates/num_cpus-1.10.1.tar.gz) = bcef43580c035376c0705c42792c294b66974abbfd2789b511784023f71f3273 +SIZE (rust/crates/num_cpus-1.10.1.tar.gz) = 11151 SHA256 (rust/crates/numtoa-0.1.0.tar.gz) = b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef SIZE (rust/crates/numtoa-0.1.0.tar.gz) = 8999 SHA256 (rust/crates/objc-0.2.6.tar.gz) = 31d20fd2b37e07cf5125be68357b588672e8cefe9a96f8c17a9d46053b3e590d @@ -335,12 +283,12 @@ SHA256 (rust/crates/objc-foundation-0.1.1.tar.gz) = 1a SIZE (rust/crates/objc-foundation-0.1.1.tar.gz) = 9063 SHA256 (rust/crates/objc_id-0.1.1.tar.gz) = c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b SIZE (rust/crates/objc_id-0.1.1.tar.gz) = 3258 -SHA256 (rust/crates/openssl-0.10.20.tar.gz) = 5a0d6b781aac4ac1bd6cafe2a2f0ad8c16ae8e1dd5184822a16c50139f8838d9 -SIZE (rust/crates/openssl-0.10.20.tar.gz) = 178977 +SHA256 (rust/crates/openssl-0.10.23.tar.gz) = 97c140cbb82f3b3468193dd14c1b88def39f341f68257f8a7fe8ed9ed3f628a5 +SIZE (rust/crates/openssl-0.10.23.tar.gz) = 179328 SHA256 (rust/crates/openssl-probe-0.1.2.tar.gz) = 77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de SIZE (rust/crates/openssl-probe-0.1.2.tar.gz) = 6427 -SHA256 (rust/crates/openssl-sys-0.9.43.tar.gz) = 33c86834957dd5b915623e94f2f4ab2c70dd8f6b70679824155d5ae21dbd495d -SIZE (rust/crates/openssl-sys-0.9.43.tar.gz) = 43849 +SHA256 (rust/crates/openssl-sys-0.9.47.tar.gz) = 75bdd6dbbb4958d38e47a1d2348847ad1eb4dc205dc5d37473ae504391865acc +SIZE (rust/crates/openssl-sys-0.9.47.tar.gz) = 44276 SHA256 (rust/crates/ordered-float-1.0.2.tar.gz) = 18869315e81473c951eb56ad5558bbc56978562d3ecfb87abb7a1e944cea4518 SIZE (rust/crates/ordered-float-1.0.2.tar.gz) = 9458 SHA256 (rust/crates/osmesa-sys-0.1.2.tar.gz) = 88cfece6e95d2e717e0872a7f53a8684712ad13822a7979bc760b9c77ec0013b @@ -365,14 +313,12 @@ SHA256 (rust/crates/phf_shared-0.7.24.tar.gz) = 234f71 SIZE (rust/crates/phf_shared-0.7.24.tar.gz) = 2170 SHA256 (rust/crates/pkg-config-0.3.14.tar.gz) = 676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c SIZE (rust/crates/pkg-config-0.3.14.tar.gz) = 13565 -SHA256 (rust/crates/png-0.14.0.tar.gz) = 9adebf7fb91ccf5eac9da1a8e00e83cb8ae882c3e8d8e4ad59da73cb8c82a2c9 -SIZE (rust/crates/png-0.14.0.tar.gz) = 30158 +SHA256 (rust/crates/png-0.14.1.tar.gz) = 63daf481fdd0defa2d1d2be15c674fbfa1b0fd71882c303a91f9a79b3252c359 +SIZE (rust/crates/png-0.14.1.tar.gz) = 30070 SHA256 (rust/crates/podio-0.1.6.tar.gz) = 780fb4b6698bbf9cf2444ea5d22411cef2953f0824b98f33cf454ec5615645bd SIZE (rust/crates/podio-0.1.6.tar.gz) = 10186 -SHA256 (rust/crates/proc-macro2-0.4.27.tar.gz) = 4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915 -SIZE (rust/crates/proc-macro2-0.4.27.tar.gz) = 34098 -SHA256 (rust/crates/publicsuffix-1.5.2.tar.gz) = 5afecba86dcf1e4fd610246f89899d1924fe12e1e89f555eb7c7f710f3c5ad1d -SIZE (rust/crates/publicsuffix-1.5.2.tar.gz) = 16514 +SHA256 (rust/crates/proc-macro2-0.4.30.tar.gz) = cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759 +SIZE (rust/crates/proc-macro2-0.4.30.tar.gz) = 34731 SHA256 (rust/crates/quick-error-1.2.2.tar.gz) = 9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0 SIZE (rust/crates/quick-error-1.2.2.tar.gz) = 15132 SHA256 (rust/crates/quote-0.3.15.tar.gz) = 7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a @@ -391,18 +337,18 @@ SHA256 (rust/crates/rand_hc-0.1.0.tar.gz) = 7b40677c7b SIZE (rust/crates/rand_hc-0.1.0.tar.gz) = 11644 SHA256 (rust/crates/rand_isaac-0.1.1.tar.gz) = ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08 SIZE (rust/crates/rand_isaac-0.1.1.tar.gz) = 16020 -SHA256 (rust/crates/rand_jitter-0.1.3.tar.gz) = 7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832 -SIZE (rust/crates/rand_jitter-0.1.3.tar.gz) = 18341 +SHA256 (rust/crates/rand_jitter-0.1.4.tar.gz) = 1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b +SIZE (rust/crates/rand_jitter-0.1.4.tar.gz) = 18409 SHA256 (rust/crates/rand_os-0.1.3.tar.gz) = 7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071 SIZE (rust/crates/rand_os-0.1.3.tar.gz) = 18965 SHA256 (rust/crates/rand_pcg-0.1.2.tar.gz) = abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44 SIZE (rust/crates/rand_pcg-0.1.2.tar.gz) = 10844 SHA256 (rust/crates/rand_xorshift-0.1.1.tar.gz) = cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c SIZE (rust/crates/rand_xorshift-0.1.1.tar.gz) = 8997 -SHA256 (rust/crates/rayon-1.0.3.tar.gz) = 373814f27745b2686b350dd261bfd24576a6fb0e2c5919b3a2b6005f820b0473 -SIZE (rust/crates/rayon-1.0.3.tar.gz) = 134391 -SHA256 (rust/crates/rayon-core-1.4.1.tar.gz) = b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356 -SIZE (rust/crates/rayon-core-1.4.1.tar.gz) = 53760 +SHA256 (rust/crates/rayon-1.1.0.tar.gz) = a4b0186e22767d5b9738a05eab7c6ac90b15db17e5b5f9bd87976dd7d89a10a4 +SIZE (rust/crates/rayon-1.1.0.tar.gz) = 138915 +SHA256 (rust/crates/rayon-core-1.5.0.tar.gz) = ebbe0df8435ac0c397d467b6cad6d25543d06e8a019ef3f6af3c384597515bd2 +SIZE (rust/crates/rayon-core-1.5.0.tar.gz) = 61857 SHA256 (rust/crates/rdrand-0.4.0.tar.gz) = 678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2 SIZE (rust/crates/rdrand-0.4.0.tar.gz) = 6456 SHA256 (rust/crates/redox_syscall-0.1.54.tar.gz) = 12229c14a0f65c4f1cb046a3b52047cdd9da1f4b30f8a39c5063c8bae515e252 @@ -413,24 +359,24 @@ SHA256 (rust/crates/redox_users-0.3.0.tar.gz) = 3fe520 SIZE (rust/crates/redox_users-0.3.0.tar.gz) = 12766 SHA256 (rust/crates/regex-0.2.11.tar.gz) = 9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384 SIZE (rust/crates/regex-0.2.11.tar.gz) = 209507 -SHA256 (rust/crates/regex-1.1.6.tar.gz) = 8f0a0bcab2fd7d1d7c54fa9eae6f43eddeb9ce2e7352f8518a814a4f65d60c58 -SIZE (rust/crates/regex-1.1.6.tar.gz) = 243429 +SHA256 (rust/crates/regex-1.1.7.tar.gz) = 0b2f0808e7d7e4fb1cb07feb6ff2f4bc827938f24f8c2e6a3beb7370af544bdd +SIZE (rust/crates/regex-1.1.7.tar.gz) = 243534 SHA256 (rust/crates/regex-syntax-0.5.6.tar.gz) = 7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7 SIZE (rust/crates/regex-syntax-0.5.6.tar.gz) = 233912 -SHA256 (rust/crates/regex-syntax-0.6.6.tar.gz) = dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96 -SIZE (rust/crates/regex-syntax-0.6.6.tar.gz) = 273068 -SHA256 (rust/crates/remove_dir_all-0.5.1.tar.gz) = 3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5 -SIZE (rust/crates/remove_dir_all-0.5.1.tar.gz) = 8726 -SHA256 (rust/crates/reqwest-0.9.15.tar.gz) = 943b9f85622f53bcf71721e0996f23688e3942e51fc33766c2e24a959316767b -SIZE (rust/crates/reqwest-0.9.15.tar.gz) = 83521 -SHA256 (rust/crates/rustc-demangle-0.1.14.tar.gz) = ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288 -SIZE (rust/crates/rustc-demangle-0.1.14.tar.gz) = 18721 +SHA256 (rust/crates/regex-syntax-0.6.7.tar.gz) = 9d76410686f9e3a17f06128962e0ecc5755870bb890c34820c7af7f1db2e1d48 +SIZE (rust/crates/regex-syntax-0.6.7.tar.gz) = 273104 +SHA256 (rust/crates/remove_dir_all-0.5.2.tar.gz) = 4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e +SIZE (rust/crates/remove_dir_all-0.5.2.tar.gz) = 8907 +SHA256 (rust/crates/rustc-demangle-0.1.15.tar.gz) = a7f4dccf6f4891ebcc0c39f9b6eb1a83b9bf5d747cb439ec6fba4f3b977038af +SIZE (rust/crates/rustc-demangle-0.1.15.tar.gz) = 18640 +SHA256 (rust/crates/rustc_tools_util-0.2.0.tar.gz) = b725dadae9fabc488df69a287f5a99c5eaf5d10853842a8a3dfac52476f544ee +SIZE (rust/crates/rustc_tools_util-0.2.0.tar.gz) = 2792 SHA256 (rust/crates/rustc_version-0.2.3.tar.gz) = 138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a SIZE (rust/crates/rustc_version-0.2.3.tar.gz) = 10210 -SHA256 (rust/crates/rusttype-0.7.6.tar.gz) = 25951e85bb2647960969f72c559392245a5bd07446a589390bf427dda31cdc4a -SIZE (rust/crates/rusttype-0.7.6.tar.gz) = 57965 -SHA256 (rust/crates/ryu-0.2.7.tar.gz) = eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7 -SIZE (rust/crates/ryu-0.2.7.tar.gz) = 41382 +SHA256 (rust/crates/rusttype-0.7.7.tar.gz) = 654103d61a05074b268a107cf6581ce120f0fc0115f2610ed9dfea363bb81139 +SIZE (rust/crates/rusttype-0.7.7.tar.gz) = 58703 +SHA256 (rust/crates/ryu-0.2.8.tar.gz) = b96a9549dc8d48f2c283938303c4b5a77aa29bfbc5b54b084fb1630408899a8f +SIZE (rust/crates/ryu-0.2.8.tar.gz) = 42798 SHA256 (rust/crates/same-file-1.0.4.tar.gz) = 8f20c4be53a8a1ff4c1f1b2bd14570d2f634628709752f0702ecdd2b3f9a5267 SIZE (rust/crates/same-file-1.0.4.tar.gz) = 8678 SHA256 (rust/crates/schannel-0.1.15.tar.gz) = f2f6abf258d99c3c1c5c2131d99d064e94b7b3dd5f416483057f308fea253339 @@ -439,66 +385,68 @@ SHA256 (rust/crates/scoped_threadpool-0.1.9.tar.gz) = SIZE (rust/crates/scoped_threadpool-0.1.9.tar.gz) = 7800 SHA256 (rust/crates/scopeguard-0.3.3.tar.gz) = 94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27 SIZE (rust/crates/scopeguard-0.3.3.tar.gz) = 9605 -SHA256 (rust/crates/security-framework-0.2.2.tar.gz) = bfab8dda0e7a327c696d893df9ffa19cadc4bd195797997f5223cf5831beaf05 -SIZE (rust/crates/security-framework-0.2.2.tar.gz) = 44080 -SHA256 (rust/crates/security-framework-sys-0.2.3.tar.gz) = 3d6696852716b589dff9e886ff83778bb635150168e83afa8ac6b8a78cb82abc -SIZE (rust/crates/security-framework-sys-0.2.3.tar.gz) = 9478 +SHA256 (rust/crates/security-framework-0.3.1.tar.gz) = eee63d0f4a9ec776eeb30e220f0bc1e092c3ad744b2a379e3993070364d3adc2 +SIZE (rust/crates/security-framework-0.3.1.tar.gz) = 46179 +SHA256 (rust/crates/security-framework-sys-0.3.1.tar.gz) = 9636f8989cbf61385ae4824b98c1aaa54c994d7d8b41f11c601ed799f0549a56 +SIZE (rust/crates/security-framework-sys-0.3.1.tar.gz) = 9283 SHA256 (rust/crates/semver-0.9.0.tar.gz) = 1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403 SIZE (rust/crates/semver-0.9.0.tar.gz) = 17344 SHA256 (rust/crates/semver-parser-0.7.0.tar.gz) = 388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3 SIZE (rust/crates/semver-parser-0.7.0.tar.gz) = 10268 -SHA256 (rust/crates/serde-1.0.90.tar.gz) = aa5f7c20820475babd2c077c3ab5f8c77a31c15e16ea38687b4c02d3e48680f4 -SIZE (rust/crates/serde-1.0.90.tar.gz) = 71415 -SHA256 (rust/crates/serde_derive-1.0.90.tar.gz) = 58fc82bec244f168b23d1963b45c8bf5726e9a15a9d146a067f9081aeed2de79 -SIZE (rust/crates/serde_derive-1.0.90.tar.gz) = 48815 +SHA256 (rust/crates/serde-1.0.92.tar.gz) = 32746bf0f26eab52f06af0d0aa1984f641341d06d8d673c693871da2d188c9be +SIZE (rust/crates/serde-1.0.92.tar.gz) = 71689 +SHA256 (rust/crates/serde_derive-1.0.92.tar.gz) = 46a3223d0c9ba936b61c0d2e3e559e3217dbfb8d65d06d26e8b3c25de38bae3e +SIZE (rust/crates/serde_derive-1.0.92.tar.gz) = 48814 SHA256 (rust/crates/serde_json-1.0.39.tar.gz) = 5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d SIZE (rust/crates/serde_json-1.0.39.tar.gz) = 69621 -SHA256 (rust/crates/serde_urlencoded-0.5.5.tar.gz) = 642dd69105886af2efd227f75a520ec9b44a820d65bc133a9131f7d229fd165a -SIZE (rust/crates/serde_urlencoded-0.5.5.tar.gz) = 12429 -SHA256 (rust/crates/serde_yaml-0.8.8.tar.gz) = 0887a8e097a69559b56aa2526bf7aff7c3048cf627dff781f0b56a6001534593 -SIZE (rust/crates/serde_yaml-0.8.8.tar.gz) = 35882 +SHA256 (rust/crates/serde_yaml-0.8.9.tar.gz) = 38b08a9a90e5260fe01c6480ec7c811606df6d3a660415808c3c3fa8ed95b582 +SIZE (rust/crates/serde_yaml-0.8.9.tar.gz) = 35344 SHA256 (rust/crates/servo-fontconfig-0.4.0.tar.gz) = a088f8d775a5c5314aae09bd77340bc9c67d72b9a45258be34c83548b4814cd9 SIZE (rust/crates/servo-fontconfig-0.4.0.tar.gz) = 9303 SHA256 (rust/crates/servo-fontconfig-sys-4.0.7.tar.gz) = b46d201addcfbd25c1798ad1281d98c40743824e0b0f1e611bd3d5d0d31a7b8d SIZE (rust/crates/servo-fontconfig-sys-4.0.7.tar.gz) = 1786797 SHA256 (rust/crates/shared_library-0.1.9.tar.gz) = 5a9e7e0f2bfae24d8a5b5a66c5b257a83c7412304311512a0c054cd5e619da11 SIZE (rust/crates/shared_library-0.1.9.tar.gz) = 10566 -SHA256 (rust/crates/signal-hook-0.1.8.tar.gz) = 97a47ae722318beceb0294e6f3d601205a1e6abaa4437d9d33e3a212233e3021 -SIZE (rust/crates/signal-hook-0.1.8.tar.gz) = 24492 +SHA256 (rust/crates/signal-hook-0.1.9.tar.gz) = 72ab58f1fda436857e6337dcb6a5aaa34f16c5ddc87b3a8b6ef7a212f90b9c5a +SIZE (rust/crates/signal-hook-0.1.9.tar.gz) = 20380 +SHA256 (rust/crates/signal-hook-registry-1.0.1.tar.gz) = cded4ffa32146722ec54ab1f16320568465aa922aa9ab4708129599740da85d7 +SIZE (rust/crates/signal-hook-registry-1.0.1.tar.gz) = 12520 SHA256 (rust/crates/siphasher-0.2.3.tar.gz) = 0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac SIZE (rust/crates/siphasher-0.2.3.tar.gz) = 8717 SHA256 (rust/crates/slab-0.4.2.tar.gz) = c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8 SIZE (rust/crates/slab-0.4.2.tar.gz) = 10136 -SHA256 (rust/crates/smallvec-0.6.9.tar.gz) = c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be -SIZE (rust/crates/smallvec-0.6.9.tar.gz) = 21548 -SHA256 (rust/crates/smithay-client-toolkit-0.4.5.tar.gz) = aa4899558362a65589b53313935099835acf999740915e134dff20cca7c6a28b -SIZE (rust/crates/smithay-client-toolkit-0.4.5.tar.gz) = 94096 -SHA256 (rust/crates/socket2-0.3.8.tar.gz) = c4d11a52082057d87cb5caa31ad812f4504b97ab44732cd8359df2e9ff9f48e7 -SIZE (rust/crates/socket2-0.3.8.tar.gz) = 30379 +SHA256 (rust/crates/smallvec-0.6.10.tar.gz) = ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7 +SIZE (rust/crates/smallvec-0.6.10.tar.gz) = 22064 +SHA256 (rust/crates/smithay-client-toolkit-0.4.6.tar.gz) = 2ccb8c57049b2a34d2cc2b203fa785020ba0129d31920ef0d317430adaf748fa +SIZE (rust/crates/smithay-client-toolkit-0.4.6.tar.gz) = 94029 +SHA256 (rust/crates/smithay-client-toolkit-0.6.2.tar.gz) = 697e927f0315b9505421098a08336a2d46d89d10134b1375b853c6a8ffa95a86 +SIZE (rust/crates/smithay-client-toolkit-0.6.2.tar.gz) = 94410 +SHA256 (rust/crates/smithay-clipboard-0.3.3.tar.gz) = d8e61f8a9ef7a15bd38c29b4a39d423776b2d6092723dc7df3f0545ce7a4751e +SIZE (rust/crates/smithay-clipboard-0.3.3.tar.gz) = 9429 +SHA256 (rust/crates/socket2-0.3.9.tar.gz) = 4e626972d3593207547f14bf5fc9efa4d0e7283deb73fef1dff313dae9ab8878 +SIZE (rust/crates/socket2-0.3.9.tar.gz) = 29791 SHA256 (rust/crates/spsc-buffer-0.1.1.tar.gz) = be6c3f39c37a4283ee4b43d1311c828f2e1fb0541e76ea0cb1a2abd9ef2f5b3b SIZE (rust/crates/spsc-buffer-0.1.1.tar.gz) = 3176 SHA256 (rust/crates/stable_deref_trait-1.1.1.tar.gz) = dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8 SIZE (rust/crates/stable_deref_trait-1.1.1.tar.gz) = 8007 -SHA256 (rust/crates/static_assertions-0.3.1.tar.gz) = 389ce475f424f267dbed6479cbd8f126c5e1afb053b0acdaa019c74305fc65d1 -SIZE (rust/crates/static_assertions-0.3.1.tar.gz) = 12599 +SHA256 (rust/crates/static_assertions-0.3.3.tar.gz) = b4f8de36da215253eb5f24020bfaa0646613b48bf7ebe36cdfa37c3b3b33b241 +SIZE (rust/crates/static_assertions-0.3.3.tar.gz) = 13897 SHA256 (rust/crates/stb_truetype-0.2.6.tar.gz) = 69b7df505db8e81d54ff8be4693421e5b543e08214bd8d99eb761fcb4d5668ba SIZE (rust/crates/stb_truetype-0.2.6.tar.gz) = 21093 -SHA256 (rust/crates/string-0.1.3.tar.gz) = b639411d0b9c738748b5397d5ceba08e648f4f1992231aa859af1a017f31f60b -SIZE (rust/crates/string-0.1.3.tar.gz) = 4143 SHA256 (rust/crates/strsim-0.8.0.tar.gz) = 8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a SIZE (rust/crates/strsim-0.8.0.tar.gz) = 9309 -SHA256 (rust/crates/syn-0.15.32.tar.gz) = 846620ec526c1599c070eff393bfeeeb88a93afa2513fc3b49f1fea84cf7b0ed -SIZE (rust/crates/syn-0.15.32.tar.gz) = 148009 -SHA256 (rust/crates/synstructure-0.10.1.tar.gz) = 73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015 -SIZE (rust/crates/synstructure-0.10.1.tar.gz) = 17836 -SHA256 (rust/crates/tempfile-3.0.7.tar.gz) = b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a -SIZE (rust/crates/tempfile-3.0.7.tar.gz) = 23922 -SHA256 (rust/crates/termcolor-1.0.4.tar.gz) = 4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f -SIZE (rust/crates/termcolor-1.0.4.tar.gz) = 14416 +SHA256 (rust/crates/syn-0.15.36.tar.gz) = 8b4f551a91e2e3848aeef8751d0d4eec9489b6474c720fd4c55958d8d31a430c +SIZE (rust/crates/syn-0.15.36.tar.gz) = 150279 +SHA256 (rust/crates/synstructure-0.10.2.tar.gz) = 02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f +SIZE (rust/crates/synstructure-0.10.2.tar.gz) = 17988 +SHA256 (rust/crates/tempfile-3.0.8.tar.gz) = 7dc4738f2e68ed2855de5ac9cdbe05c9216773ecde4739b2f095002ab03a13ef +SIZE (rust/crates/tempfile-3.0.8.tar.gz) = 24549 +SHA256 (rust/crates/termcolor-1.0.5.tar.gz) = 96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e +SIZE (rust/crates/termcolor-1.0.5.tar.gz) = 14526 SHA256 (rust/crates/terminfo-0.6.1.tar.gz) = 8e51065bafd2abe106b6036483b69d1741f4a1ec56ce8a2378de341637de689e SIZE (rust/crates/terminfo-0.6.1.tar.gz) = 44031 -SHA256 (rust/crates/termion-1.5.2.tar.gz) = dde0593aeb8d47accea5392b39350015b5eccb12c0d98044d856983d89548dea -SIZE (rust/crates/termion-1.5.2.tar.gz) = 22076 +SHA256 (rust/crates/termion-1.5.3.tar.gz) = 6a8fb22f7cde82c8220e5aeacb3258ed7ce996142c77cba193f203515e26c330 +SIZE (rust/crates/termion-1.5.3.tar.gz) = 22080 SHA256 (rust/crates/textwrap-0.11.0.tar.gz) = d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060 SIZE (rust/crates/textwrap-0.11.0.tar.gz) = 17322 SHA256 (rust/crates/thread_local-0.3.6.tar.gz) = c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b @@ -507,36 +455,10 @@ SHA256 (rust/crates/tiff-0.2.2.tar.gz) = 1e4834f28a033 SIZE (rust/crates/tiff-0.2.2.tar.gz) = 622226 SHA256 (rust/crates/time-0.1.42.tar.gz) = db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f SIZE (rust/crates/time-0.1.42.tar.gz) = 30005 -SHA256 (rust/crates/tokio-0.1.18.tar.gz) = 65641e515a437b308ab131a82ce3042ff9795bef5d6c5a9be4eb24195c417fd9 -SIZE (rust/crates/tokio-0.1.18.tar.gz) = 45700 -SHA256 (rust/crates/tokio-current-thread-0.1.6.tar.gz) = d16217cad7f1b840c5a97dfb3c43b0c871fef423a6e8d2118c604e843662a443 -SIZE (rust/crates/tokio-current-thread-0.1.6.tar.gz) = 19339 -SHA256 (rust/crates/tokio-executor-0.1.7.tar.gz) = 83ea44c6c0773cc034771693711c35c677b4b5a4b21b9e7071704c54de7d555e -SIZE (rust/crates/tokio-executor-0.1.7.tar.gz) = 11344 -SHA256 (rust/crates/tokio-io-0.1.12.tar.gz) = 5090db468dad16e1a7a54c8c67280c5e4b544f3d3e018f0b913b400261f85926 -SIZE (rust/crates/tokio-io-0.1.12.tar.gz) = 33555 -SHA256 (rust/crates/tokio-reactor-0.1.9.tar.gz) = 6af16bfac7e112bea8b0442542161bfc41cbfa4466b580bdda7d18cb88b911ce -SIZE (rust/crates/tokio-reactor-0.1.9.tar.gz) = 20657 -SHA256 (rust/crates/tokio-sync-0.1.4.tar.gz) = fda385df506bf7546e70872767f71e81640f1f251bdf2fd8eb81a0eaec5fe022 -SIZE (rust/crates/tokio-sync-0.1.4.tar.gz) = 39715 -SHA256 (rust/crates/tokio-tcp-0.1.3.tar.gz) = 1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119 -SIZE (rust/crates/tokio-tcp-0.1.3.tar.gz) = 12629 *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Mon Jun 17 06:44:25 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 37E5115AD9D2; Mon, 17 Jun 2019 06:44:25 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D048881DD2; Mon, 17 Jun 2019 06:44:24 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A49D322000; Mon, 17 Jun 2019 06:44:24 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H6iO8x024295; Mon, 17 Jun 2019 06:44:24 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H6iO8T024294; Mon, 17 Jun 2019 06:44:24 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906170644.x5H6iO8T024294@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Mon, 17 Jun 2019 06:44:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504394 - head/devel/pecl-uv X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/pecl-uv X-SVN-Commit-Revision: 504394 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D048881DD2 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 06:44:25 -0000 Author: joneum Date: Mon Jun 17 06:44:24 2019 New Revision: 504394 URL: https://svnweb.freebsd.org/changeset/ports/504394 Log: Update to 0.2.4 Changelog: - Fix Windows build - Fix PHP 7.4 build Sponsored by: Netzkommune GmbH Modified: head/devel/pecl-uv/Makefile head/devel/pecl-uv/distinfo Modified: head/devel/pecl-uv/Makefile ============================================================================== --- head/devel/pecl-uv/Makefile Mon Jun 17 06:39:39 2019 (r504393) +++ head/devel/pecl-uv/Makefile Mon Jun 17 06:44:24 2019 (r504394) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= uv -PORTVERSION= 0.2.2 +PORTVERSION= 0.2.4 CATEGORIES= devel MAINTAINER= joneum@FreeBSD.org Modified: head/devel/pecl-uv/distinfo ============================================================================== --- head/devel/pecl-uv/distinfo Mon Jun 17 06:39:39 2019 (r504393) +++ head/devel/pecl-uv/distinfo Mon Jun 17 06:44:24 2019 (r504394) @@ -1,3 +1,3 @@ -TIMESTAMP = 1499788665 -SHA256 (PECL/uv-0.2.2.tgz) = 7d3e826ad51ac4a4e44ae8cb5379d4726746664d23b81fd21ef3e700fc933f05 -SIZE (PECL/uv-0.2.2.tgz) = 53726 +TIMESTAMP = 1560753514 +SHA256 (PECL/uv-0.2.4.tgz) = 5ad5906c864ab2f9d856bc0920ca992531a9dd6c4c21189715ecf803821c31b2 +SIZE (PECL/uv-0.2.4.tgz) = 53786 From owner-svn-ports-all@freebsd.org Mon Jun 17 07:17:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B2F8215AF766; Mon, 17 Jun 2019 07:17:11 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5789D82E62; Mon, 17 Jun 2019 07:17:11 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2E71822505; Mon, 17 Jun 2019 07:17:11 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H7HBZv044009; Mon, 17 Jun 2019 07:17:11 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H7HBwK044008; Mon, 17 Jun 2019 07:17:11 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201906170717.x5H7HBwK044008@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Mon, 17 Jun 2019 07:17:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504395 - head/math/openlibm X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/math/openlibm X-SVN-Commit-Revision: 504395 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5789D82E62 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 07:17:11 -0000 Author: pkubaj Date: Mon Jun 17 07:17:10 2019 New Revision: 504395 URL: https://svnweb.freebsd.org/changeset/ports/504395 Log: math/openlibm: fix build with GCC-based architectures The port needs to respect CC and use a new compiler. PR: 238613 Approved by: iblis@hs.ntnu.edu.tw (maintainer), mat (mentor) Differential Revision: https://reviews.freebsd.org/D20670 Modified: head/math/openlibm/Makefile Modified: head/math/openlibm/Makefile ============================================================================== --- head/math/openlibm/Makefile Mon Jun 17 06:44:24 2019 (r504394) +++ head/math/openlibm/Makefile Mon Jun 17 07:17:10 2019 (r504395) @@ -17,9 +17,8 @@ BROKEN_armv6= fails to compile: a parameter list with BROKEN_armv7= fails to compile: a parameter list without types is only allowed in a function definition BROKEN_mips= fails to compile: No rule to make target mips/Make.files BROKEN_mips64= fails to compile: No rule to make target mips64/Make.files -BROKEN_powerpc64= fails to build: gmake: clang: Command not found -USES= gmake +USES= compiler:c11 gmake USE_GITHUB= yes GH_ACCOUNT= JuliaMath GH_PROJECT= openlibm @@ -28,8 +27,16 @@ USE_LDCONFIG= yes .include -MAKE_ENV+= prefix=${PREFIX} +MAKE_ENV+= prefix=${PREFIX} ${MAKE_ENV_${CHOSEN_COMPILER_TYPE}} +MAKE_ENV_gcc= USEGCC=1 USECLANG=0 +MAKE_ENV_clang= USEGCC=0 USECLANG=1 TEST_TARGET= check +post-patch: + ${REINPLACE_CMD} -e 's/USEGCC =/USEGCC ?=/g' \ + -e 's/USECLANG =/USECLANG ?=/g' \ + -e '/TOOLPREFIX)gcc/s/$$/${GCC_DEFAULT}/g' \ + ${WRKSRC}/Make.inc + .include From owner-svn-ports-all@freebsd.org Mon Jun 17 07:22:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 253BE15AF9DE; Mon, 17 Jun 2019 07:22:08 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BCE1483348; Mon, 17 Jun 2019 07:22:07 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9575F22683; Mon, 17 Jun 2019 07:22:07 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H7M7Z2049535; Mon, 17 Jun 2019 07:22:07 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H7M7Ze049344; Mon, 17 Jun 2019 07:22:07 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906170722.x5H7M7Ze049344@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Mon, 17 Jun 2019 07:22:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504396 - head/devel/pecl-vld X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/pecl-vld X-SVN-Commit-Revision: 504396 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BCE1483348 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 07:22:08 -0000 Author: joneum Date: Mon Jun 17 07:22:06 2019 New Revision: 504396 URL: https://svnweb.freebsd.org/changeset/ports/504396 Log: Update to 0.16.0 Changelog: - Preliminary PHP 7.4 support Sponsored by: Netzkommune GmbH Modified: head/devel/pecl-vld/Makefile head/devel/pecl-vld/distinfo Modified: head/devel/pecl-vld/Makefile ============================================================================== --- head/devel/pecl-vld/Makefile Mon Jun 17 07:17:10 2019 (r504395) +++ head/devel/pecl-vld/Makefile Mon Jun 17 07:22:06 2019 (r504396) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= vld -PORTVERSION= 0.15.0 +PORTVERSION= 0.16.0 CATEGORIES= devel pear MAINTAINER= joneum@FreeBSD.org Modified: head/devel/pecl-vld/distinfo ============================================================================== --- head/devel/pecl-vld/distinfo Mon Jun 17 07:17:10 2019 (r504395) +++ head/devel/pecl-vld/distinfo Mon Jun 17 07:22:06 2019 (r504396) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544460992 -SHA256 (PECL/vld-0.15.0.tgz) = a358f41d49ddfd24e10ea19045f832c7e8cbe0ad7519026d17d8fc18152e7284 -SIZE (PECL/vld-0.15.0.tgz) = 20127 +TIMESTAMP = 1560755883 +SHA256 (PECL/vld-0.16.0.tgz) = af70dd9e29b29ece04af288db30261e62f841d4278cae58fb56efcfb17ba1039 +SIZE (PECL/vld-0.16.0.tgz) = 20967 From owner-svn-ports-all@freebsd.org Mon Jun 17 07:33:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F70D15B00CB; Mon, 17 Jun 2019 07:33:42 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E2A95839C6; Mon, 17 Jun 2019 07:33:41 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B9EBF2284E; Mon, 17 Jun 2019 07:33:41 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H7XfJ3056292; Mon, 17 Jun 2019 07:33:41 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H7XedX056287; Mon, 17 Jun 2019 07:33:40 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906170733.x5H7XedX056287@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 17 Jun 2019 07:33:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504397 - in head/devel/frama-c: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/devel/frama-c: . files X-SVN-Commit-Revision: 504397 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E2A95839C6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 07:33:42 -0000 Author: danfe Date: Mon Jun 17 07:33:40 2019 New Revision: 504397 URL: https://svnweb.freebsd.org/changeset/ports/504397 Log: - Update to the next version (v15.x Phosphorus) which builds against both current and newish versions of OCaml - Disable E-ACSL plugin for now which fails to build bundled jemalloc - Drop useless DIST_SUBDIR, the distfile name is unique enough Modified: head/devel/frama-c/Makefile head/devel/frama-c/distinfo head/devel/frama-c/files/patch-Makefile head/devel/frama-c/pkg-plist Modified: head/devel/frama-c/Makefile ============================================================================== --- head/devel/frama-c/Makefile Mon Jun 17 07:22:06 2019 (r504396) +++ head/devel/frama-c/Makefile Mon Jun 17 07:33:40 2019 (r504397) @@ -2,11 +2,10 @@ # $FreeBSD$ PORTNAME= frama-c -DISTVERSIONPREFIX= Silicon- -DISTVERSION= 20161101 +DISTVERSIONPREFIX= Phosphorus- +DISTVERSION= 20170501 CATEGORIES= devel lang MASTER_SITES= http://frama-c.com/download/ -DIST_SUBDIR= framac-01 MAINTAINER= mmokhi@FreeBSD.org COMMENT= Extensible platform for source-code analysis of C @@ -27,7 +26,7 @@ USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 gtksource libartlgpl2 libgnomecanvas pango GNU_CONFIGURE= yes -CONFIGURE_ARGS+=--with-cpp="${FRAMAC_DEFAULT_CPP}" +CONFIGURE_ARGS= --with-cpp="${FRAMAC_DEFAULT_CPP}" --disable-e_acsl MAKE_ENV+= FRAMAC_LIBDIR="${FRAMAC_LIBDIR}" \ FRAMAC_DATADIR="${FRAMAC_DATADIR}" \ STAGEDIR="${STAGEDIR}" Modified: head/devel/frama-c/distinfo ============================================================================== --- head/devel/frama-c/distinfo Mon Jun 17 07:22:06 2019 (r504396) +++ head/devel/frama-c/distinfo Mon Jun 17 07:33:40 2019 (r504397) @@ -1,3 +1,3 @@ -TIMESTAMP = 1483395653 -SHA256 (framac-01/frama-c-Silicon-20161101.tar.gz) = b03918572f9a4dbf28b6234c8ece14cbe3a7587ef17add5225bd865f7d2100e3 -SIZE (framac-01/frama-c-Silicon-20161101.tar.gz) = 6689893 +TIMESTAMP = 1496311445 +SHA256 (frama-c-Phosphorus-20170501.tar.gz) = 614f384ea487206df2ba42ddf66de610cc45846bb7b7aeafcbc40e5d99626c99 +SIZE (frama-c-Phosphorus-20170501.tar.gz) = 7431131 Modified: head/devel/frama-c/files/patch-Makefile ============================================================================== --- head/devel/frama-c/files/patch-Makefile Mon Jun 17 07:22:06 2019 (r504396) +++ head/devel/frama-c/files/patch-Makefile Mon Jun 17 07:33:40 2019 (r504397) @@ -38,7 +38,7 @@ $(wildcard share/*.c share/*.h) \ share/Makefile.dynamic share/Makefile.plugin.template share/Makefile.kernel \ share/Makefile.config share/Makefile.common share/Makefile.generic \ - share/configure.ac \ + share/configure.ac share/autocomplete_frama-c \ - $(FRAMAC_DATADIR) - $(MKDIR) $(FRAMAC_DATADIR)/emacs - $(CP) $(wildcard share/emacs/*.el) $(FRAMAC_DATADIR)/emacs Modified: head/devel/frama-c/pkg-plist ============================================================================== --- head/devel/frama-c/pkg-plist Mon Jun 17 07:22:06 2019 (r504396) +++ head/devel/frama-c/pkg-plist Mon Jun 17 07:33:40 2019 (r504397) @@ -8,10 +8,6 @@ lib/frama-c/FCBuffer.cmi lib/frama-c/FCBuffer.cmo lib/frama-c/FCBuffer.cmx lib/frama-c/FCBuffer.o -lib/frama-c/FCDynlink.cmi -lib/frama-c/FCDynlink.cmo -lib/frama-c/FCDynlink.cmx -lib/frama-c/FCDynlink.o lib/frama-c/FCHashtbl.cmi lib/frama-c/FCHashtbl.cmo lib/frama-c/FCHashtbl.cmx @@ -150,6 +146,10 @@ lib/frama-c/cil_state_builder.cmo lib/frama-c/cil_state_builder.cmx lib/frama-c/cil_state_builder.o lib/frama-c/cil_types.cmi +lib/frama-c/cil_types_debug.cmi +lib/frama-c/cil_types_debug.cmo +lib/frama-c/cil_types_debug.cmx +lib/frama-c/cil_types_debug.o lib/frama-c/cilconfig.cmi lib/frama-c/cilconfig.cmo lib/frama-c/cilconfig.cmx @@ -222,6 +222,10 @@ lib/frama-c/design.cmi lib/frama-c/design.cmo lib/frama-c/design.cmx lib/frama-c/design.o +lib/frama-c/destructors.cmi +lib/frama-c/destructors.cmo +lib/frama-c/destructors.cmx +lib/frama-c/destructors.o lib/frama-c/dominators.cmi lib/frama-c/dominators.cmo lib/frama-c/dominators.cmx @@ -810,10 +814,6 @@ lib/frama-c/tr_offset.cmi lib/frama-c/tr_offset.cmo lib/frama-c/tr_offset.cmx lib/frama-c/tr_offset.o -lib/frama-c/trace.cmi -lib/frama-c/trace.cmo -lib/frama-c/trace.cmx -lib/frama-c/trace.o lib/frama-c/transitioning.cmi lib/frama-c/transitioning.cmo lib/frama-c/transitioning.cmx @@ -830,6 +830,10 @@ lib/frama-c/typed_parameter.cmi lib/frama-c/typed_parameter.cmo lib/frama-c/typed_parameter.cmx lib/frama-c/typed_parameter.o +lib/frama-c/undefined_sequence.cmi +lib/frama-c/undefined_sequence.cmo +lib/frama-c/undefined_sequence.cmx +lib/frama-c/undefined_sequence.o lib/frama-c/unicode.cmi lib/frama-c/unicode.cmo lib/frama-c/unicode.cmx @@ -838,10 +842,6 @@ lib/frama-c/unmarshal.cmi lib/frama-c/unmarshal.cmo lib/frama-c/unmarshal.cmx lib/frama-c/unmarshal.o -lib/frama-c/unmarshal_nums.cmi -lib/frama-c/unmarshal_nums.cmo -lib/frama-c/unmarshal_nums.cmx -lib/frama-c/unmarshal_nums.o lib/frama-c/unmarshal_z.cmi lib/frama-c/unmarshal_z.cmo lib/frama-c/unmarshal_z.cmx @@ -921,6 +921,7 @@ lib/frama-c/wutil.o %%DATADIR%%/Makefile.generic %%DATADIR%%/Makefile.kernel %%DATADIR%%/Makefile.plugin.template +%%DATADIR%%/autocomplete_frama-c %%DATADIR%%/builtin.h %%DATADIR%%/configure.ac %%DATADIR%%/doc/code/docgen.ml @@ -1019,6 +1020,7 @@ lib/frama-c/wutil.o %%DATADIR%%/libc/netinet/in_systm.h %%DATADIR%%/libc/netinet/ip.h %%DATADIR%%/libc/netinet/ip_icmp.h +%%DATADIR%%/libc/netinet/tcp.h %%DATADIR%%/libc/nl_types.h %%DATADIR%%/libc/pwd.h %%DATADIR%%/libc/regex.h From owner-svn-ports-all@freebsd.org Mon Jun 17 07:39:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2B50E15B02D0; Mon, 17 Jun 2019 07:39:33 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C154483B83; Mon, 17 Jun 2019 07:39:32 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9ADC522851; Mon, 17 Jun 2019 07:39:32 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H7dWMH057352; Mon, 17 Jun 2019 07:39:32 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H7dW1B057350; Mon, 17 Jun 2019 07:39:32 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906170739.x5H7dW1B057350@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Mon, 17 Jun 2019 07:39:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504398 - head/devel/phpunit7 X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/phpunit7 X-SVN-Commit-Revision: 504398 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C154483B83 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 07:39:33 -0000 Author: joneum Date: Mon Jun 17 07:39:31 2019 New Revision: 504398 URL: https://svnweb.freebsd.org/changeset/ports/504398 Log: Update to 7.5.12 Sponsored by: Netzkommune GmbH Modified: head/devel/phpunit7/Makefile head/devel/phpunit7/distinfo Modified: head/devel/phpunit7/Makefile ============================================================================== --- head/devel/phpunit7/Makefile Mon Jun 17 07:33:40 2019 (r504397) +++ head/devel/phpunit7/Makefile Mon Jun 17 07:39:31 2019 (r504398) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= phpunit -DISTVERSION= 7.5.11 +DISTVERSION= 7.5.12 CATEGORIES= devel www MASTER_SITES= https://phar.phpunit.de/ PKGNAMESUFFIX= 7${PHP_PKGNAMESUFFIX} Modified: head/devel/phpunit7/distinfo ============================================================================== --- head/devel/phpunit7/distinfo Mon Jun 17 07:33:40 2019 (r504397) +++ head/devel/phpunit7/distinfo Mon Jun 17 07:39:31 2019 (r504398) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557822229 -SHA256 (phpunit-7.5.11.phar) = 17550f7864c66bf4b703d13378da678ee8e2eef31b81f37f24da01de0634c1a6 -SIZE (phpunit-7.5.11.phar) = 2710294 +TIMESTAMP = 1560756901 +SHA256 (phpunit-7.5.12.phar) = 64d7ff4905b10dea9cef6d03826a6d5bc63e6bf460b92484205257530999ca83 +SIZE (phpunit-7.5.12.phar) = 2710765 From owner-svn-ports-all@freebsd.org Mon Jun 17 07:55:56 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B8B0015B0954; Mon, 17 Jun 2019 07:55:56 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4A1CC844C1; Mon, 17 Jun 2019 07:55:56 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2B1A322BAA; Mon, 17 Jun 2019 07:55:56 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H7ttr5070071; Mon, 17 Jun 2019 07:55:55 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H7ttfn070067; Mon, 17 Jun 2019 07:55:55 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906170755.x5H7ttfn070067@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 17 Jun 2019 07:55:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504399 - head/multimedia/gmp-api X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/gmp-api X-SVN-Commit-Revision: 504399 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4A1CC844C1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 07:55:57 -0000 Author: jbeich Date: Mon Jun 17 07:55:55 2019 New Revision: 504399 URL: https://svnweb.freebsd.org/changeset/ports/504399 Log: multimedia/gmp-api: update to 58 Changes: https://github.com/mozilla/gmp-api/compare/Firefox39...e393575 Modified: head/multimedia/gmp-api/Makefile (contents, props changed) head/multimedia/gmp-api/distinfo (contents, props changed) head/multimedia/gmp-api/pkg-plist (contents, props changed) Modified: head/multimedia/gmp-api/Makefile ============================================================================== --- head/multimedia/gmp-api/Makefile Mon Jun 17 07:39:31 2019 (r504398) +++ head/multimedia/gmp-api/Makefile Mon Jun 17 07:55:55 2019 (r504399) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= gmp-api -DISTVERSIONPREFIX= Firefox -DISTVERSION= 39 # tracking www/firefox +DISTVERSION= 58 # from config/milestone.txt of mozilla-central commit CATEGORIES= multimedia MAINTAINER= gecko@FreeBSD.org @@ -12,6 +11,7 @@ LICENSE= APACHE20 USE_GITHUB= yes GH_ACCOUNT= mozilla +GH_TAGNAME= e393575 NO_BUILD= yes NO_ARCH= yes Modified: head/multimedia/gmp-api/distinfo ============================================================================== --- head/multimedia/gmp-api/distinfo Mon Jun 17 07:39:31 2019 (r504398) +++ head/multimedia/gmp-api/distinfo Mon Jun 17 07:55:55 2019 (r504399) @@ -1,2 +1,3 @@ -SHA256 (mozilla-gmp-api-Firefox39_GH0.tar.gz) = ecb461af06f4d8f1c16330e78e73775f5656767ced77ac2b5e4bb9413ca86ec4 -SIZE (mozilla-gmp-api-Firefox39_GH0.tar.gz) = 16363 +TIMESTAMP = 1554062094 +SHA256 (mozilla-gmp-api-58-e393575_GH0.tar.gz) = dc1906854a24df5bacf8f7eae0a190d6ed7d1af2a3722a06bb2e4bcd037fa49a +SIZE (mozilla-gmp-api-58-e393575_GH0.tar.gz) = 10435 Modified: head/multimedia/gmp-api/pkg-plist ============================================================================== --- head/multimedia/gmp-api/pkg-plist Mon Jun 17 07:39:31 2019 (r504398) +++ head/multimedia/gmp-api/pkg-plist Mon Jun 17 07:55:55 2019 (r504399) @@ -1,9 +1,3 @@ -include/gmp-api/gmp-async-shutdown.h -include/gmp-api/gmp-audio-codec.h -include/gmp-api/gmp-audio-decode.h -include/gmp-api/gmp-audio-host.h -include/gmp-api/gmp-audio-samples.h -include/gmp-api/gmp-decryption.h include/gmp-api/gmp-entrypoints.h include/gmp-api/gmp-errors.h include/gmp-api/gmp-platform.h From owner-svn-ports-all@freebsd.org Mon Jun 17 07:56:09 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C7C8015B0990; Mon, 17 Jun 2019 07:56:09 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 620C38459E; Mon, 17 Jun 2019 07:56:09 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 36EBF22BAB; Mon, 17 Jun 2019 07:56:09 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H7u9te070492; Mon, 17 Jun 2019 07:56:09 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H7u6kI070471; Mon, 17 Jun 2019 07:56:06 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906170756.x5H7u6kI070471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 17 Jun 2019 07:56:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504400 - in head: devel/electron4 multimedia/ffmpeg multimedia/gstreamer1-plugins-bad/files multimedia/gstreamer1-plugins-openh264 multimedia/msopenh264 multimedia/msopenh264/files mul... X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: devel/electron4 multimedia/ffmpeg multimedia/gstreamer1-plugins-bad/files multimedia/gstreamer1-plugins-openh264 multimedia/msopenh264 multimedia/msopenh264/files multimedia/openh264 multimed... X-SVN-Commit-Revision: 504400 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 620C38459E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 07:56:10 -0000 Author: jbeich Date: Mon Jun 17 07:56:06 2019 New Revision: 504400 URL: https://svnweb.freebsd.org/changeset/ports/504400 Log: multimedia/openh264: update to 2.0.0 - Add symlinks for cliqz and thunderbird Changes: https://github.com/cisco/openh264/releases/tag/v2.0.0 ABI: https://abi-laboratory.pro/tracker/timeline/openh264/ Reported by: GitHub (watch releases) Added: head/multimedia/gstreamer1-plugins-bad/files/patch-ext_openh264_gstopenh264enc.cpp (contents, props changed) head/multimedia/msopenh264/files/ head/multimedia/msopenh264/files/patch-openh264-2.0 (contents, props changed) Deleted: head/multimedia/openh264/files/patch-clang Modified: head/devel/electron4/Makefile (contents, props changed) head/multimedia/ffmpeg/Makefile (contents, props changed) head/multimedia/gstreamer1-plugins-openh264/Makefile (contents, props changed) head/multimedia/msopenh264/Makefile (contents, props changed) head/multimedia/openh264/Makefile (contents, props changed) head/multimedia/openh264/distinfo (contents, props changed) head/multimedia/openh264/pkg-plist (contents, props changed) head/net/freerdp/Makefile (contents, props changed) head/net/pjsip/Makefile (contents, props changed) head/www/chromium/Makefile (contents, props changed) head/www/iridium/Makefile (contents, props changed) Modified: head/devel/electron4/Makefile ============================================================================== --- head/devel/electron4/Makefile Mon Jun 17 07:55:55 2019 (r504399) +++ head/devel/electron4/Makefile Mon Jun 17 07:56:06 2019 (r504400) @@ -3,6 +3,7 @@ PORTNAME= electron DISTVERSIONPREFIX= v DISTVERSION= ${ELECTRON_VER:S/-beta./.b/} +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://github.com/tagattie/FreeBSD-Electron/releases/download/v4.1.0/:chromium \ https://commondatastorage.googleapis.com/chromium-nodejs/:chromium_node \ Modified: head/multimedia/ffmpeg/Makefile ============================================================================== --- head/multimedia/ffmpeg/Makefile Mon Jun 17 07:55:55 2019 (r504399) +++ head/multimedia/ffmpeg/Makefile Mon Jun 17 07:56:06 2019 (r504400) @@ -3,7 +3,7 @@ PORTNAME= ffmpeg PORTVERSION= 4.1.3 -PORTREVISION= 11 +PORTREVISION= 12 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= https://ffmpeg.org/releases/ Added: head/multimedia/gstreamer1-plugins-bad/files/patch-ext_openh264_gstopenh264enc.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/gstreamer1-plugins-bad/files/patch-ext_openh264_gstopenh264enc.cpp Mon Jun 17 07:56:06 2019 (r504400) @@ -0,0 +1,17 @@ +https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/commit/d2f6facbfb89 + +gstopenh264enc.cpp:745:14: error: no member named 'bEnableSpsPpsIdAddition' in 'TagEncParamExt' + enc_params.bEnableSpsPpsIdAddition = 0; + ~~~~~~~~~~ ^ + +--- ext/openh264/gstopenh264enc.cpp.orig 2018-03-23 20:45:15 UTC ++++ ext/openh264/gstopenh264enc.cpp +@@ -739,7 +739,7 @@ gst_openh264enc_set_format (GstVideoEncoder * encoder, + enc_params.bEnableSceneChangeDetect = openh264enc->scene_change_detection; + enc_params.bEnableFrameSkip = openh264enc->enable_frame_skip; + enc_params.bEnableLongTermReference = 0; +-#if OPENH264_MINOR >= 4 ++#if (OPENH264_MAJOR > 1 || (OPENH264_MAJOR == 1 && OPENH264_MINOR >= 4)) + enc_params.eSpsPpsIdStrategy = CONSTANT_ID; + #else + enc_params.bEnableSpsPpsIdAddition = 0; Modified: head/multimedia/gstreamer1-plugins-openh264/Makefile ============================================================================== --- head/multimedia/gstreamer1-plugins-openh264/Makefile Mon Jun 17 07:55:55 2019 (r504399) +++ head/multimedia/gstreamer1-plugins-openh264/Makefile Mon Jun 17 07:56:06 2019 (r504400) @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= multimedia COMMENT= GStreamer (openh264) plugin Modified: head/multimedia/msopenh264/Makefile ============================================================================== --- head/multimedia/msopenh264/Makefile Mon Jun 17 07:55:55 2019 (r504399) +++ head/multimedia/msopenh264/Makefile Mon Jun 17 07:56:06 2019 (r504400) @@ -2,6 +2,7 @@ PORTNAME= msopenh264 PORTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= multimedia net MASTER_SITES= https://www.linphone.org/releases/sources/plugins/msopenh264/ Added: head/multimedia/msopenh264/files/patch-openh264-2.0 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/msopenh264/files/patch-openh264-2.0 Mon Jun 17 07:56:06 2019 (r504400) @@ -0,0 +1,35 @@ +src/msopenh264dec.cpp:67:11: error: no member named 'eOutputColorFormat' in 'TagSVCDecodingParam' + params.eOutputColorFormat = videoFormatI420; + ~~~~~~ ^ +src/msopenh264enc.cpp:134:29: error: no member named 'sSliceCfg' in 'SSpatialLayerConfig' + params.sSpatialLayers[0].sSliceCfg.uiSliceMode = SM_DYN_SLICE; + ~~~~~~~~~~~~~~~~~~~~~~~~ ^ +src/msopenh264enc.cpp:134:53: error: use of undeclared identifier 'SM_DYN_SLICE' + params.sSpatialLayers[0].sSliceCfg.uiSliceMode = SM_DYN_SLICE; + ^ +src/msopenh264enc.cpp:135:29: error: no member named 'sSliceCfg' in 'SSpatialLayerConfig' + params.sSpatialLayers[0].sSliceCfg.sSliceArgument.uiSliceSizeConstraint = ms_factory_get_payload_max_size(mFilter->factory); + ~~~~~~~~~~~~~~~~~~~~~~~~ ^ + +--- src/msopenh264dec.cpp.orig 2016-10-19 15:32:52 UTC ++++ src/msopenh264dec.cpp +@@ -62,7 +62,7 @@ void MSOpenH264Decoder::initialize() + mUnpacker=rfc3984_new(); + if (mDecoder != 0) { + SDecodingParam params = { 0 }; +-#if (OPENH264_MAJOR == 1) && (OPENH264_MINOR >=6) ++#if (OPENH264_MAJOR > 1) || ((OPENH264_MAJOR == 1) && (OPENH264_MINOR >=6)) + #else + params.eOutputColorFormat = videoFormatI420; + #endif +--- src/msopenh264enc.cpp.orig 2017-07-20 13:56:32 UTC ++++ src/msopenh264enc.cpp +@@ -127,7 +127,7 @@ void MSOpenH264Encoder::initialize() + params.sSpatialLayers[0].iSpatialBitrate = targetBitrate; + params.sSpatialLayers[0].iMaxSpatialBitrate = maxBitrate; + +-#if (OPENH264_MAJOR == 1) && (OPENH264_MINOR >=6) ++#if (OPENH264_MAJOR > 1) || ((OPENH264_MAJOR == 1) && (OPENH264_MINOR >=6)) + params.sSpatialLayers[0].sSliceArgument.uiSliceMode = SM_SIZELIMITED_SLICE; + params.sSpatialLayers[0].sSliceArgument.uiSliceSizeConstraint = ms_factory_get_payload_max_size(mFilter->factory); + #else Modified: head/multimedia/openh264/Makefile ============================================================================== --- head/multimedia/openh264/Makefile Mon Jun 17 07:55:55 2019 (r504399) +++ head/multimedia/openh264/Makefile Mon Jun 17 07:56:06 2019 (r504400) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME= openh264 -PORTVERSION= 1.8.0 DISTVERSIONPREFIX=v +DISTVERSION= 2.0.0 PORTEPOCH= 2 CATEGORIES= multimedia Modified: head/multimedia/openh264/distinfo ============================================================================== --- head/multimedia/openh264/distinfo Mon Jun 17 07:55:55 2019 (r504399) +++ head/multimedia/openh264/distinfo Mon Jun 17 07:56:06 2019 (r504400) @@ -1,3 +1,3 @@ -TIMESTAMP = 1530063403 -SHA256 (cisco-openh264-v1.8.0_GH0.tar.gz) = 08670017fd0bb36594f14197f60bebea27b895511251c7c64df6cd33fc667d34 -SIZE (cisco-openh264-v1.8.0_GH0.tar.gz) = 38695675 +TIMESTAMP = 1557299237 +SHA256 (cisco-openh264-v2.0.0_GH0.tar.gz) = 73c35f80cc487560d11ecabb6d31ad828bd2f59d412f9cd726cc26bfaf4561fd +SIZE (cisco-openh264-v2.0.0_GH0.tar.gz) = 60216105 Modified: head/multimedia/openh264/pkg-plist ============================================================================== --- head/multimedia/openh264/pkg-plist Mon Jun 17 07:55:55 2019 (r504399) +++ head/multimedia/openh264/pkg-plist Mon Jun 17 07:56:06 2019 (r504400) @@ -3,16 +3,20 @@ include/wels/codec_app_def.h include/wels/codec_def.h include/wels/codec_ver.h %%PLUGINS%%%%WEBPLUGIN_DIR%%/gmpopenh264.info +%%PLUGINS%%@rmtry lib/cliqz/defaults/pref/gmpopenh264.js %%PLUGINS%%@rmtry lib/firefox-nightly/defaults/pref/gmpopenh264.js %%PLUGINS%%@rmtry lib/firefox/defaults/pref/gmpopenh264.js %%PLUGINS%%@rmtry lib/seamonkey/defaults/pref/gmpopenh264.js +%%PLUGINS%%@rmtry lib/thunderbird/defaults/pref/gmpopenh264.js %%PLUGINS%%%%WEBPLUGIN_DIR%%/gmpopenh264.js +%%PLUGINS%%@postexec ln -sf %D/%F %D/lib/cliqz/defaults/pref/ 2>/dev/null || true %%PLUGINS%%@postexec ln -sf %D/%F %D/lib/firefox-nightly/defaults/pref/ 2>/dev/null || true %%PLUGINS%%@postexec ln -sf %D/%F %D/lib/firefox/defaults/pref/ 2>/dev/null || true %%PLUGINS%%@postexec ln -sf %D/%F %D/lib/seamonkey/defaults/pref/ 2>/dev/null || true +%%PLUGINS%%@postexec ln -sf %D/%F %D/lib/thunderbird/defaults/pref/ 2>/dev/null || true %%PLUGINS%%%%WEBPLUGIN_DIR%%/libgmpopenh264.so lib/libopenh264.a lib/libopenh264.so lib/libopenh264.so.%%PORTVERSION%% -lib/libopenh264.so.4 +lib/libopenh264.so.5 libdata/pkgconfig/openh264.pc Modified: head/net/freerdp/Makefile ============================================================================== --- head/net/freerdp/Makefile Mon Jun 17 07:55:55 2019 (r504399) +++ head/net/freerdp/Makefile Mon Jun 17 07:56:06 2019 (r504400) @@ -3,7 +3,7 @@ PORTNAME= freerdp DISTVERSION= 2.0.0-rc4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net comms ipv6 PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ Modified: head/net/pjsip/Makefile ============================================================================== --- head/net/pjsip/Makefile Mon Jun 17 07:55:55 2019 (r504399) +++ head/net/pjsip/Makefile Mon Jun 17 07:56:06 2019 (r504400) @@ -2,7 +2,7 @@ PORTNAME= pjsip PORTVERSION= 2.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://www.pjsip.org/release/${PORTVERSION}/ DISTNAME= pjproject-${DISTVERSION} Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Mon Jun 17 07:55:55 2019 (r504399) +++ head/www/chromium/Makefile Mon Jun 17 07:56:06 2019 (r504400) @@ -3,6 +3,7 @@ PORTNAME= chromium PORTVERSION= 75.0.3770.90 +PORTREVISION= 1 CATEGORIES?= www MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ \ LOCAL/cpm/chromium/:fonts Modified: head/www/iridium/Makefile ============================================================================== --- head/www/iridium/Makefile Mon Jun 17 07:55:55 2019 (r504399) +++ head/www/iridium/Makefile Mon Jun 17 07:56:06 2019 (r504400) @@ -3,7 +3,7 @@ PORTNAME= iridium PORTVERSION= 2018.5.67 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= www MASTER_SITES= https://downloads.iridiumbrowser.de/source/ PKGNAMESUFFIX= -browser From owner-svn-ports-all@freebsd.org Mon Jun 17 08:36:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D56215B1668; Mon, 17 Jun 2019 08:36:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B68FC857C6; Mon, 17 Jun 2019 08:36:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A2F8D23263; Mon, 17 Jun 2019 08:36:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H8aTH6096313; Mon, 17 Jun 2019 08:36:29 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H8aS6O096301; Mon, 17 Jun 2019 08:36:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906170836.x5H8aS6O096301@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 17 Jun 2019 08:36:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504401 - in head: audio/webrtc-audio-processing/files devel/android-tools-adb/files devel/android-tools-fastboot/files devel/android-tools-simpleperf/files multimedia/gmmlib/files mult... X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: audio/webrtc-audio-processing/files devel/android-tools-adb/files devel/android-tools-fastboot/files devel/android-tools-simpleperf/files multimedia/gmmlib/files multimedia/libva-intel-media-... X-SVN-Commit-Revision: 504401 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B68FC857C6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 08:36:30 -0000 Author: jbeich Date: Mon Jun 17 08:36:27 2019 New Revision: 504401 URL: https://svnweb.freebsd.org/changeset/ports/504401 Log: Switch DragonFly to pthread_getthreadid_np in my ports https://github.com/DragonFlyBSD/DragonFlyBSD/commit/c0f25c26521a Modified: head/audio/webrtc-audio-processing/files/patch-webrtc_base_platform__thread.cc (contents, props changed) head/devel/android-tools-adb/files/patch-base_logging.cpp (contents, props changed) head/devel/android-tools-adb/files/patch-libcutils_threads.cpp (contents, props changed) head/devel/android-tools-fastboot/files/patch-base_logging.cpp (contents, props changed) head/devel/android-tools-simpleperf/files/patch-base_logging.cpp (contents, props changed) head/multimedia/gmmlib/files/patch-thread-id (contents, props changed) head/multimedia/libva-intel-media-driver/files/patch-thread-id (contents, props changed) head/multimedia/libva/files/patch-va_va__trace.c (contents, props changed) Modified: head/audio/webrtc-audio-processing/files/patch-webrtc_base_platform__thread.cc ============================================================================== --- head/audio/webrtc-audio-processing/files/patch-webrtc_base_platform__thread.cc Mon Jun 17 07:56:06 2019 (r504400) +++ head/audio/webrtc-audio-processing/files/patch-webrtc_base_platform__thread.cc Mon Jun 17 08:36:27 2019 (r504401) @@ -16,13 +16,11 @@ namespace rtc { PlatformThreadId CurrentThreadId() { -@@ -32,9 +38,17 @@ PlatformThreadId CurrentThreadId() { +@@ -32,9 +38,15 @@ PlatformThreadId CurrentThreadId() { ret = syscall(__NR_gettid); #elif defined(WEBRTC_ANDROID) ret = gettid(); -+#elif defined(__DragonFly__) // WEBRTC_BSD -+ ret = lwp_gettid(); -+#elif defined(__FreeBSD__) // WEBRTC_BSD ++#elif defined(__DragonFly__) || defined(__FreeBSD__) // WEBRTC_BSD + ret = pthread_getthreadid_np(); +#elif defined(__NetBSD__) // WEBRTC_BSD + ret = _lwp_self(); Modified: head/devel/android-tools-adb/files/patch-base_logging.cpp ============================================================================== --- head/devel/android-tools-adb/files/patch-base_logging.cpp Mon Jun 17 07:56:06 2019 (r504400) +++ head/devel/android-tools-adb/files/patch-base_logging.cpp Mon Jun 17 08:36:27 2019 (r504401) @@ -18,13 +18,11 @@ #include #include #include -@@ -71,6 +72,14 @@ +@@ -71,6 +72,12 @@ #include #elif defined(_WIN32) #include -+#elif defined(__DragonFly__) -+#include -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) +#include +#elif defined(__NetBSD__) +#include @@ -33,13 +31,11 @@ #endif #if defined(_WIN32) -@@ -88,6 +97,14 @@ static thread_id GetThreadId() { +@@ -88,6 +97,12 @@ static thread_id GetThreadId() { return syscall(__NR_gettid); #elif defined(_WIN32) return GetCurrentThreadId(); -+#elif defined(__DragonFly__) -+ return lwp_gettid(); -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) + return pthread_getthreadid_np(); +#elif defined(__NetBSD__) + return _lwp_self(); Modified: head/devel/android-tools-adb/files/patch-libcutils_threads.cpp ============================================================================== --- head/devel/android-tools-adb/files/patch-libcutils_threads.cpp Mon Jun 17 07:56:06 2019 (r504400) +++ head/devel/android-tools-adb/files/patch-libcutils_threads.cpp Mon Jun 17 08:36:27 2019 (r504401) @@ -1,12 +1,10 @@ --- libcutils/threads.cpp.orig 2018-07-13 19:58:45 UTC +++ libcutils/threads.cpp -@@ -24,11 +24,19 @@ +@@ -24,11 +24,17 @@ #include #include #include -+#elif defined(__DragonFly__) -+#include -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) +#include +#elif defined(__NetBSD__) +#include @@ -20,13 +18,11 @@ #endif // No definition needed for Android because we'll just pick up bionic's copy. -@@ -38,10 +46,18 @@ pid_t gettid() { +@@ -38,10 +46,16 @@ pid_t gettid() { uint64_t tid; pthread_threadid_np(NULL, &tid); return tid; -+#elif defined(__DragonFly__) -+ return lwp_gettid(); -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) + return pthread_getthreadid_np(); +#elif defined(__NetBSD__) + return _lwp_self(); Modified: head/devel/android-tools-fastboot/files/patch-base_logging.cpp ============================================================================== --- head/devel/android-tools-fastboot/files/patch-base_logging.cpp Mon Jun 17 07:56:06 2019 (r504400) +++ head/devel/android-tools-fastboot/files/patch-base_logging.cpp Mon Jun 17 08:36:27 2019 (r504401) @@ -18,13 +18,11 @@ #include #include #include -@@ -71,6 +72,14 @@ +@@ -71,6 +72,12 @@ #include #elif defined(_WIN32) #include -+#elif defined(__DragonFly__) -+#include -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) +#include +#elif defined(__NetBSD__) +#include @@ -33,13 +31,11 @@ #endif #if defined(_WIN32) -@@ -88,6 +97,14 @@ static thread_id GetThreadId() { +@@ -88,6 +97,12 @@ static thread_id GetThreadId() { return syscall(__NR_gettid); #elif defined(_WIN32) return GetCurrentThreadId(); -+#elif defined(__DragonFly__) -+ return lwp_gettid(); -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) + return pthread_getthreadid_np(); +#elif defined(__NetBSD__) + return _lwp_self(); Modified: head/devel/android-tools-simpleperf/files/patch-base_logging.cpp ============================================================================== --- head/devel/android-tools-simpleperf/files/patch-base_logging.cpp Mon Jun 17 07:56:06 2019 (r504400) +++ head/devel/android-tools-simpleperf/files/patch-base_logging.cpp Mon Jun 17 08:36:27 2019 (r504401) @@ -18,13 +18,11 @@ #include #include #include -@@ -71,6 +72,14 @@ +@@ -71,6 +72,12 @@ #include #elif defined(_WIN32) #include -+#elif defined(__DragonFly__) -+#include -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) +#include +#elif defined(__NetBSD__) +#include @@ -33,15 +31,13 @@ #endif #if defined(_WIN32) -@@ -88,6 +97,14 @@ static thread_id GetThreadId() { +@@ -88,6 +97,12 @@ static thread_id GetThreadId() { return syscall(__NR_gettid); #elif defined(_WIN32) return GetCurrentThreadId(); -+#elif defined(__DragonFly__) -+ return lwp_gettid(); +#elif defined(__NetBSD__) + return _lwp_self(); -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) + return pthread_getthreadid_np(); +#else + return (intptr_t) pthread_self(); Modified: head/multimedia/gmmlib/files/patch-thread-id ============================================================================== --- head/multimedia/gmmlib/files/patch-thread-id Mon Jun 17 07:56:06 2019 (r504400) +++ head/multimedia/gmmlib/files/patch-thread-id Mon Jun 17 08:36:27 2019 (r504401) @@ -2,16 +2,14 @@ Add more BSDs and update to modern way to get thread I --- Source/GmmLib/Utility/GmmLog/spdlog/details/os.h.orig 2018-09-28 18:59:39 UTC +++ Source/GmmLib/Utility/GmmLog/spdlog/details/os.h -@@ -39,9 +39,15 @@ +@@ -39,9 +39,13 @@ #include #include -#elif __FreeBSD__ -#include //Use thr_self() syscall under FreeBSD to get thread id -+#elif defined(__DragonFly__) -+#include // for lwp_gettid -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) +#include // for pthread_getthreadid_np + +#elif defined(__NetBSD__) @@ -20,7 +18,7 @@ Add more BSDs and update to modern way to get thread I #else #include -@@ -302,10 +308,12 @@ inline size_t thread_id() +@@ -302,10 +308,10 @@ inline size_t thread_id() # define SYS_gettid __NR_gettid # endif return static_cast(syscall(SYS_gettid)); @@ -28,9 +26,7 @@ Add more BSDs and update to modern way to get thread I - long tid; - thr_self(&tid); - return static_cast(tid); -+#elif defined(__DragonFly__) -+ return static_cast(lwp_gettid()); -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) + return static_cast(pthread_getthreadid_np()); +#elif defined(__NetBSD__) + return static_cast(_lwp_self()); Modified: head/multimedia/libva-intel-media-driver/files/patch-thread-id ============================================================================== --- head/multimedia/libva-intel-media-driver/files/patch-thread-id Mon Jun 17 07:56:06 2019 (r504400) +++ head/multimedia/libva-intel-media-driver/files/patch-thread-id Mon Jun 17 08:36:27 2019 (r504401) @@ -22,7 +22,7 @@ media_driver/linux/common/cm/cm_innerdef_os.h:98:37: n +#if defined(__linux__) #include #include -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) +#include +#elif defined(__NetBSD__) +#include @@ -32,15 +32,13 @@ media_driver/linux/common/cm/cm_innerdef_os.h:98:37: n #include //Require DRM VMAP patch, -@@ -95,5 +103,15 @@ inline void GetLocalTime(PSYSTEMTIME psystime) +@@ -95,5 +103,13 @@ inline void GetLocalTime(PSYSTEMTIME psystime) #endif #define CmGetCurProcessId() getpid() +#if defined(__linux__) #define CmGetCurThreadId() syscall(SYS_gettid) -+#elif defined(__DragonFly__) -+#define CmGetCurThreadId() lwp_gettid() -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) +#define CmGetCurThreadId() pthread_getthreadid_np() +#elif defined(__NetBSD__) +#define CmGetCurThreadId() _lwp_self() Modified: head/multimedia/libva/files/patch-va_va__trace.c ============================================================================== --- head/multimedia/libva/files/patch-va_va__trace.c Mon Jun 17 07:56:06 2019 (r504400) +++ head/multimedia/libva/files/patch-va_va__trace.c Mon Jun 17 08:36:27 2019 (r504401) @@ -2,7 +2,7 @@ --- va/va_trace.c.orig 2018-02-12 06:32:11 UTC +++ va/va_trace.c -@@ -48,12 +48,40 @@ +@@ -48,12 +48,36 @@ #include #include #include @@ -14,9 +14,7 @@ +#if defined(__linux__) +#include -+#elif defined(__DragonFly__) -+#include -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) +#include +#elif defined(__NetBSD__) +#include @@ -29,9 +27,7 @@ +{ +#if defined(__linux__) + return syscall(__NR_gettid); -+#elif defined(__DragonFly__) -+ return lwp_gettid(); -+#elif defined(__FreeBSD__) ++#elif defined(__DragonFly__) || defined(__FreeBSD__) + return pthread_getthreadid_np(); +#elif defined(__NetBSD__) + return _lwp_self(); From owner-svn-ports-all@freebsd.org Mon Jun 17 09:01:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 198AF15B2345; Mon, 17 Jun 2019 09:01:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B33A8864D8; Mon, 17 Jun 2019 09:01:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8F61023729; Mon, 17 Jun 2019 09:01:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H91wwU012637; Mon, 17 Jun 2019 09:01:58 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H91waO012636; Mon, 17 Jun 2019 09:01:58 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906170901.x5H91waO012636@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 17 Jun 2019 09:01:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504402 - head/mail/openemm2013 X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/mail/openemm2013 X-SVN-Commit-Revision: 504402 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B33A8864D8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 09:01:59 -0000 Author: amdmi3 Date: Mon Jun 17 09:01:58 2019 New Revision: 504402 URL: https://svnweb.freebsd.org/changeset/ports/504402 Log: - Update WWW Approved by: portmgr blanket Modified: head/mail/openemm2013/pkg-descr Modified: head/mail/openemm2013/pkg-descr ============================================================================== --- head/mail/openemm2013/pkg-descr Mon Jun 17 08:36:27 2019 (r504401) +++ head/mail/openemm2013/pkg-descr Mon Jun 17 09:01:58 2019 (r504402) @@ -16,4 +16,4 @@ OpenEMM offers already more than 95% of the functional commercial products and some features most commercial products do not offer right now (for example MySQL support and CMS functionality). -WWW: http://www.openemm.org +WWW: https://www.agnitas.de/en/e-marketing_manager/email-marketing-software-variants/openemm/ From owner-svn-ports-all@freebsd.org Mon Jun 17 09:04:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71E8D15B23CD; Mon, 17 Jun 2019 09:04:33 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0FC3186650; Mon, 17 Jun 2019 09:04:33 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D4B7C23759; Mon, 17 Jun 2019 09:04:32 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H94W2J015732; Mon, 17 Jun 2019 09:04:32 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H94VbN015722; Mon, 17 Jun 2019 09:04:31 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201906170904.x5H94VbN015722@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 17 Jun 2019 09:04:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504403 - in head: net-mgmt/super_mediator net-mgmt/yaf net/libfixbuf X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: in head: net-mgmt/super_mediator net-mgmt/yaf net/libfixbuf X-SVN-Commit-Revision: 504403 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0FC3186650 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 09:04:33 -0000 Author: antoine Date: Mon Jun 17 09:04:30 2019 New Revision: 504403 URL: https://svnweb.freebsd.org/changeset/ports/504403 Log: Update net/libfixbuf to 2.3.1 and net-mgmt/yaf 2.11.0 PR: 238208 Approved by: maintainers timeout (20 days) Modified: head/net-mgmt/super_mediator/Makefile head/net-mgmt/yaf/Makefile head/net-mgmt/yaf/distinfo head/net-mgmt/yaf/pkg-plist head/net/libfixbuf/Makefile head/net/libfixbuf/distinfo head/net/libfixbuf/pkg-plist Modified: head/net-mgmt/super_mediator/Makefile ============================================================================== --- head/net-mgmt/super_mediator/Makefile Mon Jun 17 09:01:58 2019 (r504402) +++ head/net-mgmt/super_mediator/Makefile Mon Jun 17 09:04:30 2019 (r504403) @@ -3,6 +3,7 @@ PORTNAME= super_mediator PORTVERSION= 1.6.0 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= http://tools.netsa.cert.org/releases/ Modified: head/net-mgmt/yaf/Makefile ============================================================================== --- head/net-mgmt/yaf/Makefile Mon Jun 17 09:01:58 2019 (r504402) +++ head/net-mgmt/yaf/Makefile Mon Jun 17 09:04:30 2019 (r504403) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= yaf -PORTVERSION= 2.10.0 +PORTVERSION= 2.11.0 CATEGORIES= net-mgmt MASTER_SITES= http://tools.netsa.cert.org/releases/ @@ -19,7 +19,7 @@ LIB_DEPENDS= libfixbuf.so:net/libfixbuf \ GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -USES= libtool pathfix perl5 pkgconfig +USES= gnome libtool pathfix perl5 pkgconfig USE_GNOME= glib20 USE_LDCONFIG= yes CONFIGURE_ARGS= --sysconfdir="${ETCDIR}" Modified: head/net-mgmt/yaf/distinfo ============================================================================== --- head/net-mgmt/yaf/distinfo Mon Jun 17 09:01:58 2019 (r504402) +++ head/net-mgmt/yaf/distinfo Mon Jun 17 09:04:30 2019 (r504403) @@ -1,3 +1,3 @@ -TIMESTAMP = 1534693349 -SHA256 (yaf-2.10.0.tar.gz) = ed13a5d9f4cbbe6e82e2ee894cf3c324b2bb209df7eb95f2be10619bbf13d805 -SIZE (yaf-2.10.0.tar.gz) = 2138460 +TIMESTAMP = 1559120538 +SHA256 (yaf-2.11.0.tar.gz) = 5e2523eeeaa5ac7e08f73b38c599f321ba93f239011efec9c39cfcbc30489dca +SIZE (yaf-2.11.0.tar.gz) = 2132776 Modified: head/net-mgmt/yaf/pkg-plist ============================================================================== --- head/net-mgmt/yaf/pkg-plist Mon Jun 17 09:01:58 2019 (r504402) +++ head/net-mgmt/yaf/pkg-plist Mon Jun 17 09:04:30 2019 (r504403) @@ -1,7 +1,6 @@ bin/airdaemon bin/filedaemon bin/getFlowKeyHash -bin/ipfixDump bin/yaf bin/yafMeta2Pcap bin/yafcollect @@ -174,7 +173,6 @@ man/man1/airdaemon.1.gz man/man1/applabel.1.gz man/man1/filedaemon.1.gz man/man1/getFlowKeyHash.1.gz -man/man1/ipfixDump.1.gz man/man1/yaf.1.gz man/man1/yafMeta2Pcap.1.gz man/man1/yafdhcp.1.gz Modified: head/net/libfixbuf/Makefile ============================================================================== --- head/net/libfixbuf/Makefile Mon Jun 17 09:01:58 2019 (r504402) +++ head/net/libfixbuf/Makefile Mon Jun 17 09:04:30 2019 (r504403) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= libfixbuf -PORTVERSION= 2.1.0 +PORTVERSION= 2.3.1 CATEGORIES= net MASTER_SITES= http://tools.netsa.cert.org/releases/ @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -USES= libtool pathfix perl5 pkgconfig +USES= gnome libtool pathfix perl5 pkgconfig USE_GNOME= glib20 USE_PERL5= build USE_LDCONFIG= yes Modified: head/net/libfixbuf/distinfo ============================================================================== --- head/net/libfixbuf/distinfo Mon Jun 17 09:01:58 2019 (r504402) +++ head/net/libfixbuf/distinfo Mon Jun 17 09:04:30 2019 (r504403) @@ -1,3 +1,3 @@ -TIMESTAMP = 1533264508 -SHA256 (libfixbuf-2.1.0.tar.gz) = d3a0ddf3f693e9421efaa8029c8ff1f78c81c39e77661dc40a05b3515d086fe7 -SIZE (libfixbuf-2.1.0.tar.gz) = 925899 +TIMESTAMP = 1559119803 +SHA256 (libfixbuf-2.3.1.tar.gz) = 2ba7877c5b09c120a20eb320d5d9e2ac93520c8308624eac3064aaece239bad3 +SIZE (libfixbuf-2.3.1.tar.gz) = 992880 Modified: head/net/libfixbuf/pkg-plist ============================================================================== --- head/net/libfixbuf/pkg-plist Mon Jun 17 09:01:58 2019 (r504402) +++ head/net/libfixbuf/pkg-plist Mon Jun 17 09:04:30 2019 (r504403) @@ -1,9 +1,12 @@ +bin/ipfixDump include/fixbuf/autoinc.h include/fixbuf/private.h include/fixbuf/public.h include/fixbuf/version.h lib/libfixbuf.a lib/libfixbuf.so -lib/libfixbuf.so.6 -lib/libfixbuf.so.6.1.0 +lib/libfixbuf.so.9 +lib/libfixbuf.so.9.0.1 libdata/pkgconfig/libfixbuf.pc +man/man1/ipfixDump.1.gz +%%DATADIR%%/cert_ipfix.xml From owner-svn-ports-all@freebsd.org Mon Jun 17 09:08:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FBBA15B2429; Mon, 17 Jun 2019 09:08:23 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0B6C88677F; Mon, 17 Jun 2019 09:08:23 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D91902375D; Mon, 17 Jun 2019 09:08:22 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H98M8R016475; Mon, 17 Jun 2019 09:08:22 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H98Mn2016471; Mon, 17 Jun 2019 09:08:22 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201906170908.x5H98Mn2016471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Mon, 17 Jun 2019 09:08:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504404 - head/security/silktools X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/security/silktools X-SVN-Commit-Revision: 504404 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0B6C88677F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 09:08:23 -0000 Author: antoine Date: Mon Jun 17 09:08:21 2019 New Revision: 504404 URL: https://svnweb.freebsd.org/changeset/ports/504404 Log: Update to 3.18.2 Modified: head/security/silktools/Makefile head/security/silktools/distinfo head/security/silktools/pkg-plist Modified: head/security/silktools/Makefile ============================================================================== --- head/security/silktools/Makefile Mon Jun 17 09:04:30 2019 (r504403) +++ head/security/silktools/Makefile Mon Jun 17 09:08:21 2019 (r504404) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= silktools -PORTVERSION= 3.18.1 +PORTVERSION= 3.18.2 CATEGORIES= security net MASTER_SITES= http://tools.netsa.cert.org/releases/ DISTNAME= silk-${PORTVERSION} Modified: head/security/silktools/distinfo ============================================================================== --- head/security/silktools/distinfo Mon Jun 17 09:04:30 2019 (r504403) +++ head/security/silktools/distinfo Mon Jun 17 09:08:21 2019 (r504404) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553842660 -SHA256 (silk-3.18.1.tar.gz) = 0900a5a0d08c786be280d97e5bb6d9ec09e8aec69f4495a91b32e254014ef8e9 -SIZE (silk-3.18.1.tar.gz) = 5585471 +TIMESTAMP = 1559120403 +SHA256 (silk-3.18.2.tar.gz) = 855ce1ce862fc2cb7146a04cbe60ba2584ff7df176e07494a2f14d26976b4c2b +SIZE (silk-3.18.2.tar.gz) = 5593119 Modified: head/security/silktools/pkg-plist ============================================================================== --- head/security/silktools/pkg-plist Mon Jun 17 09:04:30 2019 (r504403) +++ head/security/silktools/pkg-plist Mon Jun 17 09:08:21 2019 (r504404) @@ -99,7 +99,7 @@ include/silk/utils.h %%STATIC%%lib/libflowsource.a lib/libflowsource.so lib/libflowsource.so.17 -lib/libflowsource.so.17.1.2 +lib/libflowsource.so.17.1.3 %%STATIC%%lib/libsilk-thrd.a lib/libsilk-thrd.so lib/libsilk-thrd.so.5 From owner-svn-ports-all@freebsd.org Mon Jun 17 09:58:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5CFAB15B3210; Mon, 17 Jun 2019 09:58:43 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C2A8C87EB7; Mon, 17 Jun 2019 09:58:42 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 986FB23FB4; Mon, 17 Jun 2019 09:58:42 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5H9wg8x048446; Mon, 17 Jun 2019 09:58:42 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5H9wgtq048445; Mon, 17 Jun 2019 09:58:42 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906170958.x5H9wgtq048445@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 17 Jun 2019 09:58:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504405 - head/devel/ocaml-dune X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/devel/ocaml-dune X-SVN-Commit-Revision: 504405 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C2A8C87EB7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 09:58:43 -0000 Author: danfe Date: Mon Jun 17 09:58:42 2019 New Revision: 504405 URL: https://svnweb.freebsd.org/changeset/ports/504405 Log: - Pass down relative ${OCAML_SITELIBDIR}, it is handled correctly - Respect our ${OCAML_DOCSDIR}, in a somewhat hacking way for now Modified: head/devel/ocaml-dune/Makefile Modified: head/devel/ocaml-dune/Makefile ============================================================================== --- head/devel/ocaml-dune/Makefile Mon Jun 17 09:08:21 2019 (r504404) +++ head/devel/ocaml-dune/Makefile Mon Jun 17 09:58:42 2019 (r504405) @@ -3,7 +3,7 @@ PORTNAME= dune PORTVERSION= 1.10.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= ocaml- @@ -19,14 +19,17 @@ USE_OCAML= yes USE_OCAML_FINDLIB= yes ALL_TARGET= release -MAKE_ENV= LIBDIR="${OCAMLFIND_DESTDIR}" +MAKE_ENV= LIBDIR="${OCAML_SITELIBDIR}" +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} PORTDOCS= CHANGES.md LICENSE.md README.md OPTIONS_DEFINE= DOCS -post-install: - @${MV} ${STAGEDIR}${PREFIX}/doc/dune ${STAGEDIR}${DOCSDIR} - @${RMDIR} ${STAGEDIR}${PREFIX}/doc +post-patch: +# FreeBSD-specific hack, do not nag upstream (for now) + @${REINPLACE_CMD} -e '/let doc_root/ \ + s:"doc:"${OCAML_DOCSDIR:S,^${PREFIX}/,,}:' \ + ${WRKSRC}/src/install.ml .include From owner-svn-ports-all@freebsd.org Mon Jun 17 10:01:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9C75215B33FD; Mon, 17 Jun 2019 10:01:05 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 66C168813B; Mon, 17 Jun 2019 10:01:05 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 434AD240E2; Mon, 17 Jun 2019 10:01:05 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HA15UR049716; Mon, 17 Jun 2019 10:01:05 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HA14D2049713; Mon, 17 Jun 2019 10:01:04 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906171001.x5HA14D2049713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Mon, 17 Jun 2019 10:01:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504406 - head/devel/phpunit8 X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/phpunit8 X-SVN-Commit-Revision: 504406 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 66C168813B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.94)[-0.943,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 10:01:05 -0000 Author: joneum Date: Mon Jun 17 10:01:04 2019 New Revision: 504406 URL: https://svnweb.freebsd.org/changeset/ports/504406 Log: Update to 8.2.2 Sponsored by: Netzkommune GmbH Modified: head/devel/phpunit8/Makefile head/devel/phpunit8/distinfo Modified: head/devel/phpunit8/Makefile ============================================================================== --- head/devel/phpunit8/Makefile Mon Jun 17 09:58:42 2019 (r504405) +++ head/devel/phpunit8/Makefile Mon Jun 17 10:01:04 2019 (r504406) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= phpunit -DISTVERSION= 8.1.5 +DISTVERSION= 8.2.2 CATEGORIES= devel www MASTER_SITES= https://phar.phpunit.de/ PKGNAMESUFFIX= 8${PHP_PKGNAMESUFFIX} Modified: head/devel/phpunit8/distinfo ============================================================================== --- head/devel/phpunit8/distinfo Mon Jun 17 09:58:42 2019 (r504405) +++ head/devel/phpunit8/distinfo Mon Jun 17 10:01:04 2019 (r504406) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557822255 -SHA256 (phpunit-8.1.5.phar) = cb749965b5abc29819d54fb2e056f30320d63827217538f2756b9d773afdce0f -SIZE (phpunit-8.1.5.phar) = 2803189 +TIMESTAMP = 1560765160 +SHA256 (phpunit-8.2.2.phar) = ad18642ebf5e230da790e4f53b3ed7d226834bb22c8a6e0fc273f59bb7ba521f +SIZE (phpunit-8.2.2.phar) = 2839982 From owner-svn-ports-all@freebsd.org Mon Jun 17 10:28:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83F2315B3D4D; Mon, 17 Jun 2019 10:28:57 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 27AA489327; Mon, 17 Jun 2019 10:28:57 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 005A8244CF; Mon, 17 Jun 2019 10:28:57 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HASucu067963; Mon, 17 Jun 2019 10:28:56 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HASuFf067959; Mon, 17 Jun 2019 10:28:56 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906171028.x5HASuFf067959@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 17 Jun 2019 10:28:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504407 - head/lang/opencoarrays X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/lang/opencoarrays X-SVN-Commit-Revision: 504407 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 27AA489327 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.945,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 10:28:57 -0000 Author: tobik Date: Mon Jun 17 10:28:56 2019 New Revision: 504407 URL: https://svnweb.freebsd.org/changeset/ports/504407 Log: lang/opencoarrays: Update to 2.7.1 - This also fixes the build with GCC 9 [1]. - Drop GCC 5 clause. According to INSTALL GFortran >= 6.1 is required to build it. Changes: https://github.com/sourceryinstitute/OpenCoarrays/releases PR: 238330 [1] Modified: head/lang/opencoarrays/Makefile head/lang/opencoarrays/distinfo head/lang/opencoarrays/pkg-plist Modified: head/lang/opencoarrays/Makefile ============================================================================== --- head/lang/opencoarrays/Makefile Mon Jun 17 10:01:04 2019 (r504406) +++ head/lang/opencoarrays/Makefile Mon Jun 17 10:28:56 2019 (r504407) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= opencoarrays -DISTVERSION= 2.6.1 -PORTREVISION= 1 +DISTVERSION= 2.7.1 CATEGORIES= lang parallel MAINTAINER= ports@FreeBSD.org @@ -52,10 +51,8 @@ PLIST_SUB+= SOVERSION=3 PLIST_SUB+= SOVERSION=2 .elif ${GCC_DEFAULT} == 6 PLIST_SUB+= SOVERSION=1 -.elif ${GCC_DEFAULT} == 5 -PLIST_SUB+= SOVERSION=0 .else -IGNORE= requires GCC 5 or higher +IGNORE= requires GCC 6 or higher .endif post-patch: Modified: head/lang/opencoarrays/distinfo ============================================================================== --- head/lang/opencoarrays/distinfo Mon Jun 17 10:01:04 2019 (r504406) +++ head/lang/opencoarrays/distinfo Mon Jun 17 10:28:56 2019 (r504407) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554794868 -SHA256 (sourceryinstitute-OpenCoarrays-2.6.1_GH0.tar.gz) = 6f308b5d4784fc3d3209b319900500dae8158a05931890f6aa11909fe4a95616 -SIZE (sourceryinstitute-OpenCoarrays-2.6.1_GH0.tar.gz) = 317793 +TIMESTAMP = 1560758220 +SHA256 (sourceryinstitute-OpenCoarrays-2.7.1_GH0.tar.gz) = 59b3e153cb56e6beaea72a1a4a621e9d383b4c2d789ce6ace52c35e0c58390f7 +SIZE (sourceryinstitute-OpenCoarrays-2.7.1_GH0.tar.gz) = 321295 Modified: head/lang/opencoarrays/pkg-plist ============================================================================== --- head/lang/opencoarrays/pkg-plist Mon Jun 17 10:01:04 2019 (r504406) +++ head/lang/opencoarrays/pkg-plist Mon Jun 17 10:28:56 2019 (r504407) @@ -15,4 +15,4 @@ lib/libcaf_mpi.so.%%SOVERSION%% lib/libopencoarrays_mod.a man/man1/caf.1.gz man/man1/cafrun.1.gz -@dir %%DATADIR%% +%%DATADIR%%/install_manifest.SHA256.txt From owner-svn-ports-all@freebsd.org Mon Jun 17 10:45:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4308B15B4687; Mon, 17 Jun 2019 10:45:24 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DAF1F8A0D2; Mon, 17 Jun 2019 10:45:23 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A810B24850; Mon, 17 Jun 2019 10:45:23 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HAjNbC079935; Mon, 17 Jun 2019 10:45:23 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HAjLQA079924; Mon, 17 Jun 2019 10:45:21 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201906171045.x5HAjLQA079924@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Mon, 17 Jun 2019 10:45:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504408 - in head/net: . haproxy haproxy-devel haproxy17 haproxy18 haproxy19 X-SVN-Group: ports-head X-SVN-Commit-Author: demon X-SVN-Commit-Paths: in head/net: . haproxy haproxy-devel haproxy17 haproxy18 haproxy19 X-SVN-Commit-Revision: 504408 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DAF1F8A0D2 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 10:45:24 -0000 Author: demon Date: Mon Jun 17 10:45:21 2019 New Revision: 504408 URL: https://svnweb.freebsd.org/changeset/ports/504408 Log: Update haproxy port to the latest release 2.0.0. Keep 1.9 branch in a separate port for a while. Added: head/net/haproxy19/ - copied from r504401, head/net/haproxy/ Modified: head/net/Makefile head/net/haproxy-devel/Makefile head/net/haproxy/Makefile head/net/haproxy/distinfo head/net/haproxy/pkg-plist head/net/haproxy17/Makefile head/net/haproxy18/Makefile head/net/haproxy19/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Mon Jun 17 10:28:56 2019 (r504407) +++ head/net/Makefile Mon Jun 17 10:45:21 2019 (r504408) @@ -230,6 +230,7 @@ SUBDIR += haproxy-devel SUBDIR += haproxy17 SUBDIR += haproxy18 + SUBDIR += haproxy19 SUBDIR += hexinject SUBDIR += hidentd SUBDIR += hinfo Modified: head/net/haproxy-devel/Makefile ============================================================================== --- head/net/haproxy-devel/Makefile Mon Jun 17 10:28:56 2019 (r504407) +++ head/net/haproxy-devel/Makefile Mon Jun 17 10:45:21 2019 (r504408) @@ -14,7 +14,7 @@ COMMENT= Reliable, high performance TCP/HTTP load bala LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi -CONFLICTS_INSTALL= haproxy-[0-9]* haproxy17-[0-9]* haproxy18-[0-9]* +CONFLICTS_INSTALL= haproxy-[0-9]* haproxy17-[0-9]* haproxy18-[0-9]* haproxy19-[0-9]* USES= compiler:c++11-lang cpe gmake USE_RC_SUBR= haproxy Modified: head/net/haproxy/Makefile ============================================================================== --- head/net/haproxy/Makefile Mon Jun 17 10:28:56 2019 (r504407) +++ head/net/haproxy/Makefile Mon Jun 17 10:45:21 2019 (r504408) @@ -1,10 +1,10 @@ -# Created by: Clement Laforet +# Created by: Hugo Saro # $FreeBSD$ PORTNAME= haproxy -DISTVERSION= 1.9.8 +DISTVERSION= 2.0.0 CATEGORIES= net www -MASTER_SITES= http://www.haproxy.org/download/1.9/src/ +MASTER_SITES= http://www.haproxy.org/download/2.0/src/ MAINTAINER= demon@FreeBSD.org COMMENT= Reliable, high performance TCP/HTTP load balancer @@ -12,7 +12,7 @@ COMMENT= Reliable, high performance TCP/HTTP load bala LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi -CONFLICTS_INSTALL= haproxy-devel-[0-9]* haproxy17-[0-9]* haproxy18-[0-9]* +CONFLICTS_INSTALL= haproxy-devel-[0-9]* haproxy17-[0-9]* haproxy18-[0-9]* haproxy19-[0-9]* USES= compiler:c++11-lang cpe gmake USE_RC_SUBR= haproxy Modified: head/net/haproxy/distinfo ============================================================================== --- head/net/haproxy/distinfo Mon Jun 17 10:28:56 2019 (r504407) +++ head/net/haproxy/distinfo Mon Jun 17 10:45:21 2019 (r504408) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557759735 -SHA256 (haproxy-1.9.8.tar.gz) = 2d9a3300dbd871bc35b743a83caaf50fecfbf06290610231ca2d334fd04c2aee -SIZE (haproxy-1.9.8.tar.gz) = 2376526 +TIMESTAMP = 1560768121 +SHA256 (haproxy-2.0.0.tar.gz) = fe0a0d69e1091066a91b8d39199c19af8748e0e872961c6fc43c91ec7a28ff20 +SIZE (haproxy-2.0.0.tar.gz) = 2527523 Modified: head/net/haproxy/pkg-plist ============================================================================== --- head/net/haproxy/pkg-plist Mon Jun 17 10:28:56 2019 (r504407) +++ head/net/haproxy/pkg-plist Mon Jun 17 10:45:21 2019 (r504408) @@ -3,6 +3,7 @@ sbin/halog sbin/haproxy %%PORTDOCS%%%%DOCSDIR%%/51Degrees-device-detection.txt %%PORTDOCS%%%%DOCSDIR%%/DeviceAtlas-device-detection.txt +%%PORTDOCS%%%%DOCSDIR%%/SOCKS4.protocol.txt %%PORTDOCS%%%%DOCSDIR%%/SPOE.txt %%PORTDOCS%%%%DOCSDIR%%/WURFL-device-detection.txt %%PORTDOCS%%%%DOCSDIR%%/acl.fig @@ -74,14 +75,9 @@ sbin/haproxy %%PORTDOCS%%%%DOCSDIR%%/proxy-protocol.txt %%PORTDOCS%%%%DOCSDIR%%/queuing.fig %%PORTDOCS%%%%DOCSDIR%%/regression-testing.txt +%%PORTDOCS%%%%DOCSDIR%%/seamless_reload.txt %%PORTEXAMPLES%%%%EXAMPLESDIR%%/acl-content-sw.cfg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/auth.cfg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/check -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/check.conf %%PORTEXAMPLES%%%%EXAMPLESDIR%%/content-sw-sample.cfg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/debug2ansi -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/debug2html -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/debugfind %%PORTEXAMPLES%%%%EXAMPLESDIR%%/errorfiles/400.http %%PORTEXAMPLES%%%%EXAMPLESDIR%%/errorfiles/403.http %%PORTEXAMPLES%%%%EXAMPLESDIR%%/errorfiles/408.http @@ -91,12 +87,7 @@ sbin/haproxy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/errorfiles/504.http %%PORTEXAMPLES%%%%EXAMPLESDIR%%/errorfiles/README %%PORTEXAMPLES%%%%EXAMPLESDIR%%/haproxy.init -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/haproxy.spec -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/haproxy.vim -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/init.haproxy %%PORTEXAMPLES%%%%EXAMPLESDIR%%/option-http_proxy.cfg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/seamless_reload.txt -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/ssl.cfg -%%PORTEXAMPLES%%%%EXAMPLESDIR%%/stats_haproxy.sh +%%PORTEXAMPLES%%%%EXAMPLESDIR%%/socks4.cfg %%PORTEXAMPLES%%%%EXAMPLESDIR%%/transparent_proxy.cfg %%PORTEXAMPLES%%%%EXAMPLESDIR%%/wurfl-example.cfg Modified: head/net/haproxy17/Makefile ============================================================================== --- head/net/haproxy17/Makefile Mon Jun 17 10:28:56 2019 (r504407) +++ head/net/haproxy17/Makefile Mon Jun 17 10:45:21 2019 (r504408) @@ -16,7 +16,7 @@ LICENSE_COMB= multi BROKEN_mips= fails to build: undefined reference to '__sync_sub_and_fetch_4' BROKEN_mips64= fails to build: undefined reference to '__sync_sub_and_fetch_4' -CONFLICTS_INSTALL= haproxy-[0-9]* haproxy-devel-[0-9]* haproxy18-[0-9]* +CONFLICTS_INSTALL= haproxy-[0-9]* haproxy-devel-[0-9]* haproxy18-[0-9]* haproxy19-[0-9]* USES= cpe gmake USE_RC_SUBR= haproxy Modified: head/net/haproxy18/Makefile ============================================================================== --- head/net/haproxy18/Makefile Mon Jun 17 10:28:56 2019 (r504407) +++ head/net/haproxy18/Makefile Mon Jun 17 10:45:21 2019 (r504408) @@ -13,7 +13,7 @@ COMMENT= Reliable, high performance TCP/HTTP load bala LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi -CONFLICTS_INSTALL= haproxy-[0-9]* haproxy-devel-[0-9]* haproxy17-[0-9]* +CONFLICTS_INSTALL= haproxy-[0-9]* haproxy-devel-[0-9]* haproxy17-[0-9]* haproxy19-[0-9]* USES= cpe gmake USE_RC_SUBR= haproxy Modified: head/net/haproxy19/Makefile ============================================================================== --- head/net/haproxy/Makefile Mon Jun 17 08:36:27 2019 (r504401) +++ head/net/haproxy19/Makefile Mon Jun 17 10:45:21 2019 (r504408) @@ -4,6 +4,7 @@ PORTNAME= haproxy DISTVERSION= 1.9.8 CATEGORIES= net www +PKGNAMESUFFIX= 19 MASTER_SITES= http://www.haproxy.org/download/1.9/src/ MAINTAINER= demon@FreeBSD.org @@ -12,7 +13,7 @@ COMMENT= Reliable, high performance TCP/HTTP load bala LICENSE= GPLv2 LGPL21 LICENSE_COMB= multi -CONFLICTS_INSTALL= haproxy-devel-[0-9]* haproxy17-[0-9]* haproxy18-[0-9]* +CONFLICTS_INSTALL= haproxy-[0-9]* haproxy-devel-[0-9]* haproxy17-[0-9]* haproxy18-[0-9]* USES= compiler:c++11-lang cpe gmake USE_RC_SUBR= haproxy From owner-svn-ports-all@freebsd.org Mon Jun 17 10:55:14 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A77F615B493A; Mon, 17 Jun 2019 10:55:14 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3AF718A517; Mon, 17 Jun 2019 10:55:14 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1204C249F4; Mon, 17 Jun 2019 10:55:14 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HAtD6H086764; Mon, 17 Jun 2019 10:55:13 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HAtDGm086763; Mon, 17 Jun 2019 10:55:13 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906171055.x5HAtDGm086763@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 17 Jun 2019 10:55:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504409 - head/multimedia/avidemux/files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/multimedia/avidemux/files X-SVN-Commit-Revision: 504409 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3AF718A517 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.945,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 10:55:14 -0000 Author: tobik Date: Mon Jun 17 10:55:13 2019 New Revision: 504409 URL: https://svnweb.freebsd.org/changeset/ports/504409 Log: multimedia/avidemux: Disable -Werror=attributes and unbreak build with GCC 9 In file included from .../.build/ffmpeg/source/libavutil/common.h:437, from .../.build/ffmpeg/source/libavutil/avutil.h:296, from .../.build/ffmpeg/source/libavutil/samplefmt.h:24, from .../.build/ffmpeg/source/libavcodec/avcodec.h:31, from .../avidemux_2.6.11/avidemux_core/ADM_core/src/ADM_memcpy.cpp:41: .../.build/ffmpeg/source/libavutil/mem.h:185:79: error: 'alloc_size' attribute ignored on a function returning 'int' [-Werror=attributes] 185 | av_alloc_size(2, 3) int av_reallocp_array(void *ptr, size_t nmemb, size_t size); | ^ cc1plus: some warnings being treated as errors http://package22.nyi.freebsd.org/data/112amd64-default-PR238330/2019-06-09_20h29m30s/logs/errors/avidemux-2.6.11_14.log PR: 238330 Added: head/multimedia/avidemux/files/patch-cmake_admMainChecks.cmake (contents, props changed) Added: head/multimedia/avidemux/files/patch-cmake_admMainChecks.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/multimedia/avidemux/files/patch-cmake_admMainChecks.cmake Mon Jun 17 10:55:13 2019 (r504409) @@ -0,0 +1,11 @@ +--- cmake/admMainChecks.cmake.orig 2019-06-17 10:41:06 UTC ++++ cmake/admMainChecks.cmake +@@ -81,7 +81,7 @@ ELSE (WIN32) + ENDIF (WIN32) + + if (CMAKE_COMPILER_IS_GNUCC) +- add_definitions("-Werror=attributes") ++ add_definitions("-Wattributes") + endif (CMAKE_COMPILER_IS_GNUCC) + # Clang + IF(${CMAKE_CXX_COMPILER} MATCHES ".*[cC]lang.*") From owner-svn-ports-all@freebsd.org Mon Jun 17 11:15:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F6FB15B5348; Mon, 17 Jun 2019 11:15:15 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D27E38B049; Mon, 17 Jun 2019 11:15:14 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AADFB24D4F; Mon, 17 Jun 2019 11:15:14 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HBFEig099337; Mon, 17 Jun 2019 11:15:14 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HBFDSw099333; Mon, 17 Jun 2019 11:15:13 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906171115.x5HBFDSw099333@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Mon, 17 Jun 2019 11:15:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504410 - in head/deskutils/recoll: . files X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/deskutils/recoll: . files X-SVN-Commit-Revision: 504410 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D27E38B049 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 11:15:15 -0000 Author: kai Date: Mon Jun 17 11:15:13 2019 New Revision: 504410 URL: https://svnweb.freebsd.org/changeset/ports/504410 Log: deskutils/recoll: Update to 1.25.16 * Submitter adopts port While I'm here: * Place USE_ variables to the intended USES block Changelog: * All Python scripts now use Python 3 by default. They are still supposedly compatible with Python 2. (The port stays with Python 2.7 for a while as not all dependencies are ready for Python 3, yet). https://www.lesbonscomptes.com/recoll/release-1.25.html PR: 238147 Submitted by: jjuanino@gmail.com Modified: head/deskutils/recoll/Makefile head/deskutils/recoll/distinfo head/deskutils/recoll/files/patch-Makefile.in head/deskutils/recoll/pkg-plist Modified: head/deskutils/recoll/Makefile ============================================================================== --- head/deskutils/recoll/Makefile Mon Jun 17 10:55:13 2019 (r504409) +++ head/deskutils/recoll/Makefile Mon Jun 17 11:15:13 2019 (r504410) @@ -2,17 +2,17 @@ # $FreeBSD$ PORTNAME= recoll -DISTVERSION= 1.24.5 -PORTREVISION= 2 +DISTVERSION= 1.25.16 CATEGORIES= deskutils MASTER_SITES= https://www.lesbonscomptes.com/recoll/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jjuanino@gmail.com COMMENT= Personal full text search package, based on Xapian LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools>0:devel/py-setuptools@${PY_FLAVOR} LIB_DEPENDS= libxapian.so:databases/xapian-core RUN_DEPENDS= unrar:archivers/unrar \ antiword:textproc/antiword \ @@ -21,15 +21,16 @@ RUN_DEPENDS= unrar:archivers/unrar \ unrtf:textproc/unrtf USES= bison gmake gnome iconv libtool localbase python:2.7 shebangfix +USE_GNOME= libxslt USE_LDCONFIG= yes +USE_PYTHON= py3kplist + SHEBANG_FILES= filters/*.py filters/rcl7z filters/rclaudio \ filters/rclchm filters/rcldia filters/rclepub \ filters/rclepub1 filters/rclics filters/rclimg \ filters/rclinfo filters/rclkar filters/rclpython \ filters/rclrar filters/rcltar filters/rclwar \ - filters/rclzip desktop/hotrecoll.py -USE_PYTHON= py3kplist -USE_GNOME= libxslt:run + filters/rclzip desktop/hotrecoll.py GNU_CONFIGURE= yes MAKE_ENV= PYTHON_CMD=${PYTHON_CMD} @@ -47,6 +48,8 @@ OPTIONS_SUB= yes ASPELL_LIB_DEPENDS= libaspell.so:textproc/aspell ASPELL_CONFIGURE_WITH= aspell CHM_DESC= CHM via CHMLIB +CHM_CONFIGURE_ENABLE= python-chm +CHM_LIB_DEPENDS= libchm.so:misc/chmlib CHM_RUN_DEPENDS= pychm>0:textproc/pychm DJVU_RUN_DEPENDS= djvutxt:graphics/djvulibre IMAGE_DESC= Store personal tags or textual descriptions in images @@ -78,9 +81,9 @@ post-patch: ${WRKSRC}/configure @${REINPLACE_CMD} -e \ 's|python setup.py|${PYTHON_CMD} setup.py|; s|sudo||' \ - ${WRKSRC}/python/recoll/Makefile.in + ${WRKSRC}/python/recoll/Makefile @${REINPLACE_CMD} -e \ - 's|python setup.py|${PYTHON_CMD} setup.py|' \ + 's|%%PYTHON_CMD%%|${PYTHON_CMD}|' \ ${WRKSRC}/Makefile.in pre-build-QT5-on: @@ -90,5 +93,8 @@ pre-build-QT5-on: post-install: @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/recoll/*.so \ ${STAGEDIR}${PREFIX}/lib/recoll/*.so + +post-install-CHM-on: + @${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/recollchm/*.so .include Modified: head/deskutils/recoll/distinfo ============================================================================== --- head/deskutils/recoll/distinfo Mon Jun 17 10:55:13 2019 (r504409) +++ head/deskutils/recoll/distinfo Mon Jun 17 11:15:13 2019 (r504410) @@ -1,3 +1,3 @@ -TIMESTAMP = 1549037086 -SHA256 (recoll-1.24.5.tar.gz) = 9b25f4494023fcea729ff96dd2bb525e78df14caf4ebab3a93377a0b1f50a382 -SIZE (recoll-1.24.5.tar.gz) = 2675385 +TIMESTAMP = 1558855793 +SHA256 (recoll-1.25.16.tar.gz) = a0e19c8fc71f62eb1b7ebed271afb2f440402362f589bc663c7164c52e5c223c +SIZE (recoll-1.25.16.tar.gz) = 2843267 Modified: head/deskutils/recoll/files/patch-Makefile.in ============================================================================== --- head/deskutils/recoll/files/patch-Makefile.in Mon Jun 17 10:55:13 2019 (r504409) +++ head/deskutils/recoll/files/patch-Makefile.in Mon Jun 17 11:15:13 2019 (r504410) @@ -1,11 +1,40 @@ ---- Makefile.in.orig 2017-11-06 17:57:14 UTC +--- Makefile.in.orig 2019-05-22 12:46:15 UTC +++ Makefile.in -@@ -2206,7 +2206,7 @@ PicStatic: $(librecoll_la_OBJECTS) - @MAKEPYTHON_TRUE@ OPTSFORPYTHON=--install-layout=deb; \ - @MAKEPYTHON_TRUE@ fi; \ - @MAKEPYTHON_TRUE@ set -x; \ --@MAKEPYTHON_TRUE@ python setup.py install \ -+@MAKEPYTHON_TRUE@ ${PYTHON_CMD} setup.py install \ - @MAKEPYTHON_TRUE@ --prefix=${prefix} --root=$${DESTDIR:-/} $${OPTSFORPYTHON}) - @MAKEPYTHON_TRUE@clean-local: recollpython-clean +@@ -2397,16 +2397,12 @@ PicStatic: $(librecoll_la_OBJECTS) + @MAKEPYTHON_TRUE@clean-local:: recollpython-clean + @MAKEPYTHON_TRUE@recollpython: librecoll.la + @MAKEPYTHON_TRUE@ (cd python/recoll; set -x; \ +-@MAKEPYTHON_TRUE@ for v in 2 3;do test -n "`which python$${v}`" && \ +-@MAKEPYTHON_TRUE@ libdir=$(libdir) python$${v} setup.py build; \ +-@MAKEPYTHON_TRUE@ done \ ++@MAKEPYTHON_TRUE@ libdir=$(libdir) %%PYTHON_CMD%% setup.py build; \ + @MAKEPYTHON_TRUE@ ) + @MAKEPYTHON_TRUE@recollpython-install: + @MAKEPYTHON_TRUE@ (cd python/recoll; set -x; \ +-@MAKEPYTHON_TRUE@ for v in 2 3;do test -n "`which python$${v}`" && \ +-@MAKEPYTHON_TRUE@ python$${v} setup.py install \ ++@MAKEPYTHON_TRUE@ %%PYTHON_CMD%% setup.py install \ + @MAKEPYTHON_TRUE@ --prefix=${prefix} --root=$${DESTDIR:-/} $(OPTSFORPYTHON); \ +-@MAKEPYTHON_TRUE@ done; \ + @MAKEPYTHON_TRUE@ ) @MAKEPYTHON_TRUE@recollpython-clean: + @MAKEPYTHON_TRUE@ rm -f python/recoll/*.pyc +@@ -2422,16 +2418,12 @@ PicStatic: $(librecoll_la_OBJECTS) + @MAKEPYTHONCHM_TRUE@clean-local:: rclpychm-clean + @MAKEPYTHONCHM_TRUE@rclpychm: + @MAKEPYTHONCHM_TRUE@ (cd python/pychm; set -x; \ +-@MAKEPYTHONCHM_TRUE@ for v in 2 3;do \ +-@MAKEPYTHONCHM_TRUE@ test -n "`which python$${v}`" && python$${v} setup.py build;\ +-@MAKEPYTHONCHM_TRUE@ done \ ++@MAKEPYTHONCHM_TRUE@ %%PYTHON_CMD%% setup.py build;\ + @MAKEPYTHONCHM_TRUE@ ) + @MAKEPYTHONCHM_TRUE@rclpychm-install: + @MAKEPYTHONCHM_TRUE@ (cd python/pychm; set -x; \ +-@MAKEPYTHONCHM_TRUE@ for v in 2 3;do test -n "`which python$${v}`" && \ +-@MAKEPYTHONCHM_TRUE@ python$${v} setup.py install \ ++@MAKEPYTHONCHM_TRUE@ %%PYTHON_CMD%% setup.py install \ + @MAKEPYTHONCHM_TRUE@ --prefix=${prefix} --root=$${DESTDIR:-/} $(OPTSFORPYTHON); \ +-@MAKEPYTHONCHM_TRUE@ done \ + @MAKEPYTHONCHM_TRUE@ ) + @MAKEPYTHONCHM_TRUE@rclpychm-clean: + @MAKEPYTHONCHM_TRUE@ rm -rf python/pychm/build Modified: head/deskutils/recoll/pkg-plist ============================================================================== --- head/deskutils/recoll/pkg-plist Mon Jun 17 10:55:13 2019 (r504409) +++ head/deskutils/recoll/pkg-plist Mon Jun 17 11:15:13 2019 (r504410) @@ -1,17 +1,35 @@ %%QT5%%bin/recoll bin/recollindex -%%PYTHON_SITELIBDIR%%/%%PYDISTUTILS_EGGINFO%% +%%PYTHON_SITELIBDIR%%/%%PYDISTUTILS_EGGINFO%%/PKG-INFO +%%PYTHON_SITELIBDIR%%/%%PYDISTUTILS_EGGINFO%%/SOURCES.txt +%%PYTHON_SITELIBDIR%%/%%PYDISTUTILS_EGGINFO%%/dependency_links.txt +%%PYTHON_SITELIBDIR%%/%%PYDISTUTILS_EGGINFO%%/top_level.txt %%PYTHON_SITELIBDIR%%/recoll/__init__.py %%PYTHON_SITELIBDIR%%/recoll/__init__.pyc +%%PYTHON_SITELIBDIR%%/recoll/conftree.py +%%PYTHON_SITELIBDIR%%/recoll/conftree.pyc %%PYTHON_SITELIBDIR%%/recoll/rclconfig.py %%PYTHON_SITELIBDIR%%/recoll/rclconfig.pyc %%PYTHON_SITELIBDIR%%/recoll/rclextract.so %%PYTHON_SITELIBDIR%%/recoll/recoll.so +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm-0.8.4.1+git-py%%PYTHON_VER%%.egg-info/PKG-INFO +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm-0.8.4.1+git-py%%PYTHON_VER%%.egg-info/SOURCES.txt +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm-0.8.4.1+git-py%%PYTHON_VER%%.egg-info/dependency_links.txt +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm-0.8.4.1+git-py%%PYTHON_VER%%.egg-info/top_level.txt +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm/__init__.py +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm/__init__.pyc +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm/_chmlib.so +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm/chm.py +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm/chm.pyc +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm/chmlib.py +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm/chmlib.pyc +%%CHM%%%%PYTHON_SITELIBDIR%%/recollchm/extra.so lib/recoll/librecoll-%%VERSION%%.so lib/recoll/librecoll.so %%QT5%%man/man1/recoll.1.gz man/man1/recollindex.1.gz man/man1/recollq.1.gz +man/man1/xadump.1.gz man/man5/recoll.conf.5.gz %%QT5%%share/appdata/recoll.appdata.xml %%QT5%%share/applications/recoll-searchgui.desktop @@ -28,13 +46,25 @@ man/man5/recoll.conf.5.gz %%DATADIR%%/examples/recoll.conf %%DATADIR%%/examples/recoll.qss %%DATADIR%%/examples/recollindex.desktop +%%DATADIR%%/filters/abiword.xsl +%%DATADIR%%/filters/conftree.py +%%DATADIR%%/filters/fb2.xsl +%%DATADIR%%/filters/gnumeric.xsl %%DATADIR%%/filters/hotrecoll.py %%DATADIR%%/filters/msodump.zip +%%DATADIR%%/filters/okular-note.xsl +%%DATADIR%%/filters/opendoc-body.xsl +%%DATADIR%%/filters/opendoc-flat.xsl +%%DATADIR%%/filters/opendoc-meta.xsl +%%DATADIR%%/filters/openxml-meta.xsl +%%DATADIR%%/filters/openxml-word-body.xsl +%%DATADIR%%/filters/openxml-xls-body.xsl %%DATADIR%%/filters/ppt-dump.py %%DATADIR%%/filters/rcl7z -%%DATADIR%%/filters/rclabw +%%DATADIR%%/filters/rclabw.py %%DATADIR%%/filters/rclaptosidman %%DATADIR%%/filters/rclaudio +%%DATADIR%%/filters/rclbasehandler.py %%DATADIR%%/filters/rclbibtex.sh %%DATADIR%%/filters/rclcheckneedretry.sh %%DATADIR%%/filters/rclchm @@ -47,9 +77,10 @@ man/man5/recoll.conf.5.gz %%DATADIR%%/filters/rclepub1 %%DATADIR%%/filters/rclexec1.py %%DATADIR%%/filters/rclexecm.py -%%DATADIR%%/filters/rclfb2 +%%DATADIR%%/filters/rclfb2.py %%DATADIR%%/filters/rclgaim -%%DATADIR%%/filters/rclgnm +%%DATADIR%%/filters/rclgenxslt.py +%%DATADIR%%/filters/rclgnm.py %%DATADIR%%/filters/rclics %%DATADIR%%/filters/rclimg %%DATADIR%%/filters/rclimg.py @@ -61,7 +92,7 @@ man/man5/recoll.conf.5.gz %%DATADIR%%/filters/rcllyx %%DATADIR%%/filters/rclman %%DATADIR%%/filters/rclmidi.py -%%DATADIR%%/filters/rclokulnote +%%DATADIR%%/filters/rclokulnote.py %%DATADIR%%/filters/rclopxml.py %%DATADIR%%/filters/rclpdf.py %%DATADIR%%/filters/rclppt.py @@ -72,7 +103,6 @@ man/man5/recoll.conf.5.gz %%DATADIR%%/filters/rclrtf.py %%DATADIR%%/filters/rclscribus %%DATADIR%%/filters/rclshowinfo -%%DATADIR%%/filters/rclsiduxman %%DATADIR%%/filters/rclsoff-flat.py %%DATADIR%%/filters/rclsoff.py %%DATADIR%%/filters/rclsvg.py @@ -82,7 +112,6 @@ man/man5/recoll.conf.5.gz %%DATADIR%%/filters/rcluncomp %%DATADIR%%/filters/rcluncomp.py %%DATADIR%%/filters/rclwar -%%DATADIR%%/filters/rclwpd %%DATADIR%%/filters/rclxls.py %%DATADIR%%/filters/rclxml.py %%DATADIR%%/filters/rclxmp.py @@ -90,8 +119,10 @@ man/man5/recoll.conf.5.gz %%DATADIR%%/filters/rclzip %%DATADIR%%/filters/recoll-we-move-files.py %%DATADIR%%/filters/recollepub.zip +%%DATADIR%%/filters/svg.xsl %%DATADIR%%/filters/xls-dump.py %%DATADIR%%/filters/xlsxmltocsv.py +%%DATADIR%%/filters/xml.xsl %%QT5%%%%DATADIR%%/images/aptosid-book.png %%QT5%%%%DATADIR%%/images/aptosid-manual.png %%QT5%%%%DATADIR%%/images/archive.png From owner-svn-ports-all@freebsd.org Mon Jun 17 11:37:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16AF115B609A; Mon, 17 Jun 2019 11:37:39 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AF1138BFF1; Mon, 17 Jun 2019 11:37:38 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9253B250AC; Mon, 17 Jun 2019 11:37:38 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HBbc79012780; Mon, 17 Jun 2019 11:37:38 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HBbcML012779; Mon, 17 Jun 2019 11:37:38 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906171137.x5HBbcML012779@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 17 Jun 2019 11:37:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504411 - head/astro/siril X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/astro/siril X-SVN-Commit-Revision: 504411 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AF1138BFF1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 11:37:39 -0000 Author: linimon Date: Mon Jun 17 11:37:38 2019 New Revision: 504411 URL: https://svnweb.freebsd.org/changeset/ports/504411 Log: Add compiler:c++11-lang to USES to fix the following on GCC-based systems: configure: error: *** A compiler with support for C++11 language features is required. Approved by: portmgr (tier-2 blanket) Modified: head/astro/siril/Makefile Modified: head/astro/siril/Makefile ============================================================================== --- head/astro/siril/Makefile Mon Jun 17 11:15:13 2019 (r504410) +++ head/astro/siril/Makefile Mon Jun 17 11:37:38 2019 (r504411) @@ -28,7 +28,8 @@ LIB_DEPENDS= libavformat.so:multimedia/ffmpeg \ libtiff.so:graphics/tiff LIB_DEPENDS+= libopencv_photo.so:graphics/opencv # for some reason, configure fails without opencv, but executable only links to opencv-core -USES= autoreconf desktop-file-utils gettext gmake gnome localbase pkgconfig jpeg shared-mime-info tar:bz2 +USES= autoreconf compiler:c++11-lang desktop-file-utils gettext \ + gmake gnome localbase pkgconfig jpeg shared-mime-info tar:bz2 GNU_CONFIGURE= yes USE_GNOME= atk cairo gdkpixbuf2 gtk30 intltool pango INSTALLS_ICONS= yes From owner-svn-ports-all@freebsd.org Mon Jun 17 11:38:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B022E15B60F9; Mon, 17 Jun 2019 11:38:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5395F8C0F7; Mon, 17 Jun 2019 11:38:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 02272250AD; Mon, 17 Jun 2019 11:38:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HBcifo013070; Mon, 17 Jun 2019 11:38:44 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HBci9B013069; Mon, 17 Jun 2019 11:38:44 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906171138.x5HBci9B013069@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 17 Jun 2019 11:38:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504412 - head/finance/quantlib X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/finance/quantlib X-SVN-Commit-Revision: 504412 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5395F8C0F7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 11:38:45 -0000 Author: linimon Date: Mon Jun 17 11:38:44 2019 New Revision: 504412 URL: https://svnweb.freebsd.org/changeset/ports/504412 Log: Add compiler:c++11-lang to USES to fix the following on GCC-based systems: configure: error: Boost thread, signals2 and system libraries not found. Approved by: portmgr (tier-2 blanket) Modified: head/finance/quantlib/Makefile Modified: head/finance/quantlib/Makefile ============================================================================== --- head/finance/quantlib/Makefile Mon Jun 17 11:37:38 2019 (r504411) +++ head/finance/quantlib/Makefile Mon Jun 17 11:38:44 2019 (r504412) @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.TXT LIB_DEPENDS= libboost_system.so:devel/boost-libs -USES= compiler libtool +USES= compiler:c++11-lang libtool USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ENV+= EMACS=no From owner-svn-ports-all@freebsd.org Mon Jun 17 11:39:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00B0A15B6156; Mon, 17 Jun 2019 11:39:31 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 991838C1EA; Mon, 17 Jun 2019 11:39:30 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 68940250AE; Mon, 17 Jun 2019 11:39:30 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HBdU3c013284; Mon, 17 Jun 2019 11:39:30 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HBdUdo013283; Mon, 17 Jun 2019 11:39:30 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906171139.x5HBdUdo013283@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 17 Jun 2019 11:39:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504413 - head/science/gabedit X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/science/gabedit X-SVN-Commit-Revision: 504413 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 991838C1EA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 11:39:31 -0000 Author: linimon Date: Mon Jun 17 11:39:30 2019 New Revision: 504413 URL: https://svnweb.freebsd.org/changeset/ports/504413 Log: Add compiler:c++11-lang to USES to fix the following on GCC-based systems: /usr/local/lib/libgraphite2.so.3: undefined reference to `__cxa_throw_bad_array_new_length@CXXABI_1.3.8' Approved by: portmgr (tier-2 blanket) Modified: head/science/gabedit/Makefile Modified: head/science/gabedit/Makefile ============================================================================== --- head/science/gabedit/Makefile Mon Jun 17 11:38:44 2019 (r504412) +++ head/science/gabedit/Makefile Mon Jun 17 11:39:30 2019 (r504413) @@ -21,7 +21,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libgtkglext-x11-1.0.so:x11-toolkits/gtkglext -USES= gettext-runtime gl gmake gnome pkgconfig +USES= compiler:c++11-lang gettext-runtime gl gmake gnome pkgconfig USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 pango pangox-compat USE_GL= gl glu USE_XORG= ice sm x11 xmu xt From owner-svn-ports-all@freebsd.org Mon Jun 17 11:46:52 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CEF2915B64DE; Mon, 17 Jun 2019 11:46:52 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 742508C774; Mon, 17 Jun 2019 11:46:52 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A809325250; Mon, 17 Jun 2019 11:46:51 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HBkpvV019338; Mon, 17 Jun 2019 11:46:51 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HBkpJV019335; Mon, 17 Jun 2019 11:46:51 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906171146.x5HBkpJV019335@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Mon, 17 Jun 2019 11:46:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504414 - head/graphics/gpxsee X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/graphics/gpxsee X-SVN-Commit-Revision: 504414 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 742508C774 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 11:46:53 -0000 Author: kai Date: Mon Jun 17 11:46:50 2019 New Revision: 504414 URL: https://svnweb.freebsd.org/changeset/ports/504414 Log: graphics/gpxsee: Update to 7.9 Changelog: * Removed the annoying map view re-zooming on window resize. * Improved POI handling and text rendering in IMG maps. PR: 238627 Submitted by: Nikolay Korotkiy (maintainer) Modified: head/graphics/gpxsee/Makefile head/graphics/gpxsee/distinfo Modified: head/graphics/gpxsee/Makefile ============================================================================== --- head/graphics/gpxsee/Makefile Mon Jun 17 11:39:30 2019 (r504413) +++ head/graphics/gpxsee/Makefile Mon Jun 17 11:46:50 2019 (r504414) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gpxsee -DISTVERSION= 7.8 +DISTVERSION= 7.9 CATEGORIES= graphics geography MAINTAINER= sikmir@gmail.com Modified: head/graphics/gpxsee/distinfo ============================================================================== --- head/graphics/gpxsee/distinfo Mon Jun 17 11:39:30 2019 (r504413) +++ head/graphics/gpxsee/distinfo Mon Jun 17 11:46:50 2019 (r504414) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559215163 -SHA256 (tumic0-GPXSee-7.8_GH0.tar.gz) = 3bb5a3a62fabd70ff88b499853bfe5ea334e13cb2f07b78806da503b875e36cd -SIZE (tumic0-GPXSee-7.8_GH0.tar.gz) = 4330785 +TIMESTAMP = 1560700227 +SHA256 (tumic0-GPXSee-7.9_GH0.tar.gz) = 32a1c94949f7221cac7b4c5d0c9935f844cd3ccba763f3b0b991594fe374375b +SIZE (tumic0-GPXSee-7.9_GH0.tar.gz) = 4347609 From owner-svn-ports-all@freebsd.org Mon Jun 17 11:51:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64D8415B66B1; Mon, 17 Jun 2019 11:51:11 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0430D8CB83; Mon, 17 Jun 2019 11:51:11 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CB782253B9; Mon, 17 Jun 2019 11:51:10 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HBpATk020161; Mon, 17 Jun 2019 11:51:10 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HBpAkG020160; Mon, 17 Jun 2019 11:51:10 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906171151.x5HBpAkG020160@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Mon, 17 Jun 2019 11:51:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504415 - head/graphics/colmap X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/graphics/colmap X-SVN-Commit-Revision: 504415 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0430D8CB83 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 11:51:11 -0000 Author: jbeich Date: Mon Jun 17 11:51:10 2019 New Revision: 504415 URL: https://svnweb.freebsd.org/changeset/ports/504415 Log: graphics/colmap: unbreak OPENMP with GCC 9 In file included from lib/VLFeat/kmeans.h:21, from lib/VLFeat/kmeans.c:363: lib/VLFeat/kmeans.c: In function '_vl_kmeans_quantize_f': lib/VLFeat/mathop.h:92:37: error: 'vl_infinity_d' not specified in enclosing 'parallel' 92 | #define VL_INFINITY_D (vl_infinity_d.value) | ~~~~~~~~~~~~~~^~~~~~~ lib/VLFeat/kmeans.c:685:34: note: in expansion of macro 'VL_INFINITY_D' 685 | TYPE bestDistance = (TYPE) VL_INFINITY_D ; | ^~~~~~~~~~~~~ In file included from lib/VLFeat/kmeans.c:1782: lib/VLFeat/kmeans.c:672:9: error: enclosing 'parallel' 672 | #pragma omp parallel default(none) \ | ^~~ In file included from lib/VLFeat/kmeans.c:1788: lib/VLFeat/kmeans.c: In function '_vl_kmeans_quantize_d': lib/VLFeat/kmeans.c:685:27: error: 'vl_infinity_d' not specified in enclosing 'parallel' 685 | TYPE bestDistance = (TYPE) VL_INFINITY_D ; lib/VLFeat/kmeans.c:672:9: error: enclosing 'parallel' 672 | #pragma omp parallel default(none) \ | ^~~ PR: 238330 Reported by: antoine (via exp-run) Modified: head/graphics/colmap/Makefile (contents, props changed) head/graphics/colmap/distinfo (contents, props changed) Modified: head/graphics/colmap/Makefile ============================================================================== --- head/graphics/colmap/Makefile Mon Jun 17 11:46:50 2019 (r504414) +++ head/graphics/colmap/Makefile Mon Jun 17 11:51:10 2019 (r504415) @@ -5,6 +5,9 @@ DISTVERSION= 3.5 PORTREVISION= 7 CATEGORIES= graphics +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ +PATCHFILES+= b5ccc54e68e3.patch:-p1 + MAINTAINER= jbeich@FreeBSD.org COMMENT= Structure from motion and multi-view stereo Modified: head/graphics/colmap/distinfo ============================================================================== --- head/graphics/colmap/distinfo Mon Jun 17 11:46:50 2019 (r504414) +++ head/graphics/colmap/distinfo Mon Jun 17 11:51:10 2019 (r504415) @@ -1,3 +1,5 @@ TIMESTAMP = 1535031594 SHA256 (colmap-colmap-3.5_GH0.tar.gz) = 7a23856a5662daf5466ef9cdf821eb139f2e1bd6f0d3a03d1558ace5bc49bc06 SIZE (colmap-colmap-3.5_GH0.tar.gz) = 5872165 +SHA256 (b5ccc54e68e3.patch) = 38e8328e52889ec18dd69939c4fbef8b653d5f0fe022ca8eb3ae3b521582a3a8 +SIZE (b5ccc54e68e3.patch) = 1757 From owner-svn-ports-all@freebsd.org Mon Jun 17 11:52:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61FE915B68E7; Mon, 17 Jun 2019 11:52:51 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0123D8CDCD; Mon, 17 Jun 2019 11:52:51 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B765A25421; Mon, 17 Jun 2019 11:52:50 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HBqohb025061; Mon, 17 Jun 2019 11:52:50 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HBqo9I025059; Mon, 17 Jun 2019 11:52:50 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906171152.x5HBqo9I025059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 17 Jun 2019 11:52:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504416 - in head/devel/kronosnet: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/devel/kronosnet: . files X-SVN-Commit-Revision: 504416 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0123D8CDCD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.956,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 11:52:51 -0000 Author: tobik Date: Mon Jun 17 11:52:50 2019 New Revision: 504416 URL: https://svnweb.freebsd.org/changeset/ports/504416 Log: devel/kronosnet: Unbreak build with GCC 9 In file included from common.c:22: In function 'open_lib', inlined from 'load_module' at common.c:130:11: logging.h:21:17: error: '%s' directive argument is null [-Werror=format-overflow=] 21 | #define LOG_MSG log_msg | ^ logging.h:30:2: note: in expansion of macro 'LOG_MSG' 30 | LOG_MSG(knet_h, subsys, KNET_LOG_WARN, fmt, ##args) | ^~~~~~~ common.c:85:3: note: in expansion of macro 'log_warn' 85 | log_warn(knet_h, KNET_SUB_COMMON, "unable to dlinfo %s: %s", | ^~~~~~~~ common.c: In function 'load_module': common.c:85:59: note: format string is defined here 85 | log_warn(knet_h, KNET_SUB_COMMON, "unable to dlinfo %s: %s", | PR: 238330 Obtained from: upstream Added: head/devel/kronosnet/files/patch-libknet_common.c (contents, props changed) Modified: head/devel/kronosnet/Makefile Modified: head/devel/kronosnet/Makefile ============================================================================== --- head/devel/kronosnet/Makefile Mon Jun 17 11:51:10 2019 (r504415) +++ head/devel/kronosnet/Makefile Mon Jun 17 11:52:50 2019 (r504416) @@ -3,7 +3,7 @@ PORTNAME= kronosnet PORTVERSION= 1.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= https://kronosnet.org/releases/ Added: head/devel/kronosnet/files/patch-libknet_common.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kronosnet/files/patch-libknet_common.c Mon Jun 17 11:52:50 2019 (r504416) @@ -0,0 +1,22 @@ +From 97924ac12d8da26b61d3bc3ab90fbd86b0b58e72 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Jan=20Pokorn=C3=BD?= +Date: Thu, 24 Jan 2019 14:54:24 +0100 +Subject: [PATCH] [common] fix not reporting a true dlinfo error cause +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +This was automatically caught with GCC 9 +("'%s' directive argument is null"). + +Signed-off-by: Jan Pokorný +--- libknet/common.c.orig 2018-02-25 04:32:12 UTC ++++ libknet/common.c +@@ -82,6 +82,7 @@ static void *open_lib(knet_handle_t knet_h, const char + /* + * should we dlclose and return error? + */ ++ error = dlerror(); + log_warn(knet_h, KNET_SUB_COMMON, "unable to dlinfo %s: %s", + libname, error); + } else { From owner-svn-ports-all@freebsd.org Mon Jun 17 11:53:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7637915B6916; Mon, 17 Jun 2019 11:53:04 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0F1748CE98; Mon, 17 Jun 2019 11:53:04 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DE3FA25423; Mon, 17 Jun 2019 11:53:03 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HBr3uO025216; Mon, 17 Jun 2019 11:53:03 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HBr3Qc025215; Mon, 17 Jun 2019 11:53:03 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201906171153.x5HBr3Qc025215@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Mon, 17 Jun 2019 11:53:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504417 - head/sysutils/zrepl X-SVN-Group: ports-head X-SVN-Commit-Author: woodsb02 X-SVN-Commit-Paths: head/sysutils/zrepl X-SVN-Commit-Revision: 504417 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0F1748CE98 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 11:53:04 -0000 Author: woodsb02 Date: Mon Jun 17 11:53:03 2019 New Revision: 504417 URL: https://svnweb.freebsd.org/changeset/ports/504417 Log: sysutils/zrepl: Mark as broken on i386 Issue being tracked upstream: https://github.com/zrepl/zrepl/issues/184 Modified: head/sysutils/zrepl/Makefile Modified: head/sysutils/zrepl/Makefile ============================================================================== --- head/sysutils/zrepl/Makefile Mon Jun 17 11:52:50 2019 (r504416) +++ head/sysutils/zrepl/Makefile Mon Jun 17 11:53:03 2019 (r504417) @@ -12,6 +12,8 @@ COMMENT= ZFS dataset replication tool LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_i386= https://github.com/zrepl/zrepl/issues/184 + USES= gmake go USE_RC_SUBR= zrepl GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} From owner-svn-ports-all@freebsd.org Mon Jun 17 12:30:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89DFF15B8952; Mon, 17 Jun 2019 12:30:51 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2DA508E4C7; Mon, 17 Jun 2019 12:30:51 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1805225950; Mon, 17 Jun 2019 12:30:51 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HCUonH048836; Mon, 17 Jun 2019 12:30:50 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HCUoaJ048835; Mon, 17 Jun 2019 12:30:50 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201906171230.x5HCUoaJ048835@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Mon, 17 Jun 2019 12:30:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504418 - head/math/R X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/math/R X-SVN-Commit-Revision: 504418 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2DA508E4C7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 12:30:51 -0000 Author: pkubaj Date: Mon Jun 17 12:30:50 2019 New Revision: 504418 URL: https://svnweb.freebsd.org/changeset/ports/504418 Log: math/R: add powerpc64 Compiles fine on powerpc64. Approved by: mentors (implicite approval) Modified: head/math/R/Makefile Modified: head/math/R/Makefile ============================================================================== --- head/math/R/Makefile Mon Jun 17 11:53:03 2019 (r504417) +++ head/math/R/Makefile Mon Jun 17 12:30:50 2019 (r504418) @@ -12,7 +12,7 @@ COMMENT= Language for statistical computing and graphi LICENSE= GPLv2 -ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386 +ONLY_FOR_ARCHS= aarch64 amd64 armv6 armv7 i386 powerpc64 LIB_DEPENDS= libcurl.so:ftp/curl \ libpcre.so:devel/pcre From owner-svn-ports-all@freebsd.org Mon Jun 17 13:28:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F7FA15B9BCC; Mon, 17 Jun 2019 13:28:49 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A44558FF2E; Mon, 17 Jun 2019 13:28:48 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7584326345; Mon, 17 Jun 2019 13:28:48 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HDSmom083400; Mon, 17 Jun 2019 13:28:48 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HDSmt9083395; Mon, 17 Jun 2019 13:28:48 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201906171328.x5HDSmt9083395@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Mon, 17 Jun 2019 13:28:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504419 - head/security/keepass X-SVN-Group: ports-head X-SVN-Commit-Author: woodsb02 X-SVN-Commit-Paths: head/security/keepass X-SVN-Commit-Revision: 504419 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A44558FF2E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 13:28:49 -0000 Author: woodsb02 Date: Mon Jun 17 13:28:47 2019 New Revision: 504419 URL: https://svnweb.freebsd.org/changeset/ports/504419 Log: security/keepass: Update to 2.42.1 Changes this release: https://keepass.info/news/n190501_2.42.html Modified: head/security/keepass/Makefile head/security/keepass/distinfo Modified: head/security/keepass/Makefile ============================================================================== --- head/security/keepass/Makefile Mon Jun 17 12:30:50 2019 (r504418) +++ head/security/keepass/Makefile Mon Jun 17 13:28:47 2019 (r504419) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= keepass -PORTVERSION= 2.41 +PORTVERSION= 2.42.1 CATEGORIES= security MASTER_SITES= SF/${PORTNAME}/KeePass%202.x/${PORTVERSION} DISTNAME= KeePass-${PORTVERSION}-Source Modified: head/security/keepass/distinfo ============================================================================== --- head/security/keepass/distinfo Mon Jun 17 12:30:50 2019 (r504418) +++ head/security/keepass/distinfo Mon Jun 17 13:28:47 2019 (r504419) @@ -1,3 +1,3 @@ -TIMESTAMP = 1549285001 -SHA256 (KeePass-2.41-Source.zip) = de7d6dc334f227c6a95eb7173b334d273fa2d92c36ba771fef34aa945ca544bf -SIZE (KeePass-2.41-Source.zip) = 5141195 +TIMESTAMP = 1560772464 +SHA256 (KeePass-2.42.1-Source.zip) = 415654e62e1e03f1bc3d0ae7e5d447c9ddbcc23cb039452424dc5def141976c1 +SIZE (KeePass-2.42.1-Source.zip) = 5163432 From owner-svn-ports-all@freebsd.org Mon Jun 17 13:29:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4CDF815B9C0A; Mon, 17 Jun 2019 13:29:24 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E15F168021; Mon, 17 Jun 2019 13:29:23 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B26E226346; Mon, 17 Jun 2019 13:29:23 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HDTNqq083632; Mon, 17 Jun 2019 13:29:23 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HDTNw2083629; Mon, 17 Jun 2019 13:29:23 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906171329.x5HDTNw2083629@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 17 Jun 2019 13:29:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504420 - head/shells/oksh X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/shells/oksh X-SVN-Commit-Revision: 504420 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E15F168021 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 13:29:24 -0000 Author: tobik Date: Mon Jun 17 13:29:22 2019 New Revision: 504420 URL: https://svnweb.freebsd.org/changeset/ports/504420 Log: shells/oksh: Update to 6.5 Also assign to myself. PR: 238640 Approved by: bcallah@openbsd.org (maintainer) Modified: head/shells/oksh/Makefile head/shells/oksh/distinfo head/shells/oksh/pkg-descr Modified: head/shells/oksh/Makefile ============================================================================== --- head/shells/oksh/Makefile Mon Jun 17 13:28:47 2019 (r504419) +++ head/shells/oksh/Makefile Mon Jun 17 13:29:22 2019 (r504420) @@ -1,11 +1,12 @@ # $FreeBSD$ PORTNAME= oksh -DISTVERSION= 20181009 +DISTVERSION= 6.5 +PORTEPOCH= 1 CATEGORIES= shells -MASTER_SITES= https://mirrors.nycbug.org/pub/distfiles/ +MASTER_SITES= https://github.com/ibara/oksh/releases/download/oksh-${DISTVERSION}/ -MAINTAINER= bcallah@openbsd.org +MAINTAINER= tobik@FreeBSD.org COMMENT= Portable OpenBSD Korn shell LICENSE= PD @@ -17,8 +18,8 @@ OPTIONS_DEFAULT= CURSES CURSES_DESC= Use ncurses for screen clearing routines -CURSES_CONFIGURE_ENABLE= curses CURSES_USES= ncurses +CURSES_CONFIGURE_ENABLE= curses STATIC_CONFIGURE_ENABLE= static Modified: head/shells/oksh/distinfo ============================================================================== --- head/shells/oksh/distinfo Mon Jun 17 13:28:47 2019 (r504419) +++ head/shells/oksh/distinfo Mon Jun 17 13:29:22 2019 (r504420) @@ -1,3 +1,3 @@ -TIMESTAMP = 1539111609 -SHA256 (oksh-20181009.tar.gz) = 35dbd911ca129742e5a6cc31cd91055c2c26d895f19e9bafedf5d50b222d1197 -SIZE (oksh-20181009.tar.gz) = 301213 +TIMESTAMP = 1560730220 +SHA256 (oksh-6.5.tar.gz) = 2adf52ab718249462a41e1172d0bfb8670731daa0618e560be58064cac23a0bd +SIZE (oksh-6.5.tar.gz) = 301846 Modified: head/shells/oksh/pkg-descr ============================================================================== --- head/shells/oksh/pkg-descr Mon Jun 17 13:28:47 2019 (r504419) +++ head/shells/oksh/pkg-descr Mon Jun 17 13:29:22 2019 (r504420) @@ -3,4 +3,4 @@ of the Public Domain Korn Shell (PDKSH). Its command superset of the sh(1) shell language. oksh is best known as the default user shell and /bin/sh on OpenBSD. -WWW: https://devio.us/~bcallah/oksh/ +WWW: https://github.com/ibara/oksh From owner-svn-ports-all@freebsd.org Mon Jun 17 13:35:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 09A6D15BA394; Mon, 17 Jun 2019 13:35:19 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9DC9369A2B; Mon, 17 Jun 2019 13:35:18 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 751C1264FC; Mon, 17 Jun 2019 13:35:18 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HDZIbD089471; Mon, 17 Jun 2019 13:35:18 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HDZIix089470; Mon, 17 Jun 2019 13:35:18 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906171335.x5HDZIix089470@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Mon, 17 Jun 2019 13:35:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504421 - head/mail/aerc X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/mail/aerc X-SVN-Commit-Revision: 504421 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9DC9369A2B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 13:35:19 -0000 Author: tobik Date: Mon Jun 17 13:35:17 2019 New Revision: 504421 URL: https://svnweb.freebsd.org/changeset/ports/504421 Log: mail/aerc: Update to latest master Also fix handling of tcell dependency which is actually replaced with a patched version. Modified: head/mail/aerc/Makefile head/mail/aerc/distinfo Modified: head/mail/aerc/Makefile ============================================================================== --- head/mail/aerc/Makefile Mon Jun 17 13:29:22 2019 (r504420) +++ head/mail/aerc/Makefile Mon Jun 17 13:35:17 2019 (r504421) @@ -1,8 +1,8 @@ # $FreeBSD$ PORTNAME= aerc -DISTVERSION= 0.1.1-37 -DISTVERSIONSUFFIX= -gd22a914 +DISTVERSION= 0.1.1-53 +DISTVERSIONSUFFIX= -gdfe114b CATEGORIES= mail MAINTAINER= tobik@FreeBSD.org @@ -25,7 +25,6 @@ GH_TUPLE= danwakefield:fnmatch:cbb64ac3d964:danwakefie emersion:go-smtp:v0.11.1:emersion_go_smtp/vendor/github.com/emersion/go-smtp \ emersion:go-textwrapper:d0e65e56babe:emersion_go_textwrapper/vendor/github.com/emersion/go-textwrapper \ gdamore:encoding:v1.0.0:gdamore_encoding/vendor/github.com/gdamore/encoding \ - gdamore:tcell:b5d0c1ac5702:gdamore_tcell/vendor/github.com/gdamore/tcell \ go-ini:ini:v1.42.0:go_ini_ini/vendor/github.com/go-ini/ini \ golang:sys:4c4f7f33c9ed:golang_sys/vendor/golang.org/x/sys \ golang:text:v0.3.2:golang_text/vendor/golang.org/x/text \ @@ -44,9 +43,10 @@ GH_TUPLE= danwakefield:fnmatch:cbb64ac3d964:danwakefie stretchr:testify:v1.3.0:stretchr_testify/vendor/github.com/stretchr/testify # Additional distfiles to fetch from https://git.sr.ht -SRHT_TUPLE= sircmpwn aerc ${DISTVERSIONFULL} \ - sircmpwn getopt e7e23d1cd3a3 \ - sircmpwn pty 3a43678975a9 +SRHT_TUPLE= sircmpwn aerc ${DISTVERSIONFULL} "" \ + sircmpwn getopt e7e23d1cd3a3 vendor/git.sr.ht/~sircmpwn/getopt \ + sircmpwn pty 3a43678975a9 vendor/git.sr.ht/~sircmpwn/pty \ + sircmpwn tcell 1f7dcc638286 vendor/github.com/gdamore/tcell MAKE_ARGS= MANDIR=${STAGEDIR}${PREFIX}/man MAKE_ENV= ${GO_ENV} \ @@ -63,15 +63,15 @@ HTML_FILTER_RUN_DEPENDS= socksify:net/dante \ .include -.for account project tag in ${SRHT_TUPLE} +.for account project tag subdir in ${SRHT_TUPLE} MASTER_SITES+= https://git.sr.ht/~${account}/${project}/archive/${tag}${EXTRACT_SUFX}?dummy=/:${account}_${project} DISTFILES+= ${account}-${project}-${tag}_SRHT0${EXTRACT_SUFX}:${account}_${project} .endfor post-extract: -.for account project tag in ${SRHT_TUPLE:[4..-1]} - @${MKDIR} ${WRKSRC}/vendor/git.sr.ht/~${account} - @${MV} ${WRKDIR}/${project}-${tag} ${WRKSRC}/vendor/git.sr.ht/~${account}/${project} +.for account project tag subdir in ${SRHT_TUPLE:[5..-1]} + @${MKDIR} ${WRKSRC}/${subdir:H} + @${MV} ${WRKDIR}/${project}-${tag} ${WRKSRC}/${subdir} .endfor post-patch: Modified: head/mail/aerc/distinfo ============================================================================== --- head/mail/aerc/distinfo Mon Jun 17 13:29:22 2019 (r504420) +++ head/mail/aerc/distinfo Mon Jun 17 13:35:17 2019 (r504421) @@ -1,10 +1,12 @@ -TIMESTAMP = 1560184690 -SHA256 (sircmpwn-aerc-0.1.1-37-gd22a914_SRHT0.tar.gz) = c47fd1923594e932db31d770e9099b06b7a79b6307e1f1e13ef6b3d3c56e668f -SIZE (sircmpwn-aerc-0.1.1-37-gd22a914_SRHT0.tar.gz) = 63661 +TIMESTAMP = 1560777630 +SHA256 (sircmpwn-aerc-0.1.1-53-gdfe114b_SRHT0.tar.gz) = 081241511fe7a80a96c64acf5b4edc4773f8a63817dc3b4ce0ae7ac5c801671d +SIZE (sircmpwn-aerc-0.1.1-53-gdfe114b_SRHT0.tar.gz) = 65212 SHA256 (sircmpwn-getopt-e7e23d1cd3a3_SRHT0.tar.gz) = 39ce05a3d7f58fdc5cca2c3413a326a5a3e4fb8025470d875818353cb0007ea7 SIZE (sircmpwn-getopt-e7e23d1cd3a3_SRHT0.tar.gz) = 3715 SHA256 (sircmpwn-pty-3a43678975a9_SRHT0.tar.gz) = 3cdfaff4ef27553045417a28e9d8d916ab23a6f32fb565c1dc39246c970094bf SIZE (sircmpwn-pty-3a43678975a9_SRHT0.tar.gz) = 5834 +SHA256 (sircmpwn-tcell-1f7dcc638286_SRHT0.tar.gz) = 597bdd77df220022b7df64b0f139267e97e6af9de7390781d9086c06b8260157 +SIZE (sircmpwn-tcell-1f7dcc638286_SRHT0.tar.gz) = 744326 SHA256 (danwakefield-fnmatch-cbb64ac3d964_GH0.tar.gz) = 7ebff38d382142f9220d2cfcb4731d0ae90cdef71238c94a15c35f8aa746007f SIZE (danwakefield-fnmatch-cbb64ac3d964_GH0.tar.gz) = 4955 SHA256 (davecgh-go-spew-v1.1.1_GH0.tar.gz) = 7d82b9bb7291adbe7498fe946920ab3e7fc9e6cbfc3b2294693fad00bf0dd17e @@ -25,8 +27,6 @@ SHA256 (emersion-go-textwrapper-d0e65e56babe_GH0.tar.g SIZE (emersion-go-textwrapper-d0e65e56babe_GH0.tar.gz) = 2168 SHA256 (gdamore-encoding-v1.0.0_GH0.tar.gz) = 8fb8593a69cd86f16233d63dd6d74181136ec8f22900c509e961a25eb4b2e013 SIZE (gdamore-encoding-v1.0.0_GH0.tar.gz) = 10886 -SHA256 (gdamore-tcell-b5d0c1ac5702_GH0.tar.gz) = f6bae2233826d53b880a462357ab49667b5e124c633e0f1177a8d97e0bc7dd9f -SIZE (gdamore-tcell-b5d0c1ac5702_GH0.tar.gz) = 745939 SHA256 (go-ini-ini-v1.42.0_GH0.tar.gz) = 49136717e5db9000e02f86807cfd9faa98f943553a3c40319020b7c32e7c142c SIZE (go-ini-ini-v1.42.0_GH0.tar.gz) = 35078 SHA256 (golang-sys-4c4f7f33c9ed_GH0.tar.gz) = d1e6184629bc6ad5db894fe80d2e1456f8e5721c9031574d2f721c8c2ef8b1f3 From owner-svn-ports-all@freebsd.org Mon Jun 17 13:37:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 00F2015BA55C; Mon, 17 Jun 2019 13:37:54 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 994A569D42; Mon, 17 Jun 2019 13:37:53 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 721FF264FF; Mon, 17 Jun 2019 13:37:53 +0000 (UTC) (envelope-from mich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HDbrVa090064; Mon, 17 Jun 2019 13:37:53 GMT (envelope-from mich@FreeBSD.org) Received: (from mich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HDbqXx090055; Mon, 17 Jun 2019 13:37:52 GMT (envelope-from mich@FreeBSD.org) Message-Id: <201906171337.x5HDbqXx090055@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mich set sender to mich@FreeBSD.org using -f From: Michael Landin Date: Mon, 17 Jun 2019 13:37:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504422 - in head/comms/tits: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mich X-SVN-Commit-Paths: in head/comms/tits: . files X-SVN-Commit-Revision: 504422 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 994A569D42 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 13:37:54 -0000 Author: mich Date: Mon Jun 17 13:37:52 2019 New Revision: 504422 URL: https://svnweb.freebsd.org/changeset/ports/504422 Log: - update to -> 1.3.0 - cleanup Makefile to keep portlint happy - regenerate patches to keep portlint happy PR: 238610 Submitted by: Thomas Merkel Added: head/comms/tits/files/patch-rtelnet.c (contents, props changed) Deleted: head/comms/tits/files/patch-tty.c Modified: head/comms/tits/Makefile head/comms/tits/distinfo head/comms/tits/files/patch-Makefile head/comms/tits/files/patch-dispatcher.c head/comms/tits/files/patch-listener.c Modified: head/comms/tits/Makefile ============================================================================== --- head/comms/tits/Makefile Mon Jun 17 13:35:17 2019 (r504421) +++ head/comms/tits/Makefile Mon Jun 17 13:37:52 2019 (r504422) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tits -PORTVERSION= 1.1.2 -PORTREVISION= 2 +PORTVERSION= 1.3.0 CATEGORIES= comms MASTER_SITES= http://www.mctavish.co.uk/tits/ @@ -14,6 +13,7 @@ LICENSE= BSD4CLAUSE USES= uidfix USE_RC_SUBR= tits + MAKE_ENV= BINDIR=${PREFIX}/sbin MANDIR=${PREFIX}/man/man post-patch: Modified: head/comms/tits/distinfo ============================================================================== --- head/comms/tits/distinfo Mon Jun 17 13:35:17 2019 (r504421) +++ head/comms/tits/distinfo Mon Jun 17 13:37:52 2019 (r504422) @@ -1,2 +1,3 @@ -SHA256 (tits-1.1.2.tar.gz) = da82e0ca603dbcb59c4d28353a47a70d228e6b2cd6df23f952abe367850970e0 -SIZE (tits-1.1.2.tar.gz) = 21948 +TIMESTAMP = 1560688435 +SHA256 (tits-1.3.0.tar.gz) = f6cd7bf11b8aa730be0ddd6ed6f6a3a8380285959a586e9404d5ec02ef73f237 +SIZE (tits-1.3.0.tar.gz) = 31811 Modified: head/comms/tits/files/patch-Makefile ============================================================================== --- head/comms/tits/files/patch-Makefile Mon Jun 17 13:35:17 2019 (r504421) +++ head/comms/tits/files/patch-Makefile Mon Jun 17 13:37:52 2019 (r504422) @@ -1,6 +1,6 @@ ---- Makefile.orig Wed Sep 24 16:05:07 2003 -+++ Makefile Wed Sep 24 16:06:52 2003 -@@ -29,15 +29,15 @@ +--- Makefile.orig 2011-01-15 12:47:19 UTC ++++ Makefile +@@ -29,22 +29,22 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. @@ -11,11 +11,20 @@ -MAN= tits.8 +MAN8= tits.8 - SRCS= main.c buffer.c client.c context.c listener.c telnet.c tty.c - SRCS+= dispatcher.c setup.c config.c server.c logger.c + SRCS= main.c buffer.c client.c context.c listener.c masterpty.c telnet.c + SRCS+= tty.c dispatcher.c setup.c config.c server.c logger.c stdio2pty.c + SRCS+= rtelnet.c + .if !defined(SMALLPROG) -CPPFLAGS+= -DLIBWRAP -DTITS_DEFAULT_CONFIG_FILE=\"${LOCALBASE}/etc/tits.conf\" +CFLAGS+= -DLIBWRAP -DTITS_DEFAULT_CONFIG_FILE=\"${LOCALBASE}/etc/tits.conf\" LDADD+= -lwrap + .else +-CPPFLAGS+= -DTITS_DEFAULT_CONFIG_FILE=\"/etc/tits.conf\" ++CFLAGS+= -DTITS_DEFAULT_CONFIG_FILE=\"${LOCALBASE}/etc/tits.conf\" + .endif +-CPPFLAGS+= -DTITS_DEFAULT_LINKDIR=\"/var/run\" ++CFLAGS+= -DTITS_DEFAULT_LINKDIR=\"/var/run\" PREFIX?= /usr/local BINDIR?= ${PREFIX}/sbin + Modified: head/comms/tits/files/patch-dispatcher.c ============================================================================== --- head/comms/tits/files/patch-dispatcher.c Mon Jun 17 13:35:17 2019 (r504421) +++ head/comms/tits/files/patch-dispatcher.c Mon Jun 17 13:37:52 2019 (r504422) @@ -1,11 +1,11 @@ ---- dispatcher.c.orig Tue Sep 24 13:21:42 2002 -+++ dispatcher.c Tue Sep 24 13:23:15 2002 -@@ -131,7 +131,7 @@ +--- dispatcher.c.orig 2006-03-19 11:34:47 UTC ++++ dispatcher.c +@@ -237,7 +237,7 @@ dispatcher_mainloop(void) struct context *ctx; struct client_ctx *cc; struct pollfd *pf; - nfds_t pfds; + unsigned int pfds; int nfds, errcnt = 0; - - while (!TAILQ_EMPTY(&contexts)) { + int timeout; + time_t delta = 0; Modified: head/comms/tits/files/patch-listener.c ============================================================================== --- head/comms/tits/files/patch-listener.c Mon Jun 17 13:35:17 2019 (r504421) +++ head/comms/tits/files/patch-listener.c Mon Jun 17 13:37:52 2019 (r504422) @@ -1,12 +1,13 @@ ---- listener.c.orig +--- listener.c.orig 2009-11-16 14:30:13 UTC +++ listener.c -@@ -189,10 +189,6 @@ +@@ -189,11 +189,6 @@ listener_destroy(struct client_ctx *cc) NULL) context_del_client(cc->cc_ctx, ccc); - if (lc->lc_args.la_address) - (void) free(lc->lc_args.la_address); -- (void) free(lc->lc_args.la_port); +- if (lc->lc_args.la_port) +- (void) free(lc->lc_args.la_port); - (void) free(lc); } Added: head/comms/tits/files/patch-rtelnet.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/tits/files/patch-rtelnet.c Mon Jun 17 13:37:52 2019 (r504422) @@ -0,0 +1,11 @@ +--- rtelnet.c.orig 2019-06-17 13:22:22 UTC ++++ rtelnet.c +@@ -900,7 +900,7 @@ cf_rtelnet_port(void *cs, char **argv, i + + if (isdigit((unsigned char)argv[1][0])) { + ro->ro_port = atoi(argv[1]); +- if (ro->ro_port < 0 || ro->ro_port > IPPORT_ANONMAX) ++ if (ro->ro_port < 0 || ro->ro_port > IPPORT_MAX) + return (config_err(cs, "Invalid port number '%s'", + argv[1])); + } else From owner-svn-ports-all@freebsd.org Mon Jun 17 13:38:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E61915BA5A3; Mon, 17 Jun 2019 13:38:18 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AFFCF69E32; Mon, 17 Jun 2019 13:38:17 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7F0F626501; Mon, 17 Jun 2019 13:38:17 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HDcHcW090295; Mon, 17 Jun 2019 13:38:17 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HDcHPd090293; Mon, 17 Jun 2019 13:38:17 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906171338.x5HDcHPd090293@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 17 Jun 2019 13:38:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504423 - in head/www/minio: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/www/minio: . files X-SVN-Commit-Revision: 504423 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AFFCF69E32 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 13:38:18 -0000 Author: swills Date: Mon Jun 17 13:38:16 2019 New Revision: 504423 URL: https://svnweb.freebsd.org/changeset/ports/504423 Log: www/minio: update to 2019.06.15.23.07.18 Deleted: head/www/minio/files/patch-vendor_github.com_minio_parquet-go_column.go head/www/minio/files/patch-vendor_github.com_minio_parquet-go_reader.go Modified: head/www/minio/Makefile (contents, props changed) head/www/minio/distinfo (contents, props changed) Modified: head/www/minio/Makefile ============================================================================== --- head/www/minio/Makefile Mon Jun 17 13:37:52 2019 (r504422) +++ head/www/minio/Makefile Mon Jun 17 13:38:16 2019 (r504423) @@ -14,8 +14,8 @@ BUILD_DEPENDS= go>=1.9.4:lang/go USES= compiler USE_GITHUB= yes -GHTAG= RELEASE.2019-06-13T01-41-13Z -COMMIT_ID= c22439c82e5679175a99b051d10fac48cd311af0 +GHTAG= RELEASE.2019-06-15T23-07-18Z +COMMIT_ID= 99bf4d0c429f04dbd013ba98840d07b759ae1702 GH_TUPLE= ${PORTNAME}:${PORTNAME}:${GHTAG}:DEFAULT/src/github.com/${PORTNAME}/${PORTNAME} \ Azure:azure-sdk-for-go:v27.0.0:azure_azure_sdk_for_go/vendor/github.com/Azure/azure-sdk-for-go \ Azure:go-autorest:v11.7.0:azure_go_autorest/vendor/github.com/Azure/go-autorest \ @@ -48,8 +48,8 @@ GH_TUPLE= ${PORTNAME}:${PORTNAME}:${GHTAG}:DEFAULT/src go-yaml:yaml:v2.2.2:go_yaml_yaml/vendor/gopkg.in/yaml.v2 \ gogo:protobuf:v1.2.1:gogo_protobuf/vendor/github.com/gogo/protobuf \ golang:appengine:v1.4.0:golang_appengine/vendor/google.golang.org/appengine \ - golang:crypto:f99c8df09eb5:golang_crypto/vendor/golang.org/x/crypto \ - golang:net:461777fb6f67:golang_net/vendor/golang.org/x/net \ + golang:crypto:5c40567a22f8:golang_crypto/vendor/golang.org/x/crypto \ + golang:net:3f473d35a33a:golang_net/vendor/golang.org/x/net \ golang:oauth2:e64efc72b421:golang_oauth2/vendor/golang.org/x/oauth2 \ golang:protobuf:v1.3.1:golang_protobuf/vendor/github.com/golang/protobuf \ golang:snappy:v0.0.1:golang_snappy/vendor/github.com/golang/snappy \ @@ -105,8 +105,8 @@ GH_TUPLE= ${PORTNAME}:${PORTNAME}:${GHTAG}:DEFAULT/src minio:highwayhash:v1.0.0:minio_highwayhash/vendor/github.com/minio/highwayhash \ minio:lsync:v0.1.0:minio_lsync/vendor/github.com/minio/lsync \ minio:mc:f4bb0b8850cb:minio_mc/vendor/github.com/minio/mc \ - swills:minio-go:5325257a208f:swills_minio_go/vendor/github.com/swills/minio-go \ - minio:minio-go:v6.0.29:minio_minio_go/vendor/github.com/minio/minio-go/v6 \ + minio:minio-go:5325257a208f:minio_minio_go/vendor/github.com/minio/minio-go \ + minio:minio-go:v6.0.29:dup_minio_go/vendor/github.com/minio/minio-go/v6 \ minio:parquet-go:9d767baf1679:minio_parquet_go/vendor/github.com/minio/parquet-go \ minio:sha256-simd:v0.1.0:minio_sha256_simd/vendor/github.com/minio/sha256-simd \ minio:sio:v0.2.0:minio_sio/vendor/github.com/minio/sio \ @@ -142,7 +142,6 @@ GH_TUPLE= ${PORTNAME}:${PORTNAME}:${GHTAG}:DEFAULT/src tidwall:sjson:v1.0.4:tidwall_sjson/vendor/github.com/tidwall/sjson \ uber-go:atomic:v1.3.2:uber_go_atomic/vendor/go.uber.org/atomic \ valyala:tcplisten:ceec8f93295a:valyala_tcplisten/vendor/github.com/valyala/tcplisten - PLIST_FILES= bin/${PORTNAME} USE_RC_SUBR= minio Modified: head/www/minio/distinfo ============================================================================== --- head/www/minio/distinfo Mon Jun 17 13:37:52 2019 (r504422) +++ head/www/minio/distinfo Mon Jun 17 13:38:16 2019 (r504423) @@ -1,6 +1,6 @@ -TIMESTAMP = 1560541526 -SHA256 (minio-minio-2019.06.13.01.41.13-RELEASE.2019-06-13T01-41-13Z_GH0.tar.gz) = 0e42aecf1ad5fe07b2f495b19983eeb58809835bbeb332d783b21f2d0becd0e7 -SIZE (minio-minio-2019.06.13.01.41.13-RELEASE.2019-06-13T01-41-13Z_GH0.tar.gz) = 6024948 +TIMESTAMP = 1560773089 +SHA256 (minio-minio-2019.06.15.23.07.18-RELEASE.2019-06-15T23-07-18Z_GH0.tar.gz) = ecf22d296161b99d1666c0eeeb022d00a85fbde9a8d7067b93e1b1c6abc9cc56 +SIZE (minio-minio-2019.06.15.23.07.18-RELEASE.2019-06-15T23-07-18Z_GH0.tar.gz) = 6025407 SHA256 (Azure-azure-sdk-for-go-v27.0.0_GH0.tar.gz) = f2bce0d1d66e7de797bbb533a4b3adc199c7b96858daba7aafb774c8c5b40df7 SIZE (Azure-azure-sdk-for-go-v27.0.0_GH0.tar.gz) = 14855275 SHA256 (Azure-go-autorest-v11.7.0_GH0.tar.gz) = 82e5c0f834745dce6ec28f7244c84c3acea313e7d94265333f90d3c3f01077cc @@ -63,10 +63,10 @@ SHA256 (gogo-protobuf-v1.2.1_GH0.tar.gz) = 99e423905ba SIZE (gogo-protobuf-v1.2.1_GH0.tar.gz) = 2017393 SHA256 (golang-appengine-v1.4.0_GH0.tar.gz) = 88b39d4ea8c910849238fea21a52b7fbb53ed63bce64c2496959ebdb8ab36dad SIZE (golang-appengine-v1.4.0_GH0.tar.gz) = 325752 -SHA256 (golang-crypto-f99c8df09eb5_GH0.tar.gz) = dc797c3718a32db5df5b4fd4832d39c7c1be54fcde444e6eb9b1e4e4f5f3c7f9 -SIZE (golang-crypto-f99c8df09eb5_GH0.tar.gz) = 1690862 -SHA256 (golang-net-461777fb6f67_GH0.tar.gz) = 1dc95aa81b16c8a1dc2c4812d33b6765bf4ffc59f81fa6e0a25ebcc6b33e0291 -SIZE (golang-net-461777fb6f67_GH0.tar.gz) = 1097150 +SHA256 (golang-crypto-5c40567a22f8_GH0.tar.gz) = d6ca43aa1a344adee0c1f45ad31172e0d195b6e17ea269dfd212c2c203a58cf0 +SIZE (golang-crypto-5c40567a22f8_GH0.tar.gz) = 1690710 +SHA256 (golang-net-3f473d35a33a_GH0.tar.gz) = 8da4376fc1b690c141be2e94b513abb91ed651ec5c01dc489e693bc62ba1ad2a +SIZE (golang-net-3f473d35a33a_GH0.tar.gz) = 1097175 SHA256 (golang-oauth2-e64efc72b421_GH0.tar.gz) = 57d72dade5296668b882199a017fa448bdd015cd964115b542ad7e695d393eae SIZE (golang-oauth2-e64efc72b421_GH0.tar.gz) = 44971 SHA256 (golang-protobuf-v1.3.1_GH0.tar.gz) = 3f3a6123054a9847093c119895f1660612f301fe95358f3a6a1a33fd0933e6cf @@ -177,8 +177,8 @@ SHA256 (minio-lsync-v0.1.0_GH0.tar.gz) = 2cb94b1d3c54a SIZE (minio-lsync-v0.1.0_GH0.tar.gz) = 8183 SHA256 (minio-mc-f4bb0b8850cb_GH0.tar.gz) = dc7b628ac282298b1354d83a2314e2843a785a807c3b990cbf13dcbe3f640747 SIZE (minio-mc-f4bb0b8850cb_GH0.tar.gz) = 278141 -SHA256 (swills-minio-go-5325257a208f_GH0.tar.gz) = 99957ad25c614a9c18dac49837842829b1a88019dc1208e85391b7176c246ab1 -SIZE (swills-minio-go-5325257a208f_GH0.tar.gz) = 190573 +SHA256 (minio-minio-go-5325257a208f_GH0.tar.gz) = 99957ad25c614a9c18dac49837842829b1a88019dc1208e85391b7176c246ab1 +SIZE (minio-minio-go-5325257a208f_GH0.tar.gz) = 190573 SHA256 (minio-minio-go-v6.0.29_GH0.tar.gz) = 61dc6fb4adabee63041d1377e830e845272d8a7d744c672bc34dfd2ecf0ccd81 SIZE (minio-minio-go-v6.0.29_GH0.tar.gz) = 195380 SHA256 (minio-parquet-go-9d767baf1679_GH0.tar.gz) = cb3a9de92fc5b0166cfe5665473e2b012774c85e3584c5801269baff738c2b79 From owner-svn-ports-all@freebsd.org Mon Jun 17 13:38:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AFD1615BA626; Mon, 17 Jun 2019 13:38:49 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FDCE69F27; Mon, 17 Jun 2019 13:38:49 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 29D3726503; Mon, 17 Jun 2019 13:38:49 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HDcnOb090495; Mon, 17 Jun 2019 13:38:49 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HDcmFR090493; Mon, 17 Jun 2019 13:38:48 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201906171338.x5HDcmFR090493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Mon, 17 Jun 2019 13:38:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504424 - head/www/youtube_dl X-SVN-Group: ports-head X-SVN-Commit-Author: araujo X-SVN-Commit-Paths: head/www/youtube_dl X-SVN-Commit-Revision: 504424 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4FDCE69F27 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 13:38:49 -0000 Author: araujo Date: Mon Jun 17 13:38:48 2019 New Revision: 504424 URL: https://svnweb.freebsd.org/changeset/ports/504424 Log: Update to 2019.06.08. PR: 238611, 238303 Submitted by: lwhsu and Greg Fitzgerald Reported by: many Modified: head/www/youtube_dl/Makefile head/www/youtube_dl/distinfo Modified: head/www/youtube_dl/Makefile ============================================================================== --- head/www/youtube_dl/Makefile Mon Jun 17 13:38:16 2019 (r504423) +++ head/www/youtube_dl/Makefile Mon Jun 17 13:38:48 2019 (r504424) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= youtube_dl -PORTVERSION= 2019.04.24 +PORTVERSION= 2019.06.08 CATEGORIES= www MASTER_SITES= https://yt-dl.org/downloads/${PORTVERSION}/ DISTNAME= youtube-dl-${PORTVERSION} Modified: head/www/youtube_dl/distinfo ============================================================================== --- head/www/youtube_dl/distinfo Mon Jun 17 13:38:16 2019 (r504423) +++ head/www/youtube_dl/distinfo Mon Jun 17 13:38:48 2019 (r504424) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556118471 -SHA256 (youtube-dl-2019.04.24.tar.gz) = 1fbf54fb2f1ba3050da0cefe3cfa23604d445c8dc944202caf281d83851fffcf -SIZE (youtube-dl-2019.04.24.tar.gz) = 3152789 +TIMESTAMP = 1560778086 +SHA256 (youtube-dl-2019.06.08.tar.gz) = 275a8506ecd6c72589bfc66b749cd80847e7393df1d6e1becd1d11ba90980837 +SIZE (youtube-dl-2019.06.08.tar.gz) = 3169571 From owner-svn-ports-all@freebsd.org Mon Jun 17 14:06:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9077815BAE62; Mon, 17 Jun 2019 14:06:26 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2E0696AEF8; Mon, 17 Jun 2019 14:06:26 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 04030269E3; Mon, 17 Jun 2019 14:06:26 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HE6Pkd009217; Mon, 17 Jun 2019 14:06:25 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HE6PNt009214; Mon, 17 Jun 2019 14:06:25 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201906171406.x5HE6PNt009214@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Mon, 17 Jun 2019 14:06:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504425 - head/lang/erlang-runtime20 X-SVN-Group: ports-head X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: head/lang/erlang-runtime20 X-SVN-Commit-Revision: 504425 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2E0696AEF8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.94)[-0.937,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 14:06:26 -0000 Author: olgeni Date: Mon Jun 17 14:06:25 2019 New Revision: 504425 URL: https://svnweb.freebsd.org/changeset/ports/504425 Log: Update lang/erlang-runtime20 to version 20.3.8.22. Modified: head/lang/erlang-runtime20/Makefile head/lang/erlang-runtime20/distinfo Modified: head/lang/erlang-runtime20/Makefile ============================================================================== --- head/lang/erlang-runtime20/Makefile Mon Jun 17 13:38:48 2019 (r504424) +++ head/lang/erlang-runtime20/Makefile Mon Jun 17 14:06:25 2019 (r504425) @@ -3,7 +3,7 @@ PORTNAME= erlang DISTVERSIONPREFIX= OTP- -DISTVERSION= 20.3.8.21 +DISTVERSION= 20.3.8.22 CATEGORIES= lang parallel java PKGNAMESUFFIX= -runtime20 DIST_SUBDIR= erlang Modified: head/lang/erlang-runtime20/distinfo ============================================================================== --- head/lang/erlang-runtime20/distinfo Mon Jun 17 13:38:48 2019 (r504424) +++ head/lang/erlang-runtime20/distinfo Mon Jun 17 14:06:25 2019 (r504425) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555497565 -SHA256 (erlang/erlang-otp-OTP-20.3.8.21_GH0.tar.gz) = 50413c5784aeb33368806593a258f18adfc4e62687a4928c12f2c1a9ca2259fd -SIZE (erlang/erlang-otp-OTP-20.3.8.21_GH0.tar.gz) = 53541735 +TIMESTAMP = 1560769218 +SHA256 (erlang/erlang-otp-OTP-20.3.8.22_GH0.tar.gz) = d2c36130938659a63d8de094c3d4f8a1d3ea33d4d993d0723ba9c745df2a2753 +SIZE (erlang/erlang-otp-OTP-20.3.8.22_GH0.tar.gz) = 53544255 From owner-svn-ports-all@freebsd.org Mon Jun 17 15:09:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F1EC15BC5E4; Mon, 17 Jun 2019 15:09:47 +0000 (UTC) (envelope-from johalun@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C4CBC6D5C8; Mon, 17 Jun 2019 15:09:46 +0000 (UTC) (envelope-from johalun@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9EB9627445; Mon, 17 Jun 2019 15:09:46 +0000 (UTC) (envelope-from johalun@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HF9ksV045821; Mon, 17 Jun 2019 15:09:46 GMT (envelope-from johalun@FreeBSD.org) Received: (from johalun@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HF9jZw045815; Mon, 17 Jun 2019 15:09:45 GMT (envelope-from johalun@FreeBSD.org) Message-Id: <201906171509.x5HF9jZw045815@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: johalun set sender to johalun@FreeBSD.org using -f From: Johannes Lundberg Date: Mon, 17 Jun 2019 15:09:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504426 - in head: graphics graphics/libxatracker x11-drivers/xf86-video-vmware x11-drivers/xf86-video-vmware/files X-SVN-Group: ports-head X-SVN-Commit-Author: johalun X-SVN-Commit-Paths: in head: graphics graphics/libxatracker x11-drivers/xf86-video-vmware x11-drivers/xf86-video-vmware/files X-SVN-Commit-Revision: 504426 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C4CBC6D5C8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 15:09:47 -0000 Author: johalun (src committer) Date: Mon Jun 17 15:09:45 2019 New Revision: 504426 URL: https://svnweb.freebsd.org/changeset/ports/504426 Log: New port: graphics/libxatracker XA Tracker is built from Mesa sources and is required by xf86-video-vmware in order to take advantage of accelerated graphics using the vmwgfx kernel DRM driver. This commit also adds libdrm as a runtime requirement for xf86-video-vmware and patches the DRI device loading routine to work outside of Linux. If no DRI device exists (vmwgfx kernel driver is not loaded), xf86-video-vmware will fallback to software rendering. The vmwgfx kernel driver is available in the drm-kmod port. Reviewed by: zeising Approved by: imp (mentor), zeising Differential Revision: D20153 Added: head/graphics/libxatracker/ head/graphics/libxatracker/Makefile (contents, props changed) head/graphics/libxatracker/pkg-descr (contents, props changed) head/graphics/libxatracker/pkg-plist (contents, props changed) head/x11-drivers/xf86-video-vmware/files/patch-vmwgfx_vmwgfx__dri2.c (contents, props changed) Modified: head/graphics/Makefile head/x11-drivers/xf86-video-vmware/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon Jun 17 14:06:25 2019 (r504425) +++ head/graphics/Makefile Mon Jun 17 15:09:45 2019 (r504426) @@ -499,6 +499,7 @@ SUBDIR += libwmf SUBDIR += libwmf-nox11 SUBDIR += libwpg03 + SUBDIR += libxatracker SUBDIR += libyuv SUBDIR += libzmf SUBDIR += lightzone Added: head/graphics/libxatracker/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libxatracker/Makefile Mon Jun 17 15:09:45 2019 (r504426) @@ -0,0 +1,36 @@ +# Created by: johalun +# $FreeBSD$ + +PORTNAME= libxatracker +PORTVERSION= ${MESAVERSION} +CATEGORIES= graphics + +COMMENT= Mesa XA state tracker + +USE_XORG= xorgproto + +.include +.include "${.CURDIR:H:H}/graphics/mesa-dri/Makefile.common" + +ONLY_FOR_ARCHS= i386 amd64 +ONLY_FOR_ARCHS_REASON= Used only by VMWare supported architectures + +CONFIGURE_ARGS+= --disable-dri \ + --disable-egl \ + --disable-gbm \ + --disable-gles2 \ + --disable-glx \ + --disable-opengl \ + --disable-shared-glapi \ + --with-gallium-drivers= \ + --with-platforms= + +MESA_BUILD_WRKSRC= src/util src/compiler +LDFLAGS_i386= -Wl,-znotext + +CONFIGURE_ARGS+= --enable-xa +MESA_BUILD_WRKSRC+= src/gallium +MESA_INSTALL_WRKSRC= src/gallium/state_trackers/xa src/gallium/targets/xa + +.include "${MASTERDIR}/Makefile.targets" +.include Added: head/graphics/libxatracker/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libxatracker/pkg-descr Mon Jun 17 15:09:45 2019 (r504426) @@ -0,0 +1,9 @@ +Mesa is a 3-D graphics library with an API which is very similar to that +of OpenGL*. To the extent that Mesa utilizes the OpenGL command syntax or +state machine, it is being used with authorization from Silicon Graphics, +Inc. However, the author makes no claim that Mesa is in any way a +compatible replacement for OpenGL or associated with Silicon Graphics, Inc. + +XA is a new state tracker designed by VMWare for their virtual GPU driver "vmwgfx". + +WWW: http://www.mesa3d.org/ Added: head/graphics/libxatracker/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/libxatracker/pkg-plist Mon Jun 17 15:09:45 2019 (r504426) @@ -0,0 +1,7 @@ +include/xa_composite.h +include/xa_context.h +include/xa_tracker.h +lib/libxatracker.so +lib/libxatracker.so.2 +lib/libxatracker.so.2.4.0 +libdata/pkgconfig/xatracker.pc Modified: head/x11-drivers/xf86-video-vmware/Makefile ============================================================================== --- head/x11-drivers/xf86-video-vmware/Makefile Mon Jun 17 14:06:25 2019 (r504425) +++ head/x11-drivers/xf86-video-vmware/Makefile Mon Jun 17 15:09:45 2019 (r504426) @@ -16,6 +16,11 @@ ONLY_FOR_ARCHS_REASON= The vmware gfx protocol is only XORG_CAT= driver +LIB_DEPENDS+= libdrm.so:graphics/libdrm \ + libxatracker.so:graphics/libxatracker + +CONFIGURE_ARGS= --without-libudev + .include .if ${ARCH} == i386 Added: head/x11-drivers/xf86-video-vmware/files/patch-vmwgfx_vmwgfx__dri2.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-drivers/xf86-video-vmware/files/patch-vmwgfx_vmwgfx__dri2.c Mon Jun 17 15:09:45 2019 (r504426) @@ -0,0 +1,44 @@ +--- vmwgfx/vmwgfx_dri2.c.orig 2018-05-17 07:42:24 UTC ++++ vmwgfx/vmwgfx_dri2.c +@@ -413,8 +413,7 @@ xorg_dri2_init(ScreenPtr pScreen) + modesettingPtr ms = modesettingPTR(pScrn); + DRI2InfoRec dri2info; + int major, minor; +- char fdPath[VMWGFX_FD_PATH_LEN]; +- ssize_t numChar; ++ const char *dev_name; + + memset(&dri2info, 0, sizeof(dri2info)); + +@@ -430,20 +429,13 @@ xorg_dri2_init(ScreenPtr pScreen) + dri2info.fd = ms->fd; + dri2info.driverName = "vmwgfx"; + +- /* +- * This way of obtaining the DRM device name is a bit +- * os-specific. It would be better to obtain it from +- * drmOpen. Currently this works only for Linux. +- */ +- memset(fdPath, 0, VMWGFX_FD_PATH_LEN); +- snprintf(fdPath, VMWGFX_FD_PATH_LEN - 1, "/proc/self/fd/%d", ms->fd); +- numChar = readlink(fdPath, ms->dri2_device_name, VMWGFX_DRI_DEVICE_LEN); +- if (numChar <= 0 || numChar >= VMWGFX_DRI_DEVICE_LEN) { ++ dev_name = drmGetDeviceNameFromFd2(ms->fd); ++ if (!dev_name) { + xf86DrvMsg(pScrn->scrnIndex, X_ERROR, + "Could not find the drm device name. Disabling dri2.\n"); + return FALSE; + } +- ms->dri2_device_name[numChar] = 0; ++ strncpy(ms->dri2_device_name, dev_name, VMWGFX_DRI_DEVICE_LEN); + dri2info.deviceName = ms->dri2_device_name; + xf86DrvMsg(pScrn->scrnIndex, X_INFO, + "Path of drm device is \"%s\".\n", ms->dri2_device_name); +@@ -466,6 +458,7 @@ xorg_dri2_init(ScreenPtr pScreen) + dri2info.AuthMagic3 = vmw_dri_auth_magic3; + } + #endif ++ free(dev_name); + + return DRI2ScreenInit(pScreen, &dri2info); + } From owner-svn-ports-all@freebsd.org Mon Jun 17 15:10:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85EEF15BC66A; Mon, 17 Jun 2019 15:10:20 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 250526D710; Mon, 17 Jun 2019 15:10:20 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F01A12745C; Mon, 17 Jun 2019 15:10:19 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HFAJlt046013; Mon, 17 Jun 2019 15:10:19 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HFAJJu046011; Mon, 17 Jun 2019 15:10:19 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201906171510.x5HFAJJu046011@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Mon, 17 Jun 2019 15:10:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504427 - in head/sysutils/xfce4-systemload-plugin: . files X-SVN-Group: ports-head X-SVN-Commit-Author: woodsb02 X-SVN-Commit-Paths: in head/sysutils/xfce4-systemload-plugin: . files X-SVN-Commit-Revision: 504427 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 250526D710 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 15:10:20 -0000 Author: woodsb02 Date: Mon Jun 17 15:10:19 2019 New Revision: 504427 URL: https://svnweb.freebsd.org/changeset/ports/504427 Log: sysutils/xfce4-systemload-plugin: Fix crash on properties dialog Import patch from upstream: https://git.xfce.org/panel-plugins/xfce4-systemload-plugin/commit/?id=b35286b81e2b6166338008cb9330cf54b0d82250 Approved by: madpilot (xfce) Differential Revision: https://reviews.freebsd.org/D20672 Added: head/sysutils/xfce4-systemload-plugin/files/ head/sysutils/xfce4-systemload-plugin/files/patch-fix-crash-on-properties-dialog (contents, props changed) Modified: head/sysutils/xfce4-systemload-plugin/Makefile Modified: head/sysutils/xfce4-systemload-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-systemload-plugin/Makefile Mon Jun 17 15:09:45 2019 (r504426) +++ head/sysutils/xfce4-systemload-plugin/Makefile Mon Jun 17 15:10:19 2019 (r504427) @@ -3,6 +3,7 @@ PORTNAME= xfce4-systemload-plugin PORTVERSION= 1.2.2 +PORTREVISION= 1 CATEGORIES= sysutils xfce MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} DIST_SUBDIR= xfce4 Added: head/sysutils/xfce4-systemload-plugin/files/patch-fix-crash-on-properties-dialog ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/xfce4-systemload-plugin/files/patch-fix-crash-on-properties-dialog Mon Jun 17 15:10:19 2019 (r504427) @@ -0,0 +1,31 @@ +From b35286b81e2b6166338008cb9330cf54b0d82250 Mon Sep 17 00:00:00 2001 +From: Landry Breuil +Date: Mon, 10 Dec 2018 09:57:58 +0100 +Subject: Fix a crash when opening the properties dialog + +introduced in dd5397b3, crash witnessed on OpenBSD and FreeBSD - better setting +the mnemonic widget when the widget has been created. +--- + panel-plugin/systemload.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/panel-plugin/systemload.c b/panel-plugin/systemload.c +index 089b704..ee11297 100644 +--- panel-plugin/systemload.c.orig 2018-11-29 16:44:33 UTC ++++ panel-plugin/systemload.c +@@ -806,7 +806,6 @@ static void new_monitor_setting(t_global_monitor *glob + gtk_widget_set_halign (label, GTK_ALIGN_START); + gtk_widget_set_valign (label, GTK_ALIGN_CENTER); + gtk_widget_set_margin_start (label, 12); +- gtk_label_set_mnemonic_widget (GTK_LABEL (label), button); + gtk_grid_attach (GTK_GRID(subgrid), label, 0, 0, 1, 1); + + /* Entry for the optional monitor label */ +@@ -822,6 +821,7 @@ static void new_monitor_setting(t_global_monitor *glob + + /* Colorbutton to set the progressbar color */ + button = gtk_color_button_new_with_rgba(colorvar); ++ gtk_label_set_mnemonic_widget (GTK_LABEL (label), button); + gtk_widget_set_halign(button, GTK_ALIGN_START); + g_object_set_data(G_OBJECT(button), "colorvar", colorvar); + g_signal_connect(G_OBJECT(button), "color-set", From owner-svn-ports-all@freebsd.org Mon Jun 17 16:00:34 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A422615BDFCF; Mon, 17 Jun 2019 16:00:34 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 484466FC59; Mon, 17 Jun 2019 16:00:34 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2066927D6C; Mon, 17 Jun 2019 16:00:34 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HG0Yja072357; Mon, 17 Jun 2019 16:00:34 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HG0XXi072355; Mon, 17 Jun 2019 16:00:33 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906171600.x5HG0XXi072355@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 17 Jun 2019 16:00:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504428 - head/lang/clojure X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/lang/clojure X-SVN-Commit-Revision: 504428 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 484466FC59 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 16:00:34 -0000 Author: swills Date: Mon Jun 17 16:00:33 2019 New Revision: 504428 URL: https://svnweb.freebsd.org/changeset/ports/504428 Log: lang/clojure: Update to 1.10.1 PR: 238419 Submitted by: Sebastian Schwarz Approved by: Jens Grassel (maintainer) Modified: head/lang/clojure/Makefile (contents, props changed) head/lang/clojure/distinfo (contents, props changed) Modified: head/lang/clojure/Makefile ============================================================================== --- head/lang/clojure/Makefile Mon Jun 17 15:10:19 2019 (r504427) +++ head/lang/clojure/Makefile Mon Jun 17 16:00:33 2019 (r504428) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= clojure -PORTVERSION= 1.10.0.411 +PORTVERSION= 1.10.1.447 CATEGORIES= lang lisp java MASTER_SITES= https://download.clojure.org/install/ DISTNAME= clojure-tools-${PORTVERSION} Modified: head/lang/clojure/distinfo ============================================================================== --- head/lang/clojure/distinfo Mon Jun 17 15:10:19 2019 (r504427) +++ head/lang/clojure/distinfo Mon Jun 17 16:00:33 2019 (r504428) @@ -1,3 +1,3 @@ -TIMESTAMP = 1549118889 -SHA256 (clojure-tools-1.10.0.411.tar.gz) = f0836d56a32f8c76e20d75d442e04ef5c29b023e69d284baaf0ff298b8b17001 -SIZE (clojure-tools-1.10.0.411.tar.gz) = 19732792 +TIMESTAMP = 1559942101 +SHA256 (clojure-tools-1.10.1.447.tar.gz) = 0ca99763309d92ed7216dbbb29d448e4056305419f0560737d8c893a1f3d1040 +SIZE (clojure-tools-1.10.1.447.tar.gz) = 19748862 From owner-svn-ports-all@freebsd.org Mon Jun 17 16:14:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 36B8115BE524; Mon, 17 Jun 2019 16:14:05 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CE13570593; Mon, 17 Jun 2019 16:14:04 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A87D012B; Mon, 17 Jun 2019 16:14:04 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HGE4I2082565; Mon, 17 Jun 2019 16:14:04 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HGE4Wu082564; Mon, 17 Jun 2019 16:14:04 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201906171614.x5HGE4Wu082564@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Mon, 17 Jun 2019 16:14:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504429 - head/lang/gcc10-devel X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: head/lang/gcc10-devel X-SVN-Commit-Revision: 504429 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CE13570593 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 16:14:05 -0000 Author: gerald Date: Mon Jun 17 16:14:04 2019 New Revision: 504429 URL: https://svnweb.freebsd.org/changeset/ports/504429 Log: Update to the 20190616 snapshot of GCC 10.0.0. Modified: head/lang/gcc10-devel/Makefile head/lang/gcc10-devel/distinfo Modified: head/lang/gcc10-devel/Makefile ============================================================================== --- head/lang/gcc10-devel/Makefile Mon Jun 17 16:00:33 2019 (r504428) +++ head/lang/gcc10-devel/Makefile Mon Jun 17 16:14:04 2019 (r504429) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 10.0.0.s20190609 +PORTVERSION= 10.0.0.s20190616 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel Modified: head/lang/gcc10-devel/distinfo ============================================================================== --- head/lang/gcc10-devel/distinfo Mon Jun 17 16:00:33 2019 (r504428) +++ head/lang/gcc10-devel/distinfo Mon Jun 17 16:14:04 2019 (r504429) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560159862 -SHA256 (gcc-10-20190609.tar.xz) = c7bebaeb2fb8f214fe36bb0b478d63eca9ce882263d55562dcc87f089df634bb -SIZE (gcc-10-20190609.tar.xz) = 68948440 +TIMESTAMP = 1560778302 +SHA256 (gcc-10-20190616.tar.xz) = a4dbf3b28bad34712d084a2cf269144edcd3112d3c925443a94953a87d3e11ba +SIZE (gcc-10-20190616.tar.xz) = 69071852 From owner-svn-ports-all@freebsd.org Mon Jun 17 16:52:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 937EA15BF3B3; Mon, 17 Jun 2019 16:52:51 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3AEFC71C96; Mon, 17 Jun 2019 16:52:51 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 06523812; Mon, 17 Jun 2019 16:52:51 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HGqoOe003565; Mon, 17 Jun 2019 16:52:50 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HGqorq003563; Mon, 17 Jun 2019 16:52:50 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201906171652.x5HGqorq003563@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Mon, 17 Jun 2019 16:52:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504430 - in head/graphics/instant-meshes: . files X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head/graphics/instant-meshes: . files X-SVN-Commit-Revision: 504430 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3AEFC71C96 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 16:52:51 -0000 Author: rene Date: Mon Jun 17 16:52:50 2019 New Revision: 504430 URL: https://svnweb.freebsd.org/changeset/ports/504430 Log: graphics/instant-meshes: include dirent.h instead of sys/dir.h which is scheduled for removal. While here modernize USES PR: 238620 Submitted by: rene Approved by: Greg V (maintainer) Event: Berlin Hackathon 2019 (generating the patch) Modified: head/graphics/instant-meshes/Makefile head/graphics/instant-meshes/files/patch-ext_nanogui_src_common.cpp Modified: head/graphics/instant-meshes/Makefile ============================================================================== --- head/graphics/instant-meshes/Makefile Mon Jun 17 16:14:04 2019 (r504429) +++ head/graphics/instant-meshes/Makefile Mon Jun 17 16:52:50 2019 (r504430) @@ -17,7 +17,7 @@ LIB_DEPENDS= libglfw.so:graphics/glfw \ libtbb.so:devel/tbb RUN_DEPENDS= zenity:x11/zenity -USES= cmake compiler:c++14-lang eigen:3 localbase:ldflags pkgconfig +USES= cmake compiler:c++14-lang eigen:3 gl localbase:ldflags pkgconfig USE_GITHUB= yes GH_ACCOUNT= wjakob GH_TUPLE= wjakob:nanogui:2a61f03:nanogui/ext/nanogui \ Modified: head/graphics/instant-meshes/files/patch-ext_nanogui_src_common.cpp ============================================================================== --- head/graphics/instant-meshes/files/patch-ext_nanogui_src_common.cpp Mon Jun 17 16:14:04 2019 (r504429) +++ head/graphics/instant-meshes/files/patch-ext_nanogui_src_common.cpp Mon Jun 17 16:52:50 2019 (r504430) @@ -1,6 +1,15 @@ --- ext/nanogui/src/common.cpp.orig 2016-10-15 20:12:12 UTC +++ ext/nanogui/src/common.cpp -@@ -248,7 +248,7 @@ std::string file_dialog(const std::vecto +@@ -24,7 +24,7 @@ + #if !defined(_WIN32) + #include + #include +- #include ++ #include + #endif + + NAMESPACE_BEGIN(nanogui) +@@ -248,7 +248,7 @@ std::string file_dialog(const std::vector Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9CEF515BFB18; Mon, 17 Jun 2019 17:02:24 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3D9E772621; Mon, 17 Jun 2019 17:02:24 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 17ECE9DF; Mon, 17 Jun 2019 17:02:24 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HH2NGK009141; Mon, 17 Jun 2019 17:02:23 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HH2NKO009138; Mon, 17 Jun 2019 17:02:23 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906171702.x5HH2NKO009138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Mon, 17 Jun 2019 17:02:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504431 - head/devel/py-rubymarshal X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/py-rubymarshal X-SVN-Commit-Revision: 504431 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3D9E772621 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.976,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 17:02:24 -0000 Author: amdmi3 Date: Mon Jun 17 17:02:23 2019 New Revision: 504431 URL: https://svnweb.freebsd.org/changeset/ports/504431 Log: - Update to 1.2.6 Modified: head/devel/py-rubymarshal/Makefile head/devel/py-rubymarshal/distinfo Modified: head/devel/py-rubymarshal/Makefile ============================================================================== --- head/devel/py-rubymarshal/Makefile Mon Jun 17 16:52:50 2019 (r504430) +++ head/devel/py-rubymarshal/Makefile Mon Jun 17 17:02:23 2019 (r504431) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= rubymarshal -PORTVERSION= 1.0.3 -PORTREVISION= 1 +PORTVERSION= 1.2.6 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,8 +13,13 @@ COMMENT= Read and write Ruby-marshalled data LICENSE= WTFPL LICENSE_FILE= ${WRKSRC}/LICENSE +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}hypothesis>=0:devel/py-hypothesis@${PY_FLAVOR} + USES= python USE_PYTHON= autoplist distutils NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test .include Modified: head/devel/py-rubymarshal/distinfo ============================================================================== --- head/devel/py-rubymarshal/distinfo Mon Jun 17 16:52:50 2019 (r504430) +++ head/devel/py-rubymarshal/distinfo Mon Jun 17 17:02:23 2019 (r504431) @@ -1,3 +1,3 @@ -TIMESTAMP = 1484074388 -SHA256 (rubymarshal-1.0.3.tar.gz) = 2227fbfcb5a9b34f603d06f4dd0dc76f84af2b897bdd26fcaa340f8d025b348c -SIZE (rubymarshal-1.0.3.tar.gz) = 9386 +TIMESTAMP = 1560427602 +SHA256 (rubymarshal-1.2.6.tar.gz) = c65d6870ad2a831696cb86cfab216c8c154625c7f2c87eff5593a7452521033f +SIZE (rubymarshal-1.2.6.tar.gz) = 13965 From owner-svn-ports-all@freebsd.org Mon Jun 17 19:05:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B19315C23C2; Mon, 17 Jun 2019 19:05:18 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DE66E76B20; Mon, 17 Jun 2019 19:05:17 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 996861E58; Mon, 17 Jun 2019 19:05:17 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HJ5HLf071154; Mon, 17 Jun 2019 19:05:17 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HJ5GqE071151; Mon, 17 Jun 2019 19:05:16 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906171905.x5HJ5GqE071151@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Mon, 17 Jun 2019 19:05:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504432 - in head/devel/universal-ctags: . files X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/devel/universal-ctags: . files X-SVN-Commit-Revision: 504432 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DE66E76B20 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.960,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 19:05:18 -0000 Author: swills Date: Mon Jun 17 19:05:16 2019 New Revision: 504432 URL: https://svnweb.freebsd.org/changeset/ports/504432 Log: devel/universal-ctags: update to new snapshot PR: 238432 Submitted by: Derek Schrock (maintainer) Modified: head/devel/universal-ctags/Makefile (contents, props changed) head/devel/universal-ctags/distinfo (contents, props changed) head/devel/universal-ctags/files/patch-misc_units (contents, props changed) Modified: head/devel/universal-ctags/Makefile ============================================================================== --- head/devel/universal-ctags/Makefile Mon Jun 17 17:02:23 2019 (r504431) +++ head/devel/universal-ctags/Makefile Mon Jun 17 19:05:16 2019 (r504432) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= universal-ctags -PORTVERSION= g20190521 +PORTVERSION= g20190522 CATEGORIES= devel MAINTAINER= dereks@lifeofadishwasher.com @@ -17,7 +17,7 @@ GNU_CONFIGURE= yes USE_GITHUB= yes GH_PROJECT= ctags -GH_TAGNAME= 78d1a3f3 +GH_TAGNAME= 3fdf28bc GH_TUPLE= universal-ctags:packcc:de4991c:packcc/misc/packcc OPTIONS_DEFINE= ASPELL DEBUG ICONV JSON LIBXML2 MANPAGES YAML Modified: head/devel/universal-ctags/distinfo ============================================================================== --- head/devel/universal-ctags/distinfo Mon Jun 17 17:02:23 2019 (r504431) +++ head/devel/universal-ctags/distinfo Mon Jun 17 19:05:16 2019 (r504432) @@ -1,5 +1,5 @@ -TIMESTAMP = 1559431240 -SHA256 (universal-ctags-ctags-g20190521-78d1a3f3_GH0.tar.gz) = 99f91021b563db35b1c5a231c728691239c6d2decac57402f8c9daacd8e5a0f2 -SIZE (universal-ctags-ctags-g20190521-78d1a3f3_GH0.tar.gz) = 1561251 +TIMESTAMP = 1560055080 +SHA256 (universal-ctags-ctags-g20190522-3fdf28bc_GH0.tar.gz) = 423713ba0369c6af863d2cda6040c1b9d0a012461f44f72bda6dec7b20762331 +SIZE (universal-ctags-ctags-g20190522-3fdf28bc_GH0.tar.gz) = 1575712 SHA256 (universal-ctags-packcc-de4991c_GH0.tar.gz) = 3449183b4274e7584c878e619eab243e80e3c3f289cc05d31d4a133f4cfa2a46 SIZE (universal-ctags-packcc-de4991c_GH0.tar.gz) = 26795 Modified: head/devel/universal-ctags/files/patch-misc_units ============================================================================== --- head/devel/universal-ctags/files/patch-misc_units Mon Jun 17 17:02:23 2019 (r504431) +++ head/devel/universal-ctags/files/patch-misc_units Mon Jun 17 19:05:16 2019 (r504432) @@ -1,6 +1,6 @@ ---- misc/units.orig 2018-09-09 00:07:09 UTC +--- misc/units.orig 2019-05-22 11:44:20 UTC +++ misc/units -@@ -1872,7 +1872,7 @@ failed_git_marker () +@@ -1929,7 +1929,7 @@ failed_git_marker () local f=$1 local l From owner-svn-ports-all@freebsd.org Mon Jun 17 20:15:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4CAC815C3769; Mon, 17 Jun 2019 20:15:42 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E3D3A80C35; Mon, 17 Jun 2019 20:15:41 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BDC342A3D; Mon, 17 Jun 2019 20:15:41 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HKFfjV006533; Mon, 17 Jun 2019 20:15:41 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HKFfSu006529; Mon, 17 Jun 2019 20:15:41 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201906172015.x5HKFfSu006529@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Mon, 17 Jun 2019 20:15:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504433 - in head: net/hostapd net/hostapd/files security/wpa_supplicant security/wpa_supplicant/files X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: in head: net/hostapd net/hostapd/files security/wpa_supplicant security/wpa_supplicant/files X-SVN-Commit-Revision: 504433 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E3D3A80C35 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.946,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 20:15:42 -0000 Author: cy Date: Mon Jun 17 20:15:40 2019 New Revision: 504433 URL: https://svnweb.freebsd.org/changeset/ports/504433 Log: For users who build and install FreeBSD using WITHOUT_WIRELESS simply altering /etc/rc.conf isn't enough to make use of the ports versions of hostapd and wpa_supplicant. This is because the rc.d scripts are not installed when WITHOUT_WIRELESS is specified as a build option. This patch checks for the rc scripts existence and if they do not exist, installs the ports versions of the same scripts, which are added by this revision. This patch does not change the package in any way and there is no way to enable this outside of removal of hostapd or wpa_supplicant (depending on the port). Users who build their own world using the WITHOUT_WIRELESS flag will almost always not use binary packages. Hence the automatic detection and install of the rc scripts. Making this an option would IMO increase the number of bug reports due to people inadvertently setting or not setting an option. To enable this a person must: 1. buildworld and installworld -DWITHOUT_WIRELESS 2. Build and install the desired wpa_supplicant and/or hostapd port on servers one wishes to install them on. PR: 238571 Added: head/net/hostapd/files/hostapd.in (contents, props changed) head/security/wpa_supplicant/files/wpa_supplicant.in (contents, props changed) Modified: head/net/hostapd/Makefile (contents, props changed) head/security/wpa_supplicant/Makefile (contents, props changed) Modified: head/net/hostapd/Makefile ============================================================================== --- head/net/hostapd/Makefile Mon Jun 17 19:05:16 2019 (r504432) +++ head/net/hostapd/Makefile Mon Jun 17 20:15:40 2019 (r504433) @@ -21,6 +21,9 @@ LDFLAGS+= -L${OPENSSLLIB} PLIST_FILES= sbin/hostapd sbin/hostapd_cli man/man1/hostapd_cli.1.gz \ man/man8/hostapd.8.gz +.if !exists(/etc/rc.d/hostapd) +USE_RC_SUBR= hostapd +.endif post-patch: @${REINPLACE_CMD} -e 's|@$$(E) " CC " $$<|@$$(E) " $$(CC) " $$<|' \ Added: head/net/hostapd/files/hostapd.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/hostapd/files/hostapd.in Mon Jun 17 20:15:40 2019 (r504433) @@ -0,0 +1,42 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: hostapd +# REQUIRE: mountcritremote +# KEYWORD: nojail shutdown + +. /etc/rc.subr + +name="hostapd" +desc="Authenticator for IEEE 802.11 networks" +# +# This portion of this rc.script is different from base. +case ${command} in +/usr/sbin/hostapd) # Assume user does not want base hostapd because + # user specified WITHOUT_WIRELESS in make.conf + # and /etc/defaults/rc.conf contains this value. + unset command;; +esac +command=${hostapd_program:-%%PREFIX%%/sbin/hostapd} +# End of differences from base. The rest of the file should remain the same. + +ifn="$2" +if [ -z "$ifn" ]; then + rcvar="hostapd_enable" + conf_file="/etc/${name}.conf" + pidfile="/var/run/${name}.pid" +else + rcvar= + conf_file="/etc/${name}-${ifn}.conf" + pidfile="/var/run/${name}-${ifn}.pid" +fi + +command_args="-P ${pidfile} -B ${conf_file}" +required_files="${conf_file}" +required_modules="wlan_xauth wlan_wep wlan_tkip wlan_ccmp" +extra_commands="reload" + +load_rc_config ${name} +run_rc_command "$1" Modified: head/security/wpa_supplicant/Makefile ============================================================================== --- head/security/wpa_supplicant/Makefile Mon Jun 17 19:05:16 2019 (r504432) +++ head/security/wpa_supplicant/Makefile Mon Jun 17 20:15:40 2019 (r504433) @@ -26,6 +26,10 @@ PORTDOCS= README ChangeLog CFG= ${BUILD_WRKSRC}/.config +.if !exists(/etc/rc.d/wpa_supplicant) +USE_RC_SUBR= wpa_supplicant +.endif + OPTIONS_MULTI= DRV EAP OPTIONS_MULTI_DRV= BSD WIRED NDIS TEST NONE #ROBOSWITCH OPTIONS_MULTI_EAP= TLS PEAP TTLS MD5 MSCHAPV2 GTC LEAP OTP PSK FAST \ Added: head/security/wpa_supplicant/files/wpa_supplicant.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/wpa_supplicant/files/wpa_supplicant.in Mon Jun 17 20:15:40 2019 (r504433) @@ -0,0 +1,57 @@ +#!/bin/sh +# +# $FreeBSD$ +# + +# PROVIDE: wpa_supplicant +# REQUIRE: mountcritremote +# KEYWORD: nojail nostart + +. /etc/rc.subr +. /etc/network.subr + +name="wpa_supplicant" +desc="WPA/802.11i Supplicant for wireless network devices" +rcvar= + +ifn="$2" +if [ -z "$ifn" ]; then + return 1 +fi + +is_ndis_interface() +{ + case `sysctl -n net.wlan.${1#wlan}.%parent 2>/dev/null` in + ndis*) true ;; + *) false ;; + esac +} + +if is_wired_interface ${ifn} ; then + driver="wired" +elif is_ndis_interface ${ifn} ; then + driver="ndis" +else + driver="bsd" +fi + +load_rc_config $name + +# +# This portion of this rc.script is different from base. +case ${command} in +/usr/sbin/wpa_supplicant) # Assume user does not want base hostapd because + # user specified WITHOUT_WIRELESS in make.conf + # and /etc/defaults/rc.conf contains this value. + unset command;; +esac +command=${wpa_supplicant_program:-%%PREFIX%%/sbin/wpa_supplicant} +# End of differences from base. The rest of the file should remain the same. + +conf_file=${wpa_supplicant_conf_file} +pidfile="/var/run/${name}/${ifn}.pid" +command_args="-B -i $ifn -c $conf_file -D $driver -P $pidfile" +required_files=$conf_file +required_modules="wlan_wep wlan_tkip wlan_ccmp" + +run_rc_command "$1" From owner-svn-ports-all@freebsd.org Mon Jun 17 20:48:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E04C915C415F; Mon, 17 Jun 2019 20:48:38 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7F0E281D95; Mon, 17 Jun 2019 20:48:38 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 564472F70; Mon, 17 Jun 2019 20:48:38 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HKmcpB021555; Mon, 17 Jun 2019 20:48:38 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HKmckh021554; Mon, 17 Jun 2019 20:48:38 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906172048.x5HKmckh021554@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Mon, 17 Jun 2019 20:48:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504434 - head/x11-fonts/encodings X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11-fonts/encodings X-SVN-Commit-Revision: 504434 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7F0E281D95 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 20:48:39 -0000 Author: zeising Date: Mon Jun 17 20:48:37 2019 New Revision: 504434 URL: https://svnweb.freebsd.org/changeset/ports/504434 Log: x11-fonts/encodings: Update to 1.0.5 Update x11-fonts/encodings to 1.0.5 Changelog: https://lists.x.org/archives/xorg-announce/2019-June/002998.html Sponsored by: B3 Init Modified: head/x11-fonts/encodings/Makefile head/x11-fonts/encodings/distinfo Modified: head/x11-fonts/encodings/Makefile ============================================================================== --- head/x11-fonts/encodings/Makefile Mon Jun 17 20:15:40 2019 (r504433) +++ head/x11-fonts/encodings/Makefile Mon Jun 17 20:48:37 2019 (r504434) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= encodings -PORTVERSION= 1.0.4 -PORTREVISION= 4 +PORTVERSION= 1.0.5 PORTEPOCH= 1 CATEGORIES= x11-fonts MASTER_SITES= XORG/individual/font Modified: head/x11-fonts/encodings/distinfo ============================================================================== --- head/x11-fonts/encodings/distinfo Mon Jun 17 20:15:40 2019 (r504433) +++ head/x11-fonts/encodings/distinfo Mon Jun 17 20:48:37 2019 (r504434) @@ -1,2 +1,3 @@ -SHA256 (encodings-1.0.4.tar.bz2) = ced6312988a45d23812c2ac708b4595f63fd7a49c4dcd9f66bdcd50d1057d539 -SIZE (encodings-1.0.4.tar.bz2) = 665087 +TIMESTAMP = 1560795195 +SHA256 (encodings-1.0.5.tar.bz2) = bd96e16143a044b19e87f217cf6a3763a70c561d1076aad6f6d862ec41774a31 +SIZE (encodings-1.0.5.tar.bz2) = 713817 From owner-svn-ports-all@freebsd.org Mon Jun 17 20:52:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07DB715C4367; Mon, 17 Jun 2019 20:52:17 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A2BDD821A1; Mon, 17 Jun 2019 20:52:16 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6569C311D; Mon, 17 Jun 2019 20:52:16 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HKqGGI023313; Mon, 17 Jun 2019 20:52:16 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HKqGsJ023310; Mon, 17 Jun 2019 20:52:16 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201906172052.x5HKqGsJ023310@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Mon, 17 Jun 2019 20:52:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504435 - head/devel/llvm80 X-SVN-Group: ports-head X-SVN-Commit-Author: brooks X-SVN-Commit-Paths: head/devel/llvm80 X-SVN-Commit-Revision: 504435 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A2BDD821A1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 20:52:17 -0000 Author: brooks Date: Mon Jun 17 20:52:15 2019 New Revision: 504435 URL: https://svnweb.freebsd.org/changeset/ports/504435 Log: Fix a bug when ${PREFIX} != /usr/local.[0] As of LLVM 8.0.1, pre-releases have moved to github. Chase this change. PR: 238603 [0] Submitted by: mi [0] MFH: 2019Q2 Modified: head/devel/llvm80/Makefile head/devel/llvm80/distinfo Modified: head/devel/llvm80/Makefile ============================================================================== --- head/devel/llvm80/Makefile Mon Jun 17 20:48:37 2019 (r504434) +++ head/devel/llvm80/Makefile Mon Jun 17 20:52:15 2019 (r504435) @@ -4,7 +4,11 @@ PORTNAME= llvm DISTVERSION= 8.0.0 PORTREVISION= 2 CATEGORIES= devel lang -MASTER_SITES= http://${PRE_}releases.llvm.org/${LLVM_RELEASE}/${RCDIR} +.if ${DISTVERSION:M*rc*} +MASTER_SITES= https://github.com/llvm/llvm-project/releases/download/llvmorg-${LLVM_RELEASE}-${DISTVERSION:S/${LLVM_RELEASE}//}/ +.else +MASTER_SITES= http://releases.llvm.org/${LLVM_RELEASE}/ +.endif PKGNAMESUFFIX= ${LLVM_SUFFIX} DISTNAME= ${PORTNAME}-${DISTVERSION}.src DISTFILES= ${PORTNAME}-${DISTVERSION}.src${EXTRACT_SUFX} @@ -16,8 +20,6 @@ COMMENT= LLVM and Clang LLVM_RELEASE= ${DISTVERSION:C/rc.*//} LLVM_MAJOR= ${LLVM_RELEASE:C/\.[0-9]\.[0-9]$//} -RCDIR= ${DISTVERSION:S/${LLVM_RELEASE}//:C|(rc.*)|\1/|} -PRE_= ${DISTVERSION:C/.*rc.*/pre/:N*[0-9]*} LLVM_SUFFIX= ${LLVM_RELEASE:C/\.[0-9]$//:C/\.//} LLVM_PREFIX= ${PREFIX}/llvm${LLVM_SUFFIX} @@ -417,7 +419,7 @@ post-build-COMPILER_RT-on: post-install: ${RM} -r ${STAGEDIR}${LLVM_PREFIX}/include/llvm/MC/MCAnalysis - ${RMDIR} ${STAGEDIR}/usr/local/llvm80/include/llvm/TextAPI/MachO + ${RMDIR} ${STAGEDIR}/${PREFIX}/llvm80/include/llvm/TextAPI/MachO ${INSTALL_SCRIPT} ${WRKDIR}/llvm-wrapper.sh \ ${STAGEDIR}${PREFIX}/bin/${FIRST_COMMAND}${LLVM_SUFFIX} .for command in ${COMMANDS:C/^/XXXX/1:NXXXX*} Modified: head/devel/llvm80/distinfo ============================================================================== --- head/devel/llvm80/distinfo Mon Jun 17 20:48:37 2019 (r504434) +++ head/devel/llvm80/distinfo Mon Jun 17 20:52:15 2019 (r504435) @@ -1,15 +1,15 @@ -TIMESTAMP = 1553104154 -SHA256 (llvm-8.0.0.src.tar.xz) = 8872be1b12c61450cacc82b3d153eab02be2546ef34fa3580ed14137bb26224c -SIZE (llvm-8.0.0.src.tar.xz) = 30503732 -SHA256 (cfe-8.0.0.src.tar.xz) = 084c115aab0084e63b23eee8c233abb6739c399e29966eaeccfc6e088e0b736b -SIZE (cfe-8.0.0.src.tar.xz) = 12868468 -SHA256 (compiler-rt-8.0.0.src.tar.xz) = b435c7474f459e71b2831f1a4e3f1d21203cb9c0172e94e9d9b69f50354f21b1 -SIZE (compiler-rt-8.0.0.src.tar.xz) = 1903020 -SHA256 (clang-tools-extra-8.0.0.src.tar.xz) = 4f00122be408a7482f2004bcf215720d2b88cf8dc78b824abb225da8ad359d4b -SIZE (clang-tools-extra-8.0.0.src.tar.xz) = 1996156 -SHA256 (lld-8.0.0.src.tar.xz) = 9caec8ec922e32ffa130f0fb08e4c5a242d7e68ce757631e425e9eba2e1a6e37 -SIZE (lld-8.0.0.src.tar.xz) = 999864 -SHA256 (lldb-8.0.0.src.tar.xz) = 49918b9f09816554a20ac44c5f85a32dc0a7a00759b3259e78064d674eac0373 -SIZE (lldb-8.0.0.src.tar.xz) = 19602332 -SHA256 (openmp-8.0.0.src.tar.xz) = f7b1705d2f16c4fc23d6531f67d2dd6fb78a077dd346b02fed64f4b8df65c9d5 -SIZE (openmp-8.0.0.src.tar.xz) = 934384 +TIMESTAMP = 1560791803 +SHA256 (llvm-8.0.1rc2.src.tar.xz) = 97a5311ba0ee12d5b66174fd83efcfe5eee04344e91704b50a37221cd1977d36 +SIZE (llvm-8.0.1rc2.src.tar.xz) = 30480996 +SHA256 (cfe-8.0.1rc2.src.tar.xz) = 356e057a2fff03981a257fad9cab2eb740aaa78a804055ccc310a8f04c705dfe +SIZE (cfe-8.0.1rc2.src.tar.xz) = 12840164 +SHA256 (compiler-rt-8.0.1rc2.src.tar.xz) = 75b5ba07129466b45075f388d6d5d0f90e5aa47f9510544443306f84b4cc6bf6 +SIZE (compiler-rt-8.0.1rc2.src.tar.xz) = 1903552 +SHA256 (clang-tools-extra-8.0.1rc2.src.tar.xz) = e358a4c8a871097bd9e44fa7eba415551b65838b3b8ead484de8a6f5b61ac478 +SIZE (clang-tools-extra-8.0.1rc2.src.tar.xz) = 1994636 +SHA256 (lld-8.0.1rc2.src.tar.xz) = 3be439c1b5e3128d340156385031933c8e7288c10ba9930696bab8a21f78309b +SIZE (lld-8.0.1rc2.src.tar.xz) = 997700 +SHA256 (lldb-8.0.1rc2.src.tar.xz) = 8e9708e0363eb897dade32279849e0a6323e890d95bacf8a09e252e0547bfcb7 +SIZE (lldb-8.0.1rc2.src.tar.xz) = 19604960 +SHA256 (openmp-8.0.1rc2.src.tar.xz) = 9274743e8b69f8dc5f3f5bf5d0463050d047bf897c0781dbf77ac8608c1b4d23 +SIZE (openmp-8.0.1rc2.src.tar.xz) = 934920 From owner-svn-ports-all@freebsd.org Mon Jun 17 21:24:50 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1BF9D15C4E0A; Mon, 17 Jun 2019 21:24:50 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from smtp.burggraben.net (smtp.burggraben.net [IPv6:2a01:4f8:140:50a2::3:1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "ns.exwg.net", Issuer "Christoph Moench-Tegeder" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id AC48B83137; Mon, 17 Jun 2019 21:24:49 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from localhost (localhost [127.0.0.1]) by smtp.burggraben.net (Postfix) with ESMTP id 444EC6002F8; Mon, 17 Jun 2019 23:24:47 +0200 (CEST) X-Spam-Scanned: by amavisd-new at exwg.net Received: from smtp.burggraben.net ([127.0.0.1]) by localhost (ns.burggraben.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id SblDFIYg40ep; Mon, 17 Jun 2019 23:24:42 +0200 (CEST) Received: from elch.exwg.net (elch.exwg.net [IPv6:2001:470:7120:1:127b:44ff:fe4f:148d]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "elch.exwg.net", Issuer "Christoph Moench-Tegeder" (verified OK)) by smtp.burggraben.net (Postfix) with ESMTPS; Mon, 17 Jun 2019 23:24:42 +0200 (CEST) Received: by elch.exwg.net (Postfix, from userid 1000) id DE5631399FA; Mon, 17 Jun 2019 23:24:41 +0200 (CEST) Date: Mon, 17 Jun 2019 23:24:41 +0200 From: Christoph Moench-Tegeder To: Brooks Davis Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504435 - head/devel/llvm80 Message-ID: <20190617212441.GA47046@elch.exwg.net> References: <201906172052.x5HKqGsJ023310@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201906172052.x5HKqGsJ023310@repo.freebsd.org> User-Agent: Mutt/1.12.0 (2019-05-25) X-Rspamd-Queue-Id: AC48B83137 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.96 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.956,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 21:24:50 -0000 ## Brooks Davis (brooks@FreeBSD.org): > head/devel/llvm80/Makefile > head/devel/llvm80/distinfo Was the distinfo part intended? It wasn't mentioned in the commit message and the versions remained unchanged, but distinfo switched to 8.0.1rc2. Regards, Christoph -- Spare Space From owner-svn-ports-all@freebsd.org Mon Jun 17 21:30:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB6F315C4F1C; Mon, 17 Jun 2019 21:30:57 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BEFB83425; Mon, 17 Jun 2019 21:30:57 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 254363817; Mon, 17 Jun 2019 21:30:57 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HLUvAX044524; Mon, 17 Jun 2019 21:30:57 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HLUvcx044523; Mon, 17 Jun 2019 21:30:57 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201906172130.x5HLUvcx044523@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Mon, 17 Jun 2019 21:30:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504436 - head/devel/llvm80 X-SVN-Group: ports-head X-SVN-Commit-Author: brooks X-SVN-Commit-Paths: head/devel/llvm80 X-SVN-Commit-Revision: 504436 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4BEFB83425 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.951,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 21:30:57 -0000 Author: brooks Date: Mon Jun 17 21:30:56 2019 New Revision: 504436 URL: https://svnweb.freebsd.org/changeset/ports/504436 Log: Revert accidental update to distinfo. Reported by: Christoph Moench-Tegeder Modified: head/devel/llvm80/distinfo Modified: head/devel/llvm80/distinfo ============================================================================== --- head/devel/llvm80/distinfo Mon Jun 17 20:52:15 2019 (r504435) +++ head/devel/llvm80/distinfo Mon Jun 17 21:30:56 2019 (r504436) @@ -1,15 +1,15 @@ -TIMESTAMP = 1560791803 -SHA256 (llvm-8.0.1rc2.src.tar.xz) = 97a5311ba0ee12d5b66174fd83efcfe5eee04344e91704b50a37221cd1977d36 -SIZE (llvm-8.0.1rc2.src.tar.xz) = 30480996 -SHA256 (cfe-8.0.1rc2.src.tar.xz) = 356e057a2fff03981a257fad9cab2eb740aaa78a804055ccc310a8f04c705dfe -SIZE (cfe-8.0.1rc2.src.tar.xz) = 12840164 -SHA256 (compiler-rt-8.0.1rc2.src.tar.xz) = 75b5ba07129466b45075f388d6d5d0f90e5aa47f9510544443306f84b4cc6bf6 -SIZE (compiler-rt-8.0.1rc2.src.tar.xz) = 1903552 -SHA256 (clang-tools-extra-8.0.1rc2.src.tar.xz) = e358a4c8a871097bd9e44fa7eba415551b65838b3b8ead484de8a6f5b61ac478 -SIZE (clang-tools-extra-8.0.1rc2.src.tar.xz) = 1994636 -SHA256 (lld-8.0.1rc2.src.tar.xz) = 3be439c1b5e3128d340156385031933c8e7288c10ba9930696bab8a21f78309b -SIZE (lld-8.0.1rc2.src.tar.xz) = 997700 -SHA256 (lldb-8.0.1rc2.src.tar.xz) = 8e9708e0363eb897dade32279849e0a6323e890d95bacf8a09e252e0547bfcb7 -SIZE (lldb-8.0.1rc2.src.tar.xz) = 19604960 -SHA256 (openmp-8.0.1rc2.src.tar.xz) = 9274743e8b69f8dc5f3f5bf5d0463050d047bf897c0781dbf77ac8608c1b4d23 -SIZE (openmp-8.0.1rc2.src.tar.xz) = 934920 +TIMESTAMP = 1560807021 +SHA256 (llvm-8.0.0.src.tar.xz) = 8872be1b12c61450cacc82b3d153eab02be2546ef34fa3580ed14137bb26224c +SIZE (llvm-8.0.0.src.tar.xz) = 30503732 +SHA256 (cfe-8.0.0.src.tar.xz) = 084c115aab0084e63b23eee8c233abb6739c399e29966eaeccfc6e088e0b736b +SIZE (cfe-8.0.0.src.tar.xz) = 12868468 +SHA256 (compiler-rt-8.0.0.src.tar.xz) = b435c7474f459e71b2831f1a4e3f1d21203cb9c0172e94e9d9b69f50354f21b1 +SIZE (compiler-rt-8.0.0.src.tar.xz) = 1903020 +SHA256 (clang-tools-extra-8.0.0.src.tar.xz) = 4f00122be408a7482f2004bcf215720d2b88cf8dc78b824abb225da8ad359d4b +SIZE (clang-tools-extra-8.0.0.src.tar.xz) = 1996156 +SHA256 (lld-8.0.0.src.tar.xz) = 9caec8ec922e32ffa130f0fb08e4c5a242d7e68ce757631e425e9eba2e1a6e37 +SIZE (lld-8.0.0.src.tar.xz) = 999864 +SHA256 (lldb-8.0.0.src.tar.xz) = 49918b9f09816554a20ac44c5f85a32dc0a7a00759b3259e78064d674eac0373 +SIZE (lldb-8.0.0.src.tar.xz) = 19602332 +SHA256 (openmp-8.0.0.src.tar.xz) = f7b1705d2f16c4fc23d6531f67d2dd6fb78a077dd346b02fed64f4b8df65c9d5 +SIZE (openmp-8.0.0.src.tar.xz) = 934384 From owner-svn-ports-all@freebsd.org Mon Jun 17 21:31:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6648215C4F9E; Mon, 17 Jun 2019 21:31:43 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Received: from spindle.one-eyed-alien.net (spindle.one-eyed-alien.net [199.48.129.229]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 500B183688; Mon, 17 Jun 2019 21:31:42 +0000 (UTC) (envelope-from brooks@spindle.one-eyed-alien.net) Received: by spindle.one-eyed-alien.net (Postfix, from userid 3001) id CDC463C0182; Mon, 17 Jun 2019 21:31:40 +0000 (UTC) Date: Mon, 17 Jun 2019 21:31:40 +0000 From: Brooks Davis To: Christoph Moench-Tegeder Cc: Brooks Davis , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504435 - head/devel/llvm80 Message-ID: <20190617213140.GA3299@spindle.one-eyed-alien.net> References: <201906172052.x5HKqGsJ023310@repo.freebsd.org> <20190617212441.GA47046@elch.exwg.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cNdxnHkX5QqsyA0e" Content-Disposition: inline In-Reply-To: <20190617212441.GA47046@elch.exwg.net> User-Agent: Mutt/1.9.4 (2018-02-28) X-Rspamd-Queue-Id: 500B183688 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.91 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.91)[-0.907,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 21:31:43 -0000 --cNdxnHkX5QqsyA0e Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 17, 2019 at 11:24:41PM +0200, Christoph Moench-Tegeder wrote: > ## Brooks Davis (brooks@FreeBSD.org): > > head/devel/llvm80/Makefile > > head/devel/llvm80/distinfo >=20 > Was the distinfo part intended? It wasn't mentioned in the commit message > and the versions remained unchanged, but distinfo switched to 8.0.1rc2. Arg. It was not. I've fixed it in r504436. Thanks, Brooks --cNdxnHkX5QqsyA0e Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEcBAEBAgAGBQJdCAa8AAoJEKzQXbSebgfAi1YH/126V7AeiALpW/tVZVQVw4H+ /lZ48FtpSbs3Sg8Pwc2LtZ2UM9VIW56exOdspWuZUoMrq0dsYqdk4JP4TR5ZbmQ6 cHBKSCOxqzqSYiGSr7wR6aS+WOAPVI7CiKlY5cdg2thSl5yQ/0d6hQsx3OpJjMcI 2SO8938COlRdZx9s3kPF8RCOjR5hyMoQduJRVUpmrfxIzihUBG0hT942/sAgKRuB nkH0PoUNfughpjFTdVLjlUt0ujngCPdgwmY8ZGHKFg+LO9E+/1iXiZ+IVQxPbX4N QHwAogGu9WAt3xUMxicYcmJOgWVP/bWdo6SNbrSe7XfvI+o11c6nBkrAuhuqUgw= =TqPV -----END PGP SIGNATURE----- --cNdxnHkX5QqsyA0e-- From owner-svn-ports-all@freebsd.org Mon Jun 17 21:51:32 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BD1B915C5700; Mon, 17 Jun 2019 21:51:32 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 607318421A; Mon, 17 Jun 2019 21:51:32 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 543213C61; Mon, 17 Jun 2019 21:51:32 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HLpWAt054719; Mon, 17 Jun 2019 21:51:32 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HLpVqW054718; Mon, 17 Jun 2019 21:51:31 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906172151.x5HLpVqW054718@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 17 Jun 2019 21:51:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504437 - head/lang/perl5-devel X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/lang/perl5-devel X-SVN-Commit-Revision: 504437 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 607318421A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 21:51:32 -0000 Author: mat Date: Mon Jun 17 21:51:31 2019 New Revision: 504437 URL: https://svnweb.freebsd.org/changeset/ports/504437 Log: Update to v5.31.0-167-gfa068f6da2. Modified: head/lang/perl5-devel/Makefile (contents, props changed) head/lang/perl5-devel/distinfo (contents, props changed) Modified: head/lang/perl5-devel/Makefile ============================================================================== --- head/lang/perl5-devel/Makefile Mon Jun 17 21:30:56 2019 (r504436) +++ head/lang/perl5-devel/Makefile Mon Jun 17 21:51:31 2019 (r504437) @@ -35,7 +35,7 @@ USE_LDCONFIG= ${PREFIX}/${_ARCH_LIB}/CORE USE_GITHUB= yes GH_ACCOUNT= Perl GH_PROJECT= perl5 -GH_TAGNAME= v5.31.0-142-g7948efd469 +GH_TAGNAME= v5.31.0-167-gfa068f6da2 TEST_TARGET= test_harness TEST_ENV= ${MAKE_ENV} TEST_JOBS=${MAKE_JOBS_NUMBER} \ Modified: head/lang/perl5-devel/distinfo ============================================================================== --- head/lang/perl5-devel/distinfo Mon Jun 17 21:30:56 2019 (r504436) +++ head/lang/perl5-devel/distinfo Mon Jun 17 21:51:31 2019 (r504437) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560164895 -SHA256 (perl/Perl-perl5-v5.31.0-142-g7948efd469_GH0.tar.gz) = 691649d2b4f2d20c100a459b6831f1db64938c7b89d22b284c8fdf2cbd676ff3 -SIZE (perl/Perl-perl5-v5.31.0-142-g7948efd469_GH0.tar.gz) = 19294056 +TIMESTAMP = 1560801509 +SHA256 (perl/Perl-perl5-v5.31.0-167-gfa068f6da2_GH0.tar.gz) = e7dc657173e64a5618251b8f52ea39f158dd325fced4283ec5385f5db852238e +SIZE (perl/Perl-perl5-v5.31.0-167-gfa068f6da2_GH0.tar.gz) = 19296253 From owner-svn-ports-all@freebsd.org Mon Jun 17 21:52:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B597015C587A; Mon, 17 Jun 2019 21:52:10 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5A77584358; Mon, 17 Jun 2019 21:52:10 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4ECDA3C87; Mon, 17 Jun 2019 21:52:10 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HLqAmK057132; Mon, 17 Jun 2019 21:52:10 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HLq91N057130; Mon, 17 Jun 2019 21:52:09 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906172152.x5HLq91N057130@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 17 Jun 2019 21:52:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504438 - in head/dns/bind9-devel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/dns/bind9-devel: . files X-SVN-Commit-Revision: 504438 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5A77584358 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 21:52:11 -0000 Author: mat Date: Mon Jun 17 21:52:09 2019 New Revision: 504438 URL: https://svnweb.freebsd.org/changeset/ports/504438 Log: Update to latest commit. Modified: head/dns/bind9-devel/Makefile (contents, props changed) head/dns/bind9-devel/distinfo (contents, props changed) head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl (contents, props changed) Modified: head/dns/bind9-devel/Makefile ============================================================================== --- head/dns/bind9-devel/Makefile Mon Jun 17 21:51:31 2019 (r504437) +++ head/dns/bind9-devel/Makefile Mon Jun 17 21:52:09 2019 (r504438) @@ -9,7 +9,7 @@ PORTREVISION= 0 .else # XXX: correct version # dns/bind9xx here -PORTREVISION= 2 +PORTREVISION= 0 .endif CATEGORIES= dns net ipv6 # XXX: put the ISC master_site @@ -41,13 +41,13 @@ RUN_DEPENDS= bind-tools>0:dns/bind-tools # XXX: remove tar:bz2 USES= compiler:c11 cpe libedit pkgconfig ssl tar:bz2 # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.15.0a0.2019.06.10 +ISCVERSION= 9.15.0a0.2019.06.17 # XXX: Remove gitlab USE_GITLAB= yes GL_SITE= https://gitlab.isc.org GL_ACCOUNT= isc-projects GL_PROJECT= bind9 -GL_COMMIT= 32c86e29e23c6829290086f919fed3cf124fe348 +GL_COMMIT= ea054d024a196a7196d786ba7d8fda2456eed194 CPE_VENDOR= isc CPE_VERSION= ${ISCVERSION:C/-.*//} Modified: head/dns/bind9-devel/distinfo ============================================================================== --- head/dns/bind9-devel/distinfo Mon Jun 17 21:51:31 2019 (r504437) +++ head/dns/bind9-devel/distinfo Mon Jun 17 21:52:09 2019 (r504438) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560165640 -SHA256 (isc-projects-bind9-32c86e29e23c6829290086f919fed3cf124fe348_GL0.tar.gz) = 99f93cc71e75a5f0a4826c40eb76d2435a17b54ab4bb01ad13648ed5e74e8673 -SIZE (isc-projects-bind9-32c86e29e23c6829290086f919fed3cf124fe348_GL0.tar.gz) = 6310334 +TIMESTAMP = 1560801587 +SHA256 (isc-projects-bind9-ea054d024a196a7196d786ba7d8fda2456eed194_GL0.tar.gz) = 73b91c68d9c2f91ad6bf255f9b0affac33111249a6c21849d12b3f06a19ef4e6 +SIZE (isc-projects-bind9-ea054d024a196a7196d786ba7d8fda2456eed194_GL0.tar.gz) = 6309814 Modified: head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl ============================================================================== --- head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Mon Jun 17 21:51:31 2019 (r504437) +++ head/dns/bind9-devel/files/extrapatch-bind-min-override-ttl Mon Jun 17 21:52:09 2019 (r504438) @@ -1,6 +1,6 @@ ---- bin/named/config.c.orig 2019-06-10 04:29:24 UTC +--- bin/named/config.c.orig 2019-06-17 13:35:58 UTC +++ bin/named/config.c -@@ -175,6 +175,7 @@ options {\n\ +@@ -172,6 +172,7 @@ options {\n\ notify-source *;\n\ notify-source-v6 *;\n\ nsec3-test-zone no;\n\ @@ -8,7 +8,7 @@ provide-ixfr true;\n\ qname-minimization relaxed;\n\ query-source address *;\n\ ---- bin/named/server.c.orig 2019-06-10 04:29:24 UTC +--- bin/named/server.c.orig 2019-06-17 13:35:58 UTC +++ bin/named/server.c @@ -4226,6 +4226,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl } @@ -22,7 +22,7 @@ result = named_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); ---- lib/dns/include/dns/view.h.orig 2019-06-10 04:29:24 UTC +--- lib/dns/include/dns/view.h.orig 2019-06-17 13:35:58 UTC +++ lib/dns/include/dns/view.h @@ -152,6 +152,7 @@ struct dns_view { bool requestnsid; @@ -32,7 +32,7 @@ dns_ttl_t maxncachettl; dns_ttl_t mincachettl; dns_ttl_t minncachettl; ---- lib/dns/resolver.c.orig 2019-06-10 04:29:24 UTC +--- lib/dns/resolver.c.orig 2019-06-17 13:35:58 UTC +++ lib/dns/resolver.c @@ -6048,6 +6048,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb } @@ -47,7 +47,7 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) { ---- lib/isccfg/namedconf.c.orig 2019-06-10 04:29:24 UTC +--- lib/isccfg/namedconf.c.orig 2019-06-17 13:35:58 UTC +++ lib/isccfg/namedconf.c @@ -1910,6 +1910,7 @@ view_clauses[] = { #endif From owner-svn-ports-all@freebsd.org Mon Jun 17 21:58:28 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0977015C5909; Mon, 17 Jun 2019 21:58:28 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B13FD8461A; Mon, 17 Jun 2019 21:58:27 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6BCF33DB6; Mon, 17 Jun 2019 21:58:27 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HLwR6O058441; Mon, 17 Jun 2019 21:58:27 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HLwQpk058436; Mon, 17 Jun 2019 21:58:26 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906172158.x5HLwQpk058436@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Mon, 17 Jun 2019 21:58:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504439 - head/dns/doh-proxy X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/dns/doh-proxy X-SVN-Commit-Revision: 504439 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B13FD8461A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 21:58:28 -0000 Author: mat Date: Mon Jun 17 21:58:26 2019 New Revision: 504439 URL: https://svnweb.freebsd.org/changeset/ports/504439 Log: Update to 0.1.17. Added: head/dns/doh-proxy/Makefile.crates (contents, props changed) - copied, changed from r503956, head/dns/doh-proxy/Makefile Modified: head/dns/doh-proxy/Makefile head/dns/doh-proxy/distinfo Modified: head/dns/doh-proxy/Makefile ============================================================================== --- head/dns/doh-proxy/Makefile Mon Jun 17 21:52:09 2019 (r504438) +++ head/dns/doh-proxy/Makefile Mon Jun 17 21:58:26 2019 (r504439) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= doh-proxy -DISTVERSION= 0.1.16 +DISTVERSION= 0.1.17 CATEGORIES= dns MAINTAINER= mat@FreeBSD.org @@ -21,122 +21,8 @@ GH_PROJECT= rust-doh PLIST_FILES= bin/doh-proxy -CARGO_CRATES= ansi_term-0.11.0 \ - arrayvec-0.4.10 \ - atty-0.2.11 \ - autocfg-0.1.4 \ - base64-0.10.1 \ - bitflags-1.0.4 \ - byteorder-1.3.1 \ - bytes-0.4.12 \ - cc-1.0.37 \ - cfg-if-0.1.9 \ - clap-2.33.0 \ - cloudabi-0.0.3 \ - core-foundation-0.6.4 \ - core-foundation-sys-0.6.2 \ - crossbeam-deque-0.7.1 \ - crossbeam-epoch-0.7.1 \ - crossbeam-queue-0.1.2 \ - crossbeam-utils-0.6.5 \ - either-1.5.2 \ - fnv-1.0.6 \ - foreign-types-0.3.2 \ - foreign-types-shared-0.1.1 \ - fs_extra-1.1.0 \ - fuchsia-cprng-0.1.1 \ - fuchsia-zircon-0.3.3 \ - fuchsia-zircon-sys-0.3.3 \ - futures-0.1.27 \ - futures-cpupool-0.1.8 \ - h2-0.1.20 \ - http-0.1.17 \ - http-body-0.1.0 \ - httparse-1.3.3 \ - hyper-0.12.29 \ - indexmap-1.0.2 \ - iovec-0.1.2 \ - itoa-0.4.4 \ - jemalloc-sys-0.3.0 \ - jemallocator-0.3.0 \ - kernel32-sys-0.2.2 \ - lazy_static-1.3.0 \ - libc-0.2.55 \ - lock_api-0.1.5 \ - log-0.4.6 \ - memoffset-0.2.1 \ - mio-0.6.19 \ - mio-uds-0.6.7 \ - miow-0.2.1 \ - native-tls-0.2.3 \ - net2-0.2.33 \ - nodrop-0.1.13 \ - num_cpus-1.10.0 \ - numtoa-0.1.0 \ - openssl-0.10.23 \ - openssl-probe-0.1.2 \ - openssl-sys-0.9.47 \ - owning_ref-0.4.0 \ - parking_lot-0.7.1 \ - parking_lot_core-0.4.0 \ - pkg-config-0.3.14 \ - rand-0.6.5 \ - rand_chacha-0.1.1 \ - rand_core-0.3.1 \ - rand_core-0.4.0 \ - rand_hc-0.1.0 \ - rand_isaac-0.1.1 \ - rand_jitter-0.1.4 \ - rand_os-0.1.3 \ - rand_pcg-0.1.2 \ - rand_xorshift-0.1.1 \ - rdrand-0.4.0 \ - redox_syscall-0.1.54 \ - redox_termios-0.1.1 \ - remove_dir_all-0.5.1 \ - rustc_version-0.2.3 \ - schannel-0.1.15 \ - scopeguard-0.3.3 \ - security-framework-0.3.1 \ - security-framework-sys-0.3.1 \ - semver-0.9.0 \ - semver-parser-0.7.0 \ - slab-0.4.2 \ - smallvec-0.6.9 \ - stable_deref_trait-1.1.1 \ - string-0.1.3 \ - strsim-0.8.0 \ - tempfile-3.0.8 \ - termion-1.5.2 \ - textwrap-0.11.0 \ - time-0.1.42 \ - tokio-0.1.20 \ - tokio-buf-0.1.1 \ - tokio-codec-0.1.1 \ - tokio-current-thread-0.1.6 \ - tokio-executor-0.1.7 \ - tokio-fs-0.1.6 \ - tokio-io-0.1.12 \ - tokio-reactor-0.1.9 \ - tokio-sync-0.1.5 \ - tokio-tcp-0.1.3 \ - tokio-threadpool-0.1.14 \ - tokio-timer-0.2.11 \ - tokio-tls-0.2.1 \ - tokio-trace-core-0.1.0 \ - tokio-udp-0.1.3 \ - tokio-uds-0.2.5 \ - try-lock-0.2.2 \ - unicode-width-0.1.5 \ - vcpkg-0.2.6 \ - vec_map-0.8.1 \ - want-0.0.6 \ - winapi-0.2.8 \ - winapi-0.3.7 \ - winapi-build-0.1.1 \ - winapi-i686-pc-windows-gnu-0.4.0 \ - winapi-x86_64-pc-windows-gnu-0.4.0 \ - ws2_32-sys-0.2.1 +# make cargo-crates > Makefile.crates +.include "Makefile.crates" post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/doh-proxy Copied and modified: head/dns/doh-proxy/Makefile.crates (from r503956, head/dns/doh-proxy/Makefile) ============================================================================== --- head/dns/doh-proxy/Makefile Tue Jun 11 12:19:40 2019 (r503956, copy source) +++ head/dns/doh-proxy/Makefile.crates Mon Jun 17 21:58:26 2019 (r504439) @@ -1,33 +1,10 @@ -# Created by: Timothy Beyer -# $FreeBSD$ - -PORTNAME= doh-proxy -DISTVERSION= 0.1.16 -CATEGORIES= dns - -MAINTAINER= mat@FreeBSD.org -COMMENT= DNS-over-HTTP server proxy - -LICENSE= MIT -LICENSE_FILE= ${WRKSRC}/LICENSE - -# jemalloc-sys-0.1.8 needs gmake -BUILD_DEPENDS= gmake:devel/gmake - -USES= cargo -USE_GITHUB= yes -GH_ACCOUNT= jedisct1 -GH_PROJECT= rust-doh - -PLIST_FILES= bin/doh-proxy - CARGO_CRATES= ansi_term-0.11.0 \ arrayvec-0.4.10 \ atty-0.2.11 \ autocfg-0.1.4 \ base64-0.10.1 \ - bitflags-1.0.4 \ - byteorder-1.3.1 \ + bitflags-1.1.0 \ + byteorder-1.3.2 \ bytes-0.4.12 \ cc-1.0.37 \ cfg-if-0.1.9 \ @@ -49,19 +26,19 @@ CARGO_CRATES= ansi_term-0.11.0 \ fuchsia-zircon-sys-0.3.3 \ futures-0.1.27 \ futures-cpupool-0.1.8 \ - h2-0.1.20 \ + h2-0.1.23 \ http-0.1.17 \ http-body-0.1.0 \ httparse-1.3.3 \ - hyper-0.12.29 \ + hyper-0.12.30 \ indexmap-1.0.2 \ iovec-0.1.2 \ itoa-0.4.4 \ - jemalloc-sys-0.3.0 \ - jemallocator-0.3.0 \ + jemalloc-sys-0.3.2 \ + jemallocator-0.3.2 \ kernel32-sys-0.2.2 \ lazy_static-1.3.0 \ - libc-0.2.55 \ + libc-0.2.58 \ lock_api-0.1.5 \ log-0.4.6 \ memoffset-0.2.1 \ @@ -71,7 +48,7 @@ CARGO_CRATES= ansi_term-0.11.0 \ native-tls-0.2.3 \ net2-0.2.33 \ nodrop-0.1.13 \ - num_cpus-1.10.0 \ + num_cpus-1.10.1 \ numtoa-0.1.0 \ openssl-0.10.23 \ openssl-probe-0.1.2 \ @@ -93,7 +70,7 @@ CARGO_CRATES= ansi_term-0.11.0 \ rdrand-0.4.0 \ redox_syscall-0.1.54 \ redox_termios-0.1.1 \ - remove_dir_all-0.5.1 \ + remove_dir_all-0.5.2 \ rustc_version-0.2.3 \ schannel-0.1.15 \ scopeguard-0.3.3 \ @@ -102,15 +79,15 @@ CARGO_CRATES= ansi_term-0.11.0 \ semver-0.9.0 \ semver-parser-0.7.0 \ slab-0.4.2 \ - smallvec-0.6.9 \ + smallvec-0.6.10 \ stable_deref_trait-1.1.1 \ - string-0.1.3 \ + string-0.2.0 \ strsim-0.8.0 \ tempfile-3.0.8 \ - termion-1.5.2 \ + termion-1.5.3 \ textwrap-0.11.0 \ time-0.1.42 \ - tokio-0.1.20 \ + tokio-0.1.21 \ tokio-buf-0.1.1 \ tokio-codec-0.1.1 \ tokio-current-thread-0.1.6 \ @@ -118,12 +95,12 @@ CARGO_CRATES= ansi_term-0.11.0 \ tokio-fs-0.1.6 \ tokio-io-0.1.12 \ tokio-reactor-0.1.9 \ - tokio-sync-0.1.5 \ + tokio-sync-0.1.6 \ tokio-tcp-0.1.3 \ tokio-threadpool-0.1.14 \ tokio-timer-0.2.11 \ tokio-tls-0.2.1 \ - tokio-trace-core-0.1.0 \ + tokio-trace-core-0.2.0 \ tokio-udp-0.1.3 \ tokio-uds-0.2.5 \ try-lock-0.2.2 \ @@ -137,8 +114,3 @@ CARGO_CRATES= ansi_term-0.11.0 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 \ ws2_32-sys-0.2.1 - -post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/doh-proxy - -.include Modified: head/dns/doh-proxy/distinfo ============================================================================== --- head/dns/doh-proxy/distinfo Mon Jun 17 21:52:09 2019 (r504438) +++ head/dns/doh-proxy/distinfo Mon Jun 17 21:58:26 2019 (r504439) @@ -1,4 +1,4 @@ -TIMESTAMP = 1559071859 +TIMESTAMP = 1560801801 SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b SIZE (rust/crates/ansi_term-0.11.0.tar.gz) = 17087 SHA256 (rust/crates/arrayvec-0.4.10.tar.gz) = 92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71 @@ -9,10 +9,10 @@ SHA256 (rust/crates/autocfg-0.1.4.tar.gz) = 0e49efa513 SIZE (rust/crates/autocfg-0.1.4.tar.gz) = 10937 SHA256 (rust/crates/base64-0.10.1.tar.gz) = 0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e SIZE (rust/crates/base64-0.10.1.tar.gz) = 41988 -SHA256 (rust/crates/bitflags-1.0.4.tar.gz) = 228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12 -SIZE (rust/crates/bitflags-1.0.4.tar.gz) = 15282 -SHA256 (rust/crates/byteorder-1.3.1.tar.gz) = a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb -SIZE (rust/crates/byteorder-1.3.1.tar.gz) = 20959 +SHA256 (rust/crates/bitflags-1.1.0.tar.gz) = 3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd +SIZE (rust/crates/bitflags-1.1.0.tar.gz) = 16322 +SHA256 (rust/crates/byteorder-1.3.2.tar.gz) = a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5 +SIZE (rust/crates/byteorder-1.3.2.tar.gz) = 21596 SHA256 (rust/crates/bytes-0.4.12.tar.gz) = 206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c SIZE (rust/crates/bytes-0.4.12.tar.gz) = 46361 SHA256 (rust/crates/cc-1.0.37.tar.gz) = 39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d @@ -55,32 +55,32 @@ SHA256 (rust/crates/futures-0.1.27.tar.gz) = a2037ec1c SIZE (rust/crates/futures-0.1.27.tar.gz) = 158194 SHA256 (rust/crates/futures-cpupool-0.1.8.tar.gz) = ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4 SIZE (rust/crates/futures-cpupool-0.1.8.tar.gz) = 10583 -SHA256 (rust/crates/h2-0.1.20.tar.gz) = 2b53def7bb0253af7718036fe9338c15defd209136819464384f3a553e07481b -SIZE (rust/crates/h2-0.1.20.tar.gz) = 144219 +SHA256 (rust/crates/h2-0.1.23.tar.gz) = 1e42e3daed5a7e17b12a0c23b5b2fbff23a925a570938ebee4baca1a9a1a2240 +SIZE (rust/crates/h2-0.1.23.tar.gz) = 145269 SHA256 (rust/crates/http-0.1.17.tar.gz) = eed324f0f0daf6ec10c474f150505af2c143f251722bf9dbd1261bd1f2ee2c1a SIZE (rust/crates/http-0.1.17.tar.gz) = 98437 SHA256 (rust/crates/http-body-0.1.0.tar.gz) = 6741c859c1b2463a423a1dbce98d418e6c3c3fc720fb0d45528657320920292d SIZE (rust/crates/http-body-0.1.0.tar.gz) = 4618 SHA256 (rust/crates/httparse-1.3.3.tar.gz) = e8734b0cfd3bc3e101ec59100e101c2eecd19282202e87808b3037b442777a83 SIZE (rust/crates/httparse-1.3.3.tar.gz) = 23689 -SHA256 (rust/crates/hyper-0.12.29.tar.gz) = e2cd6adf83b3347d36e271f030621a8cf95fd1fd0760546b9fc5a24a0f1447c7 -SIZE (rust/crates/hyper-0.12.29.tar.gz) = 118688 +SHA256 (rust/crates/hyper-0.12.30.tar.gz) = 40e7692b2009a70b1e9b362284add4d8b75880fefddb4acaa5e67194e843f219 +SIZE (rust/crates/hyper-0.12.30.tar.gz) = 119626 SHA256 (rust/crates/indexmap-1.0.2.tar.gz) = 7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d SIZE (rust/crates/indexmap-1.0.2.tar.gz) = 38255 SHA256 (rust/crates/iovec-0.1.2.tar.gz) = dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08 SIZE (rust/crates/iovec-0.1.2.tar.gz) = 8565 SHA256 (rust/crates/itoa-0.4.4.tar.gz) = 501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f SIZE (rust/crates/itoa-0.4.4.tar.gz) = 11147 -SHA256 (rust/crates/jemalloc-sys-0.3.0.tar.gz) = 7bef0d4ce37578dfd80b466e3d8324bd9de788e249f1accebb0c472ea4b52bdc -SIZE (rust/crates/jemalloc-sys-0.3.0.tar.gz) = 608172 -SHA256 (rust/crates/jemallocator-0.3.0.tar.gz) = c2b69163a3cf2d0fffcd4e1b57921bc6d8fb97ec27f2aeef00562abdaf4ffe2a -SIZE (rust/crates/jemallocator-0.3.0.tar.gz) = 16236 +SHA256 (rust/crates/jemalloc-sys-0.3.2.tar.gz) = 0d3b9f3f5c9b31aa0f5ed3260385ac205db665baa41d49bb8338008ae94ede45 +SIZE (rust/crates/jemalloc-sys-0.3.2.tar.gz) = 1344660 +SHA256 (rust/crates/jemallocator-0.3.2.tar.gz) = 43ae63fcfc45e99ab3d1b29a46782ad679e98436c3169d15a167a1108a724b69 +SIZE (rust/crates/jemallocator-0.3.2.tar.gz) = 16393 SHA256 (rust/crates/kernel32-sys-0.2.2.tar.gz) = 7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d SIZE (rust/crates/kernel32-sys-0.2.2.tar.gz) = 24537 SHA256 (rust/crates/lazy_static-1.3.0.tar.gz) = bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14 SIZE (rust/crates/lazy_static-1.3.0.tar.gz) = 10616 -SHA256 (rust/crates/libc-0.2.55.tar.gz) = 42914d39aad277d9e176efbdad68acb1d5443ab65afe0e0e4f0d49352a950880 -SIZE (rust/crates/libc-0.2.55.tar.gz) = 400416 +SHA256 (rust/crates/libc-0.2.58.tar.gz) = 6281b86796ba5e4366000be6e9e18bf35580adf9e63fbe2294aadb587613a319 +SIZE (rust/crates/libc-0.2.58.tar.gz) = 409031 SHA256 (rust/crates/lock_api-0.1.5.tar.gz) = 62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c SIZE (rust/crates/lock_api-0.1.5.tar.gz) = 16967 SHA256 (rust/crates/log-0.4.6.tar.gz) = c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6 @@ -99,8 +99,8 @@ SHA256 (rust/crates/net2-0.2.33.tar.gz) = 42550d9fb7b6 SIZE (rust/crates/net2-0.2.33.tar.gz) = 20936 SHA256 (rust/crates/nodrop-0.1.13.tar.gz) = 2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945 SIZE (rust/crates/nodrop-0.1.13.tar.gz) = 7508 -SHA256 (rust/crates/num_cpus-1.10.0.tar.gz) = 1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba -SIZE (rust/crates/num_cpus-1.10.0.tar.gz) = 10669 +SHA256 (rust/crates/num_cpus-1.10.1.tar.gz) = bcef43580c035376c0705c42792c294b66974abbfd2789b511784023f71f3273 +SIZE (rust/crates/num_cpus-1.10.1.tar.gz) = 11151 SHA256 (rust/crates/numtoa-0.1.0.tar.gz) = b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef SIZE (rust/crates/numtoa-0.1.0.tar.gz) = 8999 SHA256 (rust/crates/openssl-0.10.23.tar.gz) = 97c140cbb82f3b3468193dd14c1b88def39f341f68257f8a7fe8ed9ed3f628a5 @@ -143,8 +143,8 @@ SHA256 (rust/crates/redox_syscall-0.1.54.tar.gz) = 122 SIZE (rust/crates/redox_syscall-0.1.54.tar.gz) = 15668 SHA256 (rust/crates/redox_termios-0.1.1.tar.gz) = 7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76 SIZE (rust/crates/redox_termios-0.1.1.tar.gz) = 3227 -SHA256 (rust/crates/remove_dir_all-0.5.1.tar.gz) = 3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5 -SIZE (rust/crates/remove_dir_all-0.5.1.tar.gz) = 8726 +SHA256 (rust/crates/remove_dir_all-0.5.2.tar.gz) = 4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e +SIZE (rust/crates/remove_dir_all-0.5.2.tar.gz) = 8907 SHA256 (rust/crates/rustc_version-0.2.3.tar.gz) = 138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a SIZE (rust/crates/rustc_version-0.2.3.tar.gz) = 10210 SHA256 (rust/crates/schannel-0.1.15.tar.gz) = f2f6abf258d99c3c1c5c2131d99d064e94b7b3dd5f416483057f308fea253339 @@ -161,24 +161,24 @@ SHA256 (rust/crates/semver-parser-0.7.0.tar.gz) = 388a SIZE (rust/crates/semver-parser-0.7.0.tar.gz) = 10268 SHA256 (rust/crates/slab-0.4.2.tar.gz) = c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8 SIZE (rust/crates/slab-0.4.2.tar.gz) = 10136 -SHA256 (rust/crates/smallvec-0.6.9.tar.gz) = c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be -SIZE (rust/crates/smallvec-0.6.9.tar.gz) = 21548 +SHA256 (rust/crates/smallvec-0.6.10.tar.gz) = ab606a9c5e214920bb66c458cd7be8ef094f813f20fe77a54cc7dbfff220d4b7 +SIZE (rust/crates/smallvec-0.6.10.tar.gz) = 22064 SHA256 (rust/crates/stable_deref_trait-1.1.1.tar.gz) = dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8 SIZE (rust/crates/stable_deref_trait-1.1.1.tar.gz) = 8007 -SHA256 (rust/crates/string-0.1.3.tar.gz) = b639411d0b9c738748b5397d5ceba08e648f4f1992231aa859af1a017f31f60b -SIZE (rust/crates/string-0.1.3.tar.gz) = 4143 +SHA256 (rust/crates/string-0.2.0.tar.gz) = d0bbfb8937e38e34c3444ff00afb28b0811d9554f15c5ad64d12b0308d1d1995 +SIZE (rust/crates/string-0.2.0.tar.gz) = 5077 SHA256 (rust/crates/strsim-0.8.0.tar.gz) = 8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a SIZE (rust/crates/strsim-0.8.0.tar.gz) = 9309 SHA256 (rust/crates/tempfile-3.0.8.tar.gz) = 7dc4738f2e68ed2855de5ac9cdbe05c9216773ecde4739b2f095002ab03a13ef SIZE (rust/crates/tempfile-3.0.8.tar.gz) = 24549 -SHA256 (rust/crates/termion-1.5.2.tar.gz) = dde0593aeb8d47accea5392b39350015b5eccb12c0d98044d856983d89548dea -SIZE (rust/crates/termion-1.5.2.tar.gz) = 22076 +SHA256 (rust/crates/termion-1.5.3.tar.gz) = 6a8fb22f7cde82c8220e5aeacb3258ed7ce996142c77cba193f203515e26c330 +SIZE (rust/crates/termion-1.5.3.tar.gz) = 22080 SHA256 (rust/crates/textwrap-0.11.0.tar.gz) = d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060 SIZE (rust/crates/textwrap-0.11.0.tar.gz) = 17322 SHA256 (rust/crates/time-0.1.42.tar.gz) = db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f SIZE (rust/crates/time-0.1.42.tar.gz) = 30005 -SHA256 (rust/crates/tokio-0.1.20.tar.gz) = 94a1f9396aec29d31bb16c24d155cfa144d1af91c40740125db3131bdaf76da8 -SIZE (rust/crates/tokio-0.1.20.tar.gz) = 69906 +SHA256 (rust/crates/tokio-0.1.21.tar.gz) = ec2ffcf4bcfc641413fa0f1427bf8f91dfc78f56a6559cbf50e04837ae442a87 +SIZE (rust/crates/tokio-0.1.21.tar.gz) = 69956 SHA256 (rust/crates/tokio-buf-0.1.1.tar.gz) = 8fb220f46c53859a4b7ec083e41dec9778ff0b1851c0942b211edb89e0ccdc46 SIZE (rust/crates/tokio-buf-0.1.1.tar.gz) = 10815 SHA256 (rust/crates/tokio-codec-0.1.1.tar.gz) = 5c501eceaf96f0e1793cf26beb63da3d11c738c4a943fdf3746d81d64684c39f @@ -193,8 +193,8 @@ SHA256 (rust/crates/tokio-io-0.1.12.tar.gz) = 5090db46 SIZE (rust/crates/tokio-io-0.1.12.tar.gz) = 33555 SHA256 (rust/crates/tokio-reactor-0.1.9.tar.gz) = 6af16bfac7e112bea8b0442542161bfc41cbfa4466b580bdda7d18cb88b911ce SIZE (rust/crates/tokio-reactor-0.1.9.tar.gz) = 20657 -SHA256 (rust/crates/tokio-sync-0.1.5.tar.gz) = 5b2f843ffdf8d6e1f90bddd48da43f99ab071660cd92b7ec560ef3cdfd7a409a -SIZE (rust/crates/tokio-sync-0.1.5.tar.gz) = 41685 +SHA256 (rust/crates/tokio-sync-0.1.6.tar.gz) = 2162248ff317e2bc713b261f242b69dbb838b85248ed20bb21df56d60ea4cae7 +SIZE (rust/crates/tokio-sync-0.1.6.tar.gz) = 41598 SHA256 (rust/crates/tokio-tcp-0.1.3.tar.gz) = 1d14b10654be682ac43efee27401d792507e30fd8d26389e1da3b185de2e4119 SIZE (rust/crates/tokio-tcp-0.1.3.tar.gz) = 12629 SHA256 (rust/crates/tokio-threadpool-0.1.14.tar.gz) = 72558af20be886ea124595ea0f806dd5703b8958e4705429dd58b3d8231f72f2 @@ -203,8 +203,8 @@ SHA256 (rust/crates/tokio-timer-0.2.11.tar.gz) = f2106 SIZE (rust/crates/tokio-timer-0.2.11.tar.gz) = 37578 SHA256 (rust/crates/tokio-tls-0.2.1.tar.gz) = 354b8cd83825b3c20217a9dc174d6a0c67441a2fae5c41bcb1ea6679f6ae0f7c SIZE (rust/crates/tokio-tls-0.2.1.tar.gz) = 16354 -SHA256 (rust/crates/tokio-trace-core-0.1.0.tar.gz) = 350c9edade9830dc185ae48ba45667a445ab59f6167ef6d0254ec9d2430d9dd3 -SIZE (rust/crates/tokio-trace-core-0.1.0.tar.gz) = 20087 +SHA256 (rust/crates/tokio-trace-core-0.2.0.tar.gz) = a9c8a256d6956f7cb5e2bdfe8b1e8022f1a09206c6c2b1ba00f3b746b260c613 +SIZE (rust/crates/tokio-trace-core-0.2.0.tar.gz) = 24203 SHA256 (rust/crates/tokio-udp-0.1.3.tar.gz) = 66268575b80f4a4a710ef83d087fdfeeabdce9b74c797535fbac18a2cb906e92 SIZE (rust/crates/tokio-udp-0.1.3.tar.gz) = 10227 SHA256 (rust/crates/tokio-uds-0.2.5.tar.gz) = 037ffc3ba0e12a0ab4aca92e5234e0dedeb48fddf6ccd260f1f150a36a9f2445 @@ -231,5 +231,5 @@ SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0 SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 2947998 SHA256 (rust/crates/ws2_32-sys-0.2.1.tar.gz) = d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e SIZE (rust/crates/ws2_32-sys-0.2.1.tar.gz) = 4697 -SHA256 (jedisct1-rust-doh-0.1.16_GH0.tar.gz) = f01bc13c5a9a1d12e8ab6be44e730e753ac9085462505bb800b4b6799615d467 -SIZE (jedisct1-rust-doh-0.1.16_GH0.tar.gz) = 8550 +SHA256 (jedisct1-rust-doh-0.1.17_GH0.tar.gz) = ee5aa30039ee280c15ee8961cecaf49ba9d3ed59d675bcaaafd5ecc322e73865 +SIZE (jedisct1-rust-doh-0.1.17_GH0.tar.gz) = 8929 From owner-svn-ports-all@freebsd.org Mon Jun 17 21:58:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BB9E15C5931; Mon, 17 Jun 2019 21:58:51 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F41B846F5; Mon, 17 Jun 2019 21:58:50 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6AE893DB7; Mon, 17 Jun 2019 21:58:50 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HLwoc1058546; Mon, 17 Jun 2019 21:58:50 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HLwohu058545; Mon, 17 Jun 2019 21:58:50 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906172158.x5HLwohu058545@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Mon, 17 Jun 2019 21:58:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504440 - head/devel/rabs X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/devel/rabs X-SVN-Commit-Revision: 504440 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9F41B846F5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 21:58:51 -0000 Author: linimon Date: Mon Jun 17 21:58:49 2019 New Revision: 504440 URL: https://svnweb.freebsd.org/changeset/ports/504440 Log: Adjust USES to attempt to get past the following build failure on GCC-based systems: cc1: error: unrecognized command line option "-std=gnu11" However, this merely uncovers another error: the use of hardcoded x86 assembler. The website is silent on the issue of whether it has ever been tested on !x86. Therefore, mark it ONLY_FOR x86. Approved by: portmgr (tier-2 blanket) Modified: head/devel/rabs/Makefile Modified: head/devel/rabs/Makefile ============================================================================== --- head/devel/rabs/Makefile Mon Jun 17 21:58:26 2019 (r504439) +++ head/devel/rabs/Makefile Mon Jun 17 21:58:49 2019 (r504440) @@ -11,9 +11,12 @@ COMMENT= Generic imperative build system LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +ONLY_FOR_ARCHS= amd64 i386 +ONLY_FOR_ARCHS_REASON= invokes x86 assembly: Error: unrecognized opcode: 'int3' + LIB_DEPENDS= libgc-threaded.so:devel/boehm-gc-threaded -USES= gmake localbase:ldflags sqlite +USES= compiler:c11 gmake localbase:ldflags sqlite USE_GITHUB= yes GH_ACCOUNT= wrapl GH_TUPLE= wrapl:minilang:6051e5c:m/minilang From owner-svn-ports-all@freebsd.org Mon Jun 17 22:10:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1614315C5BFD; Mon, 17 Jun 2019 22:10:03 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AD44A84BEC; Mon, 17 Jun 2019 22:10:02 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 80A9E3F69; Mon, 17 Jun 2019 22:10:02 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HMA2YE064094; Mon, 17 Jun 2019 22:10:02 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HMA2LG064093; Mon, 17 Jun 2019 22:10:02 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906172210.x5HMA2LG064093@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Mon, 17 Jun 2019 22:10:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504441 - head/irc/znc/files X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/irc/znc/files X-SVN-Commit-Revision: 504441 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AD44A84BEC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 22:10:03 -0000 Author: dbaio Date: Mon Jun 17 22:10:02 2019 New Revision: 504441 URL: https://svnweb.freebsd.org/changeset/ports/504441 Log: irc/znc: Improve pkg-message with UCL format Modified: head/irc/znc/files/pkg-message.in Modified: head/irc/znc/files/pkg-message.in ============================================================================== --- head/irc/znc/files/pkg-message.in Mon Jun 17 21:58:49 2019 (r504440) +++ head/irc/znc/files/pkg-message.in Mon Jun 17 22:10:02 2019 (r504441) @@ -1,9 +1,7 @@ -***************************************************************************** - -# Configuration - - Configs written before ZNC 0.206 can't be read anymore! - +[ +{ + message: <.cpp -# Modules - - If you upgrade your ZNC version you must recompile all your external modules, - ZNC ABI is not stable. - - znc-buildmod .cpp - http://wiki.znc.in/Compiling_modules - -***************************************************************************** +******************************************************************************* +EOM + type: upgrade +} +] From owner-svn-ports-all@freebsd.org Mon Jun 17 22:12:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 12FE915C5DF7; Mon, 17 Jun 2019 22:12:35 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AA29A84F92; Mon, 17 Jun 2019 22:12:34 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 76F0D415D; Mon, 17 Jun 2019 22:12:34 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HMCYQc069074; Mon, 17 Jun 2019 22:12:34 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HMCXxx069071; Mon, 17 Jun 2019 22:12:33 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906172212.x5HMCXxx069071@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Mon, 17 Jun 2019 22:12:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504442 - head/net-mgmt/zabbix4-server X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/net-mgmt/zabbix4-server X-SVN-Commit-Revision: 504442 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AA29A84F92 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 22:12:35 -0000 Author: dbaio Date: Mon Jun 17 22:12:33 2019 New Revision: 504442 URL: https://svnweb.freebsd.org/changeset/ports/504442 Log: net-mgmt/zabbix4-*: Update to 4.0.9 Changelog: https://www.zabbix.com/rn/rn4.0.9 https://www.zabbix.com/rn/rn4.0.8 PR: 238476 Approved by: Pakhom Golynga (maintainer) Modified: head/net-mgmt/zabbix4-server/Makefile head/net-mgmt/zabbix4-server/distinfo head/net-mgmt/zabbix4-server/pkg-plist.frontend Modified: head/net-mgmt/zabbix4-server/Makefile ============================================================================== --- head/net-mgmt/zabbix4-server/Makefile Mon Jun 17 22:10:02 2019 (r504441) +++ head/net-mgmt/zabbix4-server/Makefile Mon Jun 17 22:12:33 2019 (r504442) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= zabbix4 -PORTVERSION= 4.0.7 +PORTVERSION= 4.0.9 PORTREVISION?= 0 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} Modified: head/net-mgmt/zabbix4-server/distinfo ============================================================================== --- head/net-mgmt/zabbix4-server/distinfo Mon Jun 17 22:10:02 2019 (r504441) +++ head/net-mgmt/zabbix4-server/distinfo Mon Jun 17 22:12:33 2019 (r504442) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556123785 -SHA256 (zabbix-4.0.7.tar.gz) = c2eadece82865f281015dcd51fda8534d98ff3d80ded76b81368e528b87309e3 -SIZE (zabbix-4.0.7.tar.gz) = 17175571 +TIMESTAMP = 1560182919 +SHA256 (zabbix-4.0.9.tar.gz) = aa0bc9b5e5ca8e1b49b7551e2c5d86e0342c8630cba3a0b0e0e5d9c846e784d1 +SIZE (zabbix-4.0.9.tar.gz) = 17118478 Modified: head/net-mgmt/zabbix4-server/pkg-plist.frontend ============================================================================== --- head/net-mgmt/zabbix4-server/pkg-plist.frontend Mon Jun 17 22:10:02 2019 (r504441) +++ head/net-mgmt/zabbix4-server/pkg-plist.frontend Mon Jun 17 22:12:33 2019 (r504442) @@ -160,6 +160,19 @@ %%WWWDIR%%/app/views/report.status.php %%WWWDIR%%/app/views/system.warning.php %%WWWDIR%%/applications.php +%%WWWDIR%%/assets/fonts/DejaVuSans.ttf +%%WWWDIR%%/assets/img/apple-touch-icon-120x120-precomposed.png +%%WWWDIR%%/assets/img/apple-touch-icon-152x152-precomposed.png +%%WWWDIR%%/assets/img/apple-touch-icon-180x180-precomposed.png +%%WWWDIR%%/assets/img/apple-touch-icon-76x76-precomposed.png +%%WWWDIR%%/assets/img/browser-sprite.png +%%WWWDIR%%/assets/img/icon-sprite.svg +%%WWWDIR%%/assets/img/ms-tile-144x144.png +%%WWWDIR%%/assets/img/touch-icon-192x192.png +%%WWWDIR%%/assets/styles/blue-theme.css +%%WWWDIR%%/assets/styles/dark-theme.css +%%WWWDIR%%/assets/styles/hc-dark.css +%%WWWDIR%%/assets/styles/hc-light.css %%WWWDIR%%/audio/alarm_average.wav %%WWWDIR%%/audio/alarm_disaster.wav %%WWWDIR%%/audio/alarm_high.wav @@ -186,7 +199,6 @@ %%WWWDIR%%/disc_prototypes.php %%WWWDIR%%/discoveryconf.php %%WWWDIR%%/favicon.ico -%%WWWDIR%%/fonts/DejaVuSans.ttf %%WWWDIR%%/graphs.php %%WWWDIR%%/history.php %%WWWDIR%%/host_discovery.php @@ -207,14 +219,6 @@ %%WWWDIR%%/images/general/tr_top_right_bottom.gif %%WWWDIR%%/images/general/tr_top_right.gif %%WWWDIR%%/images/general/tree/zero.gif -%%WWWDIR%%/img/apple-touch-icon-120x120-precomposed.png -%%WWWDIR%%/img/apple-touch-icon-152x152-precomposed.png -%%WWWDIR%%/img/apple-touch-icon-180x180-precomposed.png -%%WWWDIR%%/img/apple-touch-icon-76x76-precomposed.png -%%WWWDIR%%/img/browser-sprite.png -%%WWWDIR%%/img/icon-sprite.svg -%%WWWDIR%%/img/ms-tile-144x144.png -%%WWWDIR%%/img/touch-icon-192x192.png %%WWWDIR%%/imgstore.php %%WWWDIR%%/include/.htaccess %%WWWDIR%%/include/actions.inc.php @@ -926,10 +930,6 @@ %%WWWDIR%%/slideconf.php %%WWWDIR%%/slides.php %%WWWDIR%%/srv_status.php -%%WWWDIR%%/styles/blue-theme.css -%%WWWDIR%%/styles/dark-theme.css -%%WWWDIR%%/styles/hc-dark.css -%%WWWDIR%%/styles/hc-light.css %%WWWDIR%%/sysmap.php %%WWWDIR%%/sysmaps.php %%WWWDIR%%/templates.php From owner-svn-ports-all@freebsd.org Mon Jun 17 22:14:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 537BC15C5E52; Mon, 17 Jun 2019 22:14:01 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EBA6F8509F; Mon, 17 Jun 2019 22:14:00 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BC0804160; Mon, 17 Jun 2019 22:14:00 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HME0gx069340; Mon, 17 Jun 2019 22:14:00 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HME0vf069337; Mon, 17 Jun 2019 22:14:00 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906172214.x5HME0vf069337@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Mon, 17 Jun 2019 22:14:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504443 - head/net-mgmt/zabbix42-server X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/net-mgmt/zabbix42-server X-SVN-Commit-Revision: 504443 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EBA6F8509F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 22:14:01 -0000 Author: dbaio Date: Mon Jun 17 22:13:59 2019 New Revision: 504443 URL: https://svnweb.freebsd.org/changeset/ports/504443 Log: net-mgmt/zabbix42-*: Update to 4.2.3 Changelog: https://www.zabbix.com/rn/rn4.2.3 https://www.zabbix.com/rn/rn4.2.2 PR: 238477 Approved by: Pakhom Golynga (maintainer) Modified: head/net-mgmt/zabbix42-server/Makefile head/net-mgmt/zabbix42-server/distinfo head/net-mgmt/zabbix42-server/pkg-plist.frontend Modified: head/net-mgmt/zabbix42-server/Makefile ============================================================================== --- head/net-mgmt/zabbix42-server/Makefile Mon Jun 17 22:12:33 2019 (r504442) +++ head/net-mgmt/zabbix42-server/Makefile Mon Jun 17 22:13:59 2019 (r504443) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= zabbix42 -PORTVERSION= 4.2.1 +PORTVERSION= 4.2.3 PORTREVISION?= 0 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} Modified: head/net-mgmt/zabbix42-server/distinfo ============================================================================== --- head/net-mgmt/zabbix42-server/distinfo Mon Jun 17 22:12:33 2019 (r504442) +++ head/net-mgmt/zabbix42-server/distinfo Mon Jun 17 22:13:59 2019 (r504443) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556060482 -SHA256 (zabbix-4.2.1.tar.gz) = 4915d52352163e40398ca9b56b8176ea369dfd475e291087c50a3d9ae2459076 -SIZE (zabbix-4.2.1.tar.gz) = 18284589 +TIMESTAMP = 1560183016 +SHA256 (zabbix-4.2.3.tar.gz) = 3a809c974f3d2d89ca71c287072e2d06869d781e23940bbd26efb19d5460c520 +SIZE (zabbix-4.2.3.tar.gz) = 18241315 Modified: head/net-mgmt/zabbix42-server/pkg-plist.frontend ============================================================================== --- head/net-mgmt/zabbix42-server/pkg-plist.frontend Mon Jun 17 22:12:33 2019 (r504442) +++ head/net-mgmt/zabbix42-server/pkg-plist.frontend Mon Jun 17 22:13:59 2019 (r504443) @@ -171,6 +171,19 @@ %%WWWDIR%%/app/views/search.php %%WWWDIR%%/app/views/system.warning.php %%WWWDIR%%/applications.php +%%WWWDIR%%/assets/fonts/DejaVuSans.ttf +%%WWWDIR%%/assets/img/apple-touch-icon-120x120-precomposed.png +%%WWWDIR%%/assets/img/apple-touch-icon-152x152-precomposed.png +%%WWWDIR%%/assets/img/apple-touch-icon-180x180-precomposed.png +%%WWWDIR%%/assets/img/apple-touch-icon-76x76-precomposed.png +%%WWWDIR%%/assets/img/browser-sprite.png +%%WWWDIR%%/assets/img/icon-sprite.svg +%%WWWDIR%%/assets/img/ms-tile-144x144.png +%%WWWDIR%%/assets/img/touch-icon-192x192.png +%%WWWDIR%%/assets/styles/blue-theme.css +%%WWWDIR%%/assets/styles/dark-theme.css +%%WWWDIR%%/assets/styles/hc-dark.css +%%WWWDIR%%/assets/styles/hc-light.css %%WWWDIR%%/audio/alarm_average.wav %%WWWDIR%%/audio/alarm_disaster.wav %%WWWDIR%%/audio/alarm_high.wav @@ -197,7 +210,6 @@ %%WWWDIR%%/disc_prototypes.php %%WWWDIR%%/discoveryconf.php %%WWWDIR%%/favicon.ico -%%WWWDIR%%/fonts/DejaVuSans.ttf %%WWWDIR%%/graphs.php %%WWWDIR%%/history.php %%WWWDIR%%/host_discovery.php @@ -218,14 +230,6 @@ %%WWWDIR%%/images/general/tr_top_right_bottom.gif %%WWWDIR%%/images/general/tr_top_right.gif %%WWWDIR%%/images/general/tree/zero.gif -%%WWWDIR%%/img/apple-touch-icon-120x120-precomposed.png -%%WWWDIR%%/img/apple-touch-icon-152x152-precomposed.png -%%WWWDIR%%/img/apple-touch-icon-180x180-precomposed.png -%%WWWDIR%%/img/apple-touch-icon-76x76-precomposed.png -%%WWWDIR%%/img/browser-sprite.png -%%WWWDIR%%/img/icon-sprite.svg -%%WWWDIR%%/img/ms-tile-144x144.png -%%WWWDIR%%/img/touch-icon-192x192.png %%WWWDIR%%/imgstore.php %%WWWDIR%%/include/.htaccess %%WWWDIR%%/include/actions.inc.php @@ -953,10 +957,6 @@ %%WWWDIR%%/slideconf.php %%WWWDIR%%/slides.php %%WWWDIR%%/srv_status.php -%%WWWDIR%%/styles/blue-theme.css -%%WWWDIR%%/styles/dark-theme.css -%%WWWDIR%%/styles/hc-dark.css -%%WWWDIR%%/styles/hc-light.css %%WWWDIR%%/sysmap.php %%WWWDIR%%/sysmaps.php %%WWWDIR%%/templates.php From owner-svn-ports-all@freebsd.org Mon Jun 17 22:46:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A9F7D15C66E7; Mon, 17 Jun 2019 22:46:24 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5024785EC7; Mon, 17 Jun 2019 22:46:24 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 26EC5465F; Mon, 17 Jun 2019 22:46:24 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HMkN8O085411; Mon, 17 Jun 2019 22:46:23 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HMkNsc085409; Mon, 17 Jun 2019 22:46:23 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906172246.x5HMkNsc085409@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Mon, 17 Jun 2019 22:46:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504444 - in head/textproc: . itstool itstool22 X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/textproc: . itstool itstool22 X-SVN-Commit-Revision: 504444 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5024785EC7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 22:46:25 -0000 Author: dbaio Date: Mon Jun 17 22:46:23 2019 New Revision: 504444 URL: https://svnweb.freebsd.org/changeset/ports/504444 Log: Add textproc/itstool22 (v.2.0.2) This brings back ITS Tool 2.0.2 to the tree because there is an issue with version 2.0.5 and it is impacting the translation efforts of FreeBSD [1]. I'll keep this version until this problem gets fixed. 1 - https://github.com/itstool/itstool/issues/38 PR: 224903 Added: head/textproc/itstool22/ - copied from r494693, head/textproc/itstool/ Modified: head/textproc/Makefile head/textproc/itstool/Makefile head/textproc/itstool22/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Mon Jun 17 22:13:59 2019 (r504443) +++ head/textproc/Makefile Mon Jun 17 22:46:23 2019 (r504444) @@ -301,6 +301,7 @@ SUBDIR += it-hyphen SUBDIR += it-mythes SUBDIR += itstool + SUBDIR += itstool22 SUBDIR += jade SUBDIR += jakarta-commons-digester SUBDIR += jalingo Modified: head/textproc/itstool/Makefile ============================================================================== --- head/textproc/itstool/Makefile Mon Jun 17 22:13:59 2019 (r504443) +++ head/textproc/itstool/Makefile Mon Jun 17 22:46:23 2019 (r504444) @@ -19,6 +19,8 @@ RUN_DEPENDS= ${PYTHON_SITELIBDIR}/libxml2.py:textproc/ USES= python tar:bzip2 GNU_CONFIGURE= yes +CONFLICTS_INSTALL= itstool22 + post-patch: @${REINPLACE_CMD} -e 's|@PYTHON@|${PYTHON_CMD}|g' \ ${WRKSRC}/itstool.in Modified: head/textproc/itstool22/Makefile ============================================================================== --- head/textproc/itstool/Makefile Tue Mar 5 12:10:18 2019 (r494693) +++ head/textproc/itstool22/Makefile Mon Jun 17 22:46:23 2019 (r504444) @@ -4,11 +4,11 @@ PORTNAME= itstool PORTVERSION= 2.0.2 -PORTREVISION= 2 CATEGORIES= textproc MASTER_SITES= http://files.itstool.org/itstool/ +PKGNAMESUFFIX= 22 -MAINTAINER= kwm@FreeBSD.org +MAINTAINER= dbaio@FreeBSD.org COMMENT= Make XML documents translatable through po files LICENSE= GPLv3 @@ -16,8 +16,11 @@ LICENSE= GPLv3 BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/libxml2.py:textproc/py-libxml2@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_SITELIBDIR}/libxml2.py:textproc/py-libxml2@${PY_FLAVOR} -USES= python:2.7,run tar:bzip2 +USES= python:2.7 tar:bzip2 + GNU_CONFIGURE= yes + +CONFLICTS_INSTALL= itstool post-patch: @${REINPLACE_CMD} -e 's|@PYTHON@|${PYTHON_CMD}|g' \ From owner-svn-ports-all@freebsd.org Mon Jun 17 23:56:12 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6678715C7881; Mon, 17 Jun 2019 23:56:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 00E5687C44; Mon, 17 Jun 2019 23:56:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CD0CF5205; Mon, 17 Jun 2019 23:56:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5HNuB2f022188; Mon, 17 Jun 2019 23:56:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5HNuBKA022187; Mon, 17 Jun 2019 23:56:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906172356.x5HNuBKA022187@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Mon, 17 Jun 2019 23:56:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504445 - head/www/libjwt X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/libjwt X-SVN-Commit-Revision: 504445 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 00E5687C44 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.985,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2019 23:56:12 -0000 Author: sunpoet Date: Mon Jun 17 23:56:11 2019 New Revision: 504445 URL: https://svnweb.freebsd.org/changeset/ports/504445 Log: Add test Modified: head/www/libjwt/Makefile Modified: head/www/libjwt/Makefile ============================================================================== --- head/www/libjwt/Makefile Mon Jun 17 22:46:23 2019 (r504444) +++ head/www/libjwt/Makefile Mon Jun 17 23:56:11 2019 (r504445) @@ -14,6 +14,7 @@ LICENSE_FILE= ${WRKSRC}/MPL-2.0 BUILD_DEPENDS= jansson>=2.0:devel/jansson LIB_DEPENDS= libjansson.so:devel/jansson +TEST_DEPENDS= check>=0.9.4:devel/check USES= autoreconf gmake libtool pathfix pkgconfig ssl @@ -24,6 +25,8 @@ CONFIGURE_ENV= OPENSSL_CFLAGS="-I${OPENSSLINC}" \ OPENSSL_LIBS="-L${OPENSSLLIB} -lcrypto -lssl" GNU_CONFIGURE= yes INSTALL_TARGET= install-strip +TEST_ARGS= CFLAGS+=-I${LOCALBASE}/include LIBS+="-L${LOCALBASE}/lib -lcheck" +TEST_TARGET= check USE_LDCONFIG= yes .include From owner-svn-ports-all@freebsd.org Tue Jun 18 00:01:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1456215C7C97; Tue, 18 Jun 2019 00:01:35 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AFDD288078; Tue, 18 Jun 2019 00:01:34 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8A5DC525F; Tue, 18 Jun 2019 00:01:34 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I01YWJ024056; Tue, 18 Jun 2019 00:01:34 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I01YRt024055; Tue, 18 Jun 2019 00:01:34 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201906180001.x5I01YRt024055@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Tue, 18 Jun 2019 00:01:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504446 - head/security/p5-CryptX X-SVN-Group: ports-head X-SVN-Commit-Author: vanilla X-SVN-Commit-Paths: head/security/p5-CryptX X-SVN-Commit-Revision: 504446 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AFDD288078 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.985,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 00:01:35 -0000 Author: vanilla Date: Tue Jun 18 00:01:33 2019 New Revision: 504446 URL: https://svnweb.freebsd.org/changeset/ports/504446 Log: Update to 0.064. Modified: head/security/p5-CryptX/Makefile head/security/p5-CryptX/distinfo Modified: head/security/p5-CryptX/Makefile ============================================================================== --- head/security/p5-CryptX/Makefile Mon Jun 17 23:56:11 2019 (r504445) +++ head/security/p5-CryptX/Makefile Tue Jun 18 00:01:33 2019 (r504446) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CryptX -PORTVERSION= 0.063 +PORTVERSION= 0.064 CATEGORIES= security perl5 MASTER_SITES= CPAN/Crypt PKGNAMEPREFIX= p5- Modified: head/security/p5-CryptX/distinfo ============================================================================== --- head/security/p5-CryptX/distinfo Mon Jun 17 23:56:11 2019 (r504445) +++ head/security/p5-CryptX/distinfo Tue Jun 18 00:01:33 2019 (r504446) @@ -1,3 +1,3 @@ -TIMESTAMP = 1543485809 -SHA256 (CryptX-0.063.tar.gz) = 6cfc672e0e56d56cf849caf0b929ed94f87cb4e6be5c20757ca3d3dbe5569595 -SIZE (CryptX-0.063.tar.gz) = 1602823 +TIMESTAMP = 1560816029 +SHA256 (CryptX-0.064.tar.gz) = 176ef4d2eac80731b360db04289431f0b96acc2568a1fec856abed4a51779a47 +SIZE (CryptX-0.064.tar.gz) = 1619390 From owner-svn-ports-all@freebsd.org Tue Jun 18 00:12:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4BF8115C8235; Tue, 18 Jun 2019 00:12:33 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E475F887AA; Tue, 18 Jun 2019 00:12:32 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B2BAD556B; Tue, 18 Jun 2019 00:12:32 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I0CWcN032576; Tue, 18 Jun 2019 00:12:32 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I0CWm0032574; Tue, 18 Jun 2019 00:12:32 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906180012.x5I0CWm0032574@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Tue, 18 Jun 2019 00:12:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504447 - head/net-im/purple-hangouts X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/net-im/purple-hangouts X-SVN-Commit-Revision: 504447 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E475F887AA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.985,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 00:12:33 -0000 Author: dbaio Date: Tue Jun 18 00:12:32 2019 New Revision: 504447 URL: https://svnweb.freebsd.org/changeset/ports/504447 Log: net-im/purple-hangouts: Update to 20190607 PR: 238626 Submitted by: (maintainer) Modified: head/net-im/purple-hangouts/Makefile head/net-im/purple-hangouts/distinfo Modified: head/net-im/purple-hangouts/Makefile ============================================================================== --- head/net-im/purple-hangouts/Makefile Tue Jun 18 00:01:33 2019 (r504446) +++ head/net-im/purple-hangouts/Makefile Tue Jun 18 00:12:32 2019 (r504447) @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= purple-hangouts -PORTVERSION= 20181202 +PORTVERSION= 20190607 CATEGORIES= net-im MASTER_SITES= https://bitbucket.org/EionRobb/${PORTNAME}/get/ # Commit tag. Must be changed according with PORTVERSION. -DISTNAME= cccf2f62d439 +DISTNAME= 3f7d89bf9ce2 MAINTAINER= jjuanino@gmail.com COMMENT= Hangouts plugin for libpurple Modified: head/net-im/purple-hangouts/distinfo ============================================================================== --- head/net-im/purple-hangouts/distinfo Tue Jun 18 00:01:33 2019 (r504446) +++ head/net-im/purple-hangouts/distinfo Tue Jun 18 00:12:32 2019 (r504447) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547743079 -SHA256 (cccf2f62d439.zip) = a12009e50b461626814ab20003b2ef8134226668e44ef63b9bd738a3d083120b -SIZE (cccf2f62d439.zip) = 170780 +TIMESTAMP = 1560716336 +SHA256 (3f7d89bf9ce2.zip) = e5265fa947071ef2d6068e7493f6260b8078cc683aa6775d767e04ed3baa536b +SIZE (3f7d89bf9ce2.zip) = 172287 From owner-svn-ports-all@freebsd.org Tue Jun 18 00:29:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1048215C89F8; Tue, 18 Jun 2019 00:29:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9EF7988FE5; Tue, 18 Jun 2019 00:29:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6C8F55711; Tue, 18 Jun 2019 00:29:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I0Tk6K038066; Tue, 18 Jun 2019 00:29:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I0TjCR038059; Tue, 18 Jun 2019 00:29:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906180029.x5I0TjCR038059@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 18 Jun 2019 00:29:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504448 - in head/devel: . p5-Locale-XGettext X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . p5-Locale-XGettext X-SVN-Commit-Revision: 504448 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9EF7988FE5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 00:29:47 -0000 Author: sunpoet Date: Tue Jun 18 00:29:45 2019 New Revision: 504448 URL: https://svnweb.freebsd.org/changeset/ports/504448 Log: Add p5-Locale-XGettext 0.7 When using GNU gettext you often find yourself extracting translatable strings from more or less exotic file formats that cannot be handled by xgettext from the GNU gettext suite directly. This package simplifies the task of writing a string extractor in Perl, Python, Java, Ruby or other languages by providing a common base needed for such scripts. Locale::XGettext is the base class for various string extractors. These string extractors can be used as standalone programs on the command-line or as a module as a part of other software. https://metacpan.org/release/Locale-XGettext Added: head/devel/p5-Locale-XGettext/ head/devel/p5-Locale-XGettext/Makefile (contents, props changed) head/devel/p5-Locale-XGettext/distinfo (contents, props changed) head/devel/p5-Locale-XGettext/pkg-descr (contents, props changed) head/devel/p5-Locale-XGettext/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jun 18 00:12:32 2019 (r504447) +++ head/devel/Makefile Tue Jun 18 00:29:45 2019 (r504448) @@ -2615,6 +2615,7 @@ SUBDIR += p5-Locale-Msgfmt SUBDIR += p5-Locale-PGetText SUBDIR += p5-Locale-PO + SUBDIR += p5-Locale-XGettext SUBDIR += p5-Locale-gettext SUBDIR += p5-Locale-libintl SUBDIR += p5-LockFile-Simple Added: head/devel/p5-Locale-XGettext/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Locale-XGettext/Makefile Tue Jun 18 00:29:45 2019 (r504448) @@ -0,0 +1,25 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Locale-XGettext +PORTVERSION= 0.7 +CATEGORIES= devel perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Create PO files from text files + +LICENSE= LGPL3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Locale-PO>=0.27:devel/p5-Locale-PO \ + p5-Locale-libintl>=1.20:devel/p5-Locale-libintl + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include Added: head/devel/p5-Locale-XGettext/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Locale-XGettext/distinfo Tue Jun 18 00:29:45 2019 (r504448) @@ -0,0 +1,3 @@ +TIMESTAMP = 1559652319 +SHA256 (Locale-XGettext-0.7.tar.gz) = 95179b62d3e8e15f9345b604a595cfa688f1209e5900a7a9ea7a38d3424ed4a8 +SIZE (Locale-XGettext-0.7.tar.gz) = 75988 Added: head/devel/p5-Locale-XGettext/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Locale-XGettext/pkg-descr Tue Jun 18 00:29:45 2019 (r504448) @@ -0,0 +1,11 @@ +When using GNU gettext you often find yourself extracting translatable strings +from more or less exotic file formats that cannot be handled by xgettext from +the GNU gettext suite directly. This package simplifies the task of writing a +string extractor in Perl, Python, Java, Ruby or other languages by providing a +common base needed for such scripts. + +Locale::XGettext is the base class for various string extractors. These string +extractors can be used as standalone programs on the command-line or as a module +as a part of other software. + +https://metacpan.org/release/Locale-XGettext Added: head/devel/p5-Locale-XGettext/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/p5-Locale-XGettext/pkg-plist Tue Jun 18 00:29:45 2019 (r504448) @@ -0,0 +1,18 @@ +bin/xgettext-txt +%%SITE_PERL%%/Locale/XGettext.pm +%%SITE_PERL%%/Locale/XGettext.pod +%%SITE_PERL%%/Locale/XGettext/Text.pm +%%SITE_PERL%%/Locale/XGettext/Text.pod +%%SITE_PERL%%/Locale/XGettext/Util/Flag.pm +%%SITE_PERL%%/Locale/XGettext/Util/Flag.pod +%%SITE_PERL%%/Locale/XGettext/Util/Keyword.pm +%%SITE_PERL%%/Locale/XGettext/Util/Keyword.pod +%%SITE_PERL%%/Locale/XGettext/Util/POEntries.pm +%%SITE_PERL%%/Locale/XGettext/Util/POEntries.pod +%%SITE_PERL%%/LocaleData/de/LC_MESSAGES/Locale-XGettext.mo +%%PERL5_MAN1%%/xgettext-txt.1.gz +%%PERL5_MAN3%%/Locale::XGettext.3.gz +%%PERL5_MAN3%%/Locale::XGettext::Text.3.gz +%%PERL5_MAN3%%/Locale::XGettext::Util::Flag.3.gz +%%PERL5_MAN3%%/Locale::XGettext::Util::Keyword.3.gz +%%PERL5_MAN3%%/Locale::XGettext::Util::POEntries.3.gz From owner-svn-ports-all@freebsd.org Tue Jun 18 00:29:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BBA9715C8A28; Tue, 18 Jun 2019 00:29:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 43678890A8; Tue, 18 Jun 2019 00:29:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 891A65712; Tue, 18 Jun 2019 00:29:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I0Tqvj038252; Tue, 18 Jun 2019 00:29:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I0TpMW038244; Tue, 18 Jun 2019 00:29:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906180029.x5I0TpMW038244@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Tue, 18 Jun 2019 00:29:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504449 - in head/www: . p5-Template-Plugin-Gettext X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/www: . p5-Template-Plugin-Gettext X-SVN-Commit-Revision: 504449 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 43678890A8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 00:29:58 -0000 Author: sunpoet Date: Tue Jun 18 00:29:51 2019 New Revision: 504449 URL: https://svnweb.freebsd.org/changeset/ports/504449 Log: Add p5-Template-Plugin-Gettext 0.7 Template::Plugin::Gettext offers an end-to-end localization and internationalization solution for the Template Toolkit 2. It consists of a plugin that offers translation functions inside templates and a string extractor xgettext-tt2 that extracts translatable strings from templates and writes them to PO files (or rather a .pot file in PO format). The string extractor xgettext-tt2 is fully customizable and also usable for other i18n plugins or frameworks for the Template Toolkit. WWW: https://metacpan.org/release/Template-Plugin-Gettext Added: head/www/p5-Template-Plugin-Gettext/ head/www/p5-Template-Plugin-Gettext/Makefile (contents, props changed) head/www/p5-Template-Plugin-Gettext/distinfo (contents, props changed) head/www/p5-Template-Plugin-Gettext/pkg-descr (contents, props changed) head/www/p5-Template-Plugin-Gettext/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Jun 18 00:29:45 2019 (r504448) +++ head/www/Makefile Tue Jun 18 00:29:51 2019 (r504449) @@ -1160,6 +1160,7 @@ SUBDIR += p5-Template-Plugin-Clickable-Email SUBDIR += p5-Template-Plugin-Comma SUBDIR += p5-Template-Plugin-FillInForm + SUBDIR += p5-Template-Plugin-Gettext SUBDIR += p5-Template-Plugin-JSON SUBDIR += p5-Template-Plugin-JavaScript SUBDIR += p5-Template-Plugin-MP3 Added: head/www/p5-Template-Plugin-Gettext/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Template-Plugin-Gettext/Makefile Tue Jun 18 00:29:51 2019 (r504449) @@ -0,0 +1,26 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= Template-Plugin-Gettext +PORTVERSION= 0.7 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Gettext support for the Template Toolkit version 2 + +LICENSE= LGPL3+ +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${RUN_DEPENDS} +RUN_DEPENDS= p5-Locale-XGettext>=0:devel/p5-Locale-XGettext \ + p5-Locale-libintl>=1.30:devel/p5-Locale-libintl \ + p5-Template-Toolkit>=0:www/p5-Template-Toolkit + +USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes + +.include Added: head/www/p5-Template-Plugin-Gettext/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Template-Plugin-Gettext/distinfo Tue Jun 18 00:29:51 2019 (r504449) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560682605 +SHA256 (Template-Plugin-Gettext-0.7.tar.gz) = 4539b8904019628c0c045f82f5f443785fda46d87dac10d768215a64400afd30 +SIZE (Template-Plugin-Gettext-0.7.tar.gz) = 38927 Added: head/www/p5-Template-Plugin-Gettext/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Template-Plugin-Gettext/pkg-descr Tue Jun 18 00:29:51 2019 (r504449) @@ -0,0 +1,9 @@ +Template::Plugin::Gettext offers an end-to-end localization and +internationalization solution for the Template Toolkit 2. It consists of a +plugin that offers translation functions inside templates and a string extractor +xgettext-tt2 that extracts translatable strings from templates and writes them +to PO files (or rather a .pot file in PO format). The string extractor +xgettext-tt2 is fully customizable and also usable for other i18n plugins or +frameworks for the Template Toolkit. + +WWW: https://metacpan.org/release/Template-Plugin-Gettext Added: head/www/p5-Template-Plugin-Gettext/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Template-Plugin-Gettext/pkg-plist Tue Jun 18 00:29:51 2019 (r504449) @@ -0,0 +1,8 @@ +bin/xgettext-tt2 +%%SITE_PERL%%/Locale/XGettext/TT2.pm +%%SITE_PERL%%/Locale/XGettext/TT2.pod +%%SITE_PERL%%/Template/Plugin/Gettext.pm +%%SITE_PERL%%/Template/Plugin/Gettext.pod +%%PERL5_MAN1%%/xgettext-tt2.1.gz +%%PERL5_MAN3%%/Locale::XGettext::TT2.3.gz +%%PERL5_MAN3%%/Template::Plugin::Gettext.3.gz From owner-svn-ports-all@freebsd.org Tue Jun 18 00:51:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 05D1215C9522; Tue, 18 Jun 2019 00:51:26 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 966C689C85; Tue, 18 Jun 2019 00:51:25 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 67C985BB8; Tue, 18 Jun 2019 00:51:25 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I0pP0x049969; Tue, 18 Jun 2019 00:51:25 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I0pOZB049965; Tue, 18 Jun 2019 00:51:24 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906180051.x5I0pOZB049965@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 00:51:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504450 - in head: devel/py-game_sdl2 games/renpy X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head: devel/py-game_sdl2 games/renpy X-SVN-Commit-Revision: 504450 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 966C689C85 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 00:51:26 -0000 Author: jbeich Date: Tue Jun 18 00:51:24 2019 New Revision: 504450 URL: https://svnweb.freebsd.org/changeset/ports/504450 Log: devel/renpy: update to 7.3.0 Changes: https://www.renpy.org/release/7.3.0 (see Announcment) Changes: https://www.renpy.org/doc/html/changelog.html#renpy-7-3-0 Modified: head/devel/py-game_sdl2/Makefile (contents, props changed) head/devel/py-game_sdl2/distinfo (contents, props changed) head/games/renpy/Makefile (contents, props changed) head/games/renpy/distinfo (contents, props changed) Modified: head/devel/py-game_sdl2/Makefile ============================================================================== --- head/devel/py-game_sdl2/Makefile Tue Jun 18 00:29:51 2019 (r504449) +++ head/devel/py-game_sdl2/Makefile Tue Jun 18 00:51:24 2019 (r504450) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= game_sdl2 -PORTVERSION= 7.2.2 +PORTVERSION= 7.3.0 CATEGORIES= devel python MASTER_SITES= http://www.renpy.org/dl/${PORTVERSION}/ \ GENTOO Modified: head/devel/py-game_sdl2/distinfo ============================================================================== --- head/devel/py-game_sdl2/distinfo Tue Jun 18 00:29:51 2019 (r504449) +++ head/devel/py-game_sdl2/distinfo Tue Jun 18 00:51:24 2019 (r504450) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554044280 -SHA256 (pygame_sdl2-2.1.0-for-renpy-7.2.2.tar.gz) = 87c76910111b25c344fea7f377581d457e68d32c22271276ecfaf3b77a632e66 -SIZE (pygame_sdl2-2.1.0-for-renpy-7.2.2.tar.gz) = 2683095 +TIMESTAMP = 1560715910 +SHA256 (pygame_sdl2-2.1.0-for-renpy-7.3.0.tar.gz) = ddfa57b6557c000ef90d82efd646df455d62621e52dc76d1d61c5e3c322e0602 +SIZE (pygame_sdl2-2.1.0-for-renpy-7.3.0.tar.gz) = 2683060 Modified: head/games/renpy/Makefile ============================================================================== --- head/games/renpy/Makefile Tue Jun 18 00:29:51 2019 (r504449) +++ head/games/renpy/Makefile Tue Jun 18 00:51:24 2019 (r504450) @@ -1,16 +1,11 @@ # $FreeBSD$ PORTNAME= renpy -PORTVERSION?= 7.2.2 +PORTVERSION?= 7.3.0 DISTVERSIONSUFFIX=-sdk PORTREVISION?= 0 CATEGORIES= games devel MASTER_SITES= https://www.renpy.org/dl/${PORTVERSION}/ - -.ifndef PKGNAMESUFFIX -PATCH_SITES= https://github.com/${PORTNAME}/${PORTNAME}/commit/ -PATCHFILES+= 15738d1dfb41.patch:-p1 -.endif MAINTAINER= jbeich@FreeBSD.org COMMENT= Framework for developing visual-novel type games Modified: head/games/renpy/distinfo ============================================================================== --- head/games/renpy/distinfo Tue Jun 18 00:29:51 2019 (r504449) +++ head/games/renpy/distinfo Tue Jun 18 00:51:24 2019 (r504450) @@ -1,5 +1,3 @@ -TIMESTAMP = 1554044105 -SHA256 (renpy-7.2.2-sdk.tar.bz2) = 2647403f6be49fa979a1a00b7e5200824a58a80837c3e53ef782dbfcc727236e -SIZE (renpy-7.2.2-sdk.tar.bz2) = 93597674 -SHA256 (15738d1dfb41.patch) = 8fef24bba678be4b23a19cb2c75e06f70ac15f2407cd7a64086c872dbfd27e55 -SIZE (15738d1dfb41.patch) = 1079 +TIMESTAMP = 1560715852 +SHA256 (renpy-7.3.0-sdk.tar.bz2) = 7b5b248f2f90275d1959db4d939a8ba50ac80980bd5675c6c3fae80404a60f60 +SIZE (renpy-7.3.0-sdk.tar.bz2) = 94650150 From owner-svn-ports-all@freebsd.org Tue Jun 18 00:51:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 505AC15C9544; Tue, 18 Jun 2019 00:51:37 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E3F2289D5C; Tue, 18 Jun 2019 00:51:36 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7CB545BC3; Tue, 18 Jun 2019 00:51:35 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I0pZPw050095; Tue, 18 Jun 2019 00:51:35 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I0pZPu050093; Tue, 18 Jun 2019 00:51:35 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906180051.x5I0pZPu050093@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 00:51:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504451 - head/emulators/rpcs3 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/emulators/rpcs3 X-SVN-Commit-Revision: 504451 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E3F2289D5C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 00:51:37 -0000 Author: jbeich Date: Tue Jun 18 00:51:34 2019 New Revision: 504451 URL: https://svnweb.freebsd.org/changeset/ports/504451 Log: emulators/rpcs3: update to 0.0.6.8261 Changes: https://github.com/RPCS3/rpcs3/compare/b29a89807...d52953fca Modified: head/emulators/rpcs3/Makefile (contents, props changed) head/emulators/rpcs3/distinfo (contents, props changed) Modified: head/emulators/rpcs3/Makefile ============================================================================== --- head/emulators/rpcs3/Makefile Tue Jun 18 00:51:24 2019 (r504450) +++ head/emulators/rpcs3/Makefile Tue Jun 18 00:51:34 2019 (r504451) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.6-8256 # git rev-list --count HEAD -DISTVERSIONSUFFIX= -gb29a89807 +DISTVERSION= 0.0.6-8261 # git rev-list --count HEAD +DISTVERSIONSUFFIX= -gd52953fca CATEGORIES= emulators PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Tue Jun 18 00:51:24 2019 (r504450) +++ head/emulators/rpcs3/distinfo Tue Jun 18 00:51:34 2019 (r504451) @@ -1,6 +1,6 @@ -TIMESTAMP = 1560551050 -SHA256 (RPCS3-rpcs3-v0.0.6-8256-gb29a89807_GH0.tar.gz) = 53ed519bb14676c89ea1d7eba897e6c8253e46598a34694defbbd3cf42e9972e -SIZE (RPCS3-rpcs3-v0.0.6-8256-gb29a89807_GH0.tar.gz) = 5443518 +TIMESTAMP = 1560729163 +SHA256 (RPCS3-rpcs3-v0.0.6-8261-gd52953fca_GH0.tar.gz) = 6057a8116327fbe86998504b88f692310bf3d1625bd73cab2fbfeb6c91331056 +SIZE (RPCS3-rpcs3-v0.0.6-8261-gd52953fca_GH0.tar.gz) = 5443231 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-b860b5e8f4ee_GH0.tar.gz) = c151972a0c8ceac568c24b61e63d2ecbdac0f125185e23fc2238e0a14048256e From owner-svn-ports-all@freebsd.org Tue Jun 18 00:51:44 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B970C15C9569; Tue, 18 Jun 2019 00:51:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5094C89DE4; Tue, 18 Jun 2019 00:51:44 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C8ED05BC9; Tue, 18 Jun 2019 00:51:42 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I0pgU3050222; Tue, 18 Jun 2019 00:51:42 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I0pgDO050221; Tue, 18 Jun 2019 00:51:42 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906180051.x5I0pgDO050221@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 00:51:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504452 - head/multimedia/rav1e X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/rav1e X-SVN-Commit-Revision: 504452 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5094C89DE4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 00:51:45 -0000 Author: jbeich Date: Tue Jun 18 00:51:42 2019 New Revision: 504452 URL: https://svnweb.freebsd.org/changeset/ports/504452 Log: multimedia/rav1e: update to s20190615 Changes: https://github.com/xiph/rav1e/compare/c68d68c6...6d330d26 Modified: head/multimedia/rav1e/Makefile (contents, props changed) head/multimedia/rav1e/distinfo (contents, props changed) Modified: head/multimedia/rav1e/Makefile ============================================================================== --- head/multimedia/rav1e/Makefile Tue Jun 18 00:51:34 2019 (r504451) +++ head/multimedia/rav1e/Makefile Tue Jun 18 00:51:42 2019 (r504452) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rav1e -PORTVERSION= s20190608 +PORTVERSION= s20190615 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= c68d68c6 +GH_TAGNAME= 6d330d26 PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= aho-corasick-0.7.3 \ @@ -31,21 +31,23 @@ CARGO_CRATES= aho-corasick-0.7.3 \ backtrace-sys-0.1.28 \ bincode-1.1.4 \ bindgen-0.49.2 \ - bitflags-1.0.4 \ + bitflags-1.1.0 \ bitstream-io-0.8.2 \ - byteorder-1.3.1 \ + byteorder-1.3.2 \ cast-0.2.2 \ cc-1.0.37 \ cexpr-0.3.5 \ cfg-if-0.1.9 \ + chrono-0.4.6 \ clang-sys-0.28.0 \ clap-2.33.0 \ cloudabi-0.0.3 \ criterion-0.2.11 \ criterion-plot-0.3.1 \ - crossbeam-deque-0.2.0 \ - crossbeam-epoch-0.3.1 \ - crossbeam-utils-0.2.2 \ + crossbeam-deque-0.6.3 \ + crossbeam-epoch-0.7.1 \ + crossbeam-queue-0.1.2 \ + crossbeam-utils-0.6.5 \ csv-1.0.7 \ csv-core-0.1.5 \ ctor-0.1.9 \ @@ -55,6 +57,7 @@ CARGO_CRATES= aho-corasick-0.7.3 \ env_logger-0.6.1 \ error-chain-0.10.0 \ failure-0.1.5 \ + failure_derive-0.1.5 \ fuchsia-cprng-0.1.1 \ fxhash-0.2.1 \ glob-0.2.11 \ @@ -72,8 +75,9 @@ CARGO_CRATES= aho-corasick-0.7.3 \ nodrop-0.1.13 \ nom-4.2.3 \ num-derive-0.2.5 \ + num-integer-0.1.41 \ num-traits-0.2.8 \ - num_cpus-1.10.0 \ + num_cpus-1.10.1 \ numtoa-0.1.0 \ output_vt100-0.1.2 \ paste-0.1.5 \ @@ -96,18 +100,20 @@ CARGO_CRATES= aho-corasick-0.7.3 \ rand_pcg-0.1.2 \ rand_xorshift-0.1.1 \ rand_xoshiro-0.1.0 \ - rayon-1.0.3 \ - rayon-core-1.4.1 \ + rayon-1.1.0 \ + rayon-core-1.5.0 \ rdrand-0.4.0 \ redox_syscall-0.1.54 \ redox_termios-0.1.1 \ - regex-1.1.6 \ - regex-syntax-0.6.6 \ + regex-1.1.7 \ + regex-syntax-0.6.7 \ rustc-demangle-0.1.15 \ ryu-0.2.8 \ same-file-1.0.4 \ scan_fmt-0.2.2 \ scopeguard-0.3.3 \ + semver-0.9.0 \ + semver-parser-0.7.0 \ serde-1.0.92 \ serde_derive-1.0.92 \ serde_json-1.0.39 \ @@ -115,20 +121,23 @@ CARGO_CRATES= aho-corasick-0.7.3 \ signal-hook-0.1.9 \ signal-hook-registry-1.0.1 \ strsim-0.8.0 \ - syn-0.15.34 \ + syn-0.15.36 \ + synstructure-0.10.2 \ termcolor-1.0.5 \ - termion-1.5.2 \ + termion-1.5.3 \ textwrap-0.11.0 \ thread_local-0.3.6 \ + time-0.1.42 \ tinytemplate-1.0.2 \ toml-0.2.1 \ ucd-util-0.1.3 \ unicode-width-0.1.5 \ unicode-xid-0.1.0 \ - utf8-ranges-1.0.2 \ + utf8-ranges-1.0.3 \ vec_map-0.8.1 \ + vergen-3.0.4 \ version_check-0.1.5 \ - walkdir-2.2.7 \ + walkdir-2.2.8 \ which-2.0.1 \ winapi-0.3.7 \ winapi-i686-pc-windows-gnu-0.4.0 \ Modified: head/multimedia/rav1e/distinfo ============================================================================== --- head/multimedia/rav1e/distinfo Tue Jun 18 00:51:34 2019 (r504451) +++ head/multimedia/rav1e/distinfo Tue Jun 18 00:51:42 2019 (r504452) @@ -1,4 +1,4 @@ -TIMESTAMP = 1560009289 +TIMESTAMP = 1560612042 SHA256 (rust/crates/aho-corasick-0.7.3.tar.gz) = e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c SIZE (rust/crates/aho-corasick-0.7.3.tar.gz) = 55093 SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b @@ -23,12 +23,12 @@ SHA256 (rust/crates/bincode-1.1.4.tar.gz) = 9f04a5e50d SIZE (rust/crates/bincode-1.1.4.tar.gz) = 14412 SHA256 (rust/crates/bindgen-0.49.2.tar.gz) = 846a1fba6535362a01487ef6b10f0275faa12e5c5d835c5c1c627aabc46ccbd6 SIZE (rust/crates/bindgen-0.49.2.tar.gz) = 180570 -SHA256 (rust/crates/bitflags-1.0.4.tar.gz) = 228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12 -SIZE (rust/crates/bitflags-1.0.4.tar.gz) = 15282 +SHA256 (rust/crates/bitflags-1.1.0.tar.gz) = 3d155346769a6855b86399e9bc3814ab343cd3d62c7e985113d46a0ec3c281fd +SIZE (rust/crates/bitflags-1.1.0.tar.gz) = 16322 SHA256 (rust/crates/bitstream-io-0.8.2.tar.gz) = 323985a3a863d4afdabd6fae576e28cd141abf1f9d47392a27b7cc561baa61a7 SIZE (rust/crates/bitstream-io-0.8.2.tar.gz) = 22252 -SHA256 (rust/crates/byteorder-1.3.1.tar.gz) = a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb -SIZE (rust/crates/byteorder-1.3.1.tar.gz) = 20959 +SHA256 (rust/crates/byteorder-1.3.2.tar.gz) = a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5 +SIZE (rust/crates/byteorder-1.3.2.tar.gz) = 21596 SHA256 (rust/crates/cast-0.2.2.tar.gz) = 926013f2860c46252efceabb19f4a6b308197505082c609025aa6706c011d427 SIZE (rust/crates/cast-0.2.2.tar.gz) = 10318 SHA256 (rust/crates/cc-1.0.37.tar.gz) = 39f75544d7bbaf57560d2168f28fd649ff9c76153874db88bdbdfd839b1a7e7d @@ -37,6 +37,8 @@ SHA256 (rust/crates/cexpr-0.3.5.tar.gz) = a7fa24eb00d5 SIZE (rust/crates/cexpr-0.3.5.tar.gz) = 16938 SHA256 (rust/crates/cfg-if-0.1.9.tar.gz) = b486ce3ccf7ffd79fdeb678eac06a9e6c09fc88d33836340becb8fffe87c5e33 SIZE (rust/crates/cfg-if-0.1.9.tar.gz) = 7353 +SHA256 (rust/crates/chrono-0.4.6.tar.gz) = 45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878 +SIZE (rust/crates/chrono-0.4.6.tar.gz) = 133108 SHA256 (rust/crates/clang-sys-0.28.0.tar.gz) = 4227269cec09f5f83ff160be12a1e9b0262dd1aa305302d5ba296c2ebd291055 SIZE (rust/crates/clang-sys-0.28.0.tar.gz) = 33566 SHA256 (rust/crates/clap-2.33.0.tar.gz) = 5067f5bb2d80ef5d68b4c87db81601f0b75bca627bc2ef76b141d7b846a3c6d9 @@ -47,12 +49,14 @@ SHA256 (rust/crates/criterion-0.2.11.tar.gz) = 0363053 SIZE (rust/crates/criterion-0.2.11.tar.gz) = 78216 SHA256 (rust/crates/criterion-plot-0.3.1.tar.gz) = 76f9212ddf2f4a9eb2d401635190600656a1f88a932ef53d06e7fa4c7e02fb8e SIZE (rust/crates/criterion-plot-0.3.1.tar.gz) = 17097 -SHA256 (rust/crates/crossbeam-deque-0.2.0.tar.gz) = f739f8c5363aca78cfb059edf753d8f0d36908c348f3d8d1503f03d8b75d9cf3 -SIZE (rust/crates/crossbeam-deque-0.2.0.tar.gz) = 12638 -SHA256 (rust/crates/crossbeam-epoch-0.3.1.tar.gz) = 927121f5407de9956180ff5e936fe3cf4324279280001cd56b669d28ee7e9150 -SIZE (rust/crates/crossbeam-epoch-0.3.1.tar.gz) = 33093 -SHA256 (rust/crates/crossbeam-utils-0.2.2.tar.gz) = 2760899e32a1d58d5abb31129f8fae5de75220bc2176e77ff7c627ae45c918d9 -SIZE (rust/crates/crossbeam-utils-0.2.2.tar.gz) = 11901 +SHA256 (rust/crates/crossbeam-deque-0.6.3.tar.gz) = 05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13 +SIZE (rust/crates/crossbeam-deque-0.6.3.tar.gz) = 14238 +SHA256 (rust/crates/crossbeam-epoch-0.7.1.tar.gz) = 04c9e3102cc2d69cd681412141b390abd55a362afc1540965dad0ad4d34280b4 +SIZE (rust/crates/crossbeam-epoch-0.7.1.tar.gz) = 35215 +SHA256 (rust/crates/crossbeam-queue-0.1.2.tar.gz) = 7c979cd6cfe72335896575c6b5688da489e420d36a27a0b9eb0c73db574b4a4b +SIZE (rust/crates/crossbeam-queue-0.1.2.tar.gz) = 14104 +SHA256 (rust/crates/crossbeam-utils-0.6.5.tar.gz) = f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c +SIZE (rust/crates/crossbeam-utils-0.6.5.tar.gz) = 31735 SHA256 (rust/crates/csv-1.0.7.tar.gz) = 9044e25afb0924b5a5fc5511689b0918629e85d68ea591e5e87fbf1e85ea1b3b SIZE (rust/crates/csv-1.0.7.tar.gz) = 888900 SHA256 (rust/crates/csv-core-0.1.5.tar.gz) = fa5cdef62f37e6ffe7d1f07a381bc0db32b7a3ff1cac0de56cb0d81e71f53d65 @@ -71,6 +75,8 @@ SHA256 (rust/crates/error-chain-0.10.0.tar.gz) = d9435 SIZE (rust/crates/error-chain-0.10.0.tar.gz) = 18432 SHA256 (rust/crates/failure-0.1.5.tar.gz) = 795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2 SIZE (rust/crates/failure-0.1.5.tar.gz) = 36749 +SHA256 (rust/crates/failure_derive-0.1.5.tar.gz) = ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1 +SIZE (rust/crates/failure_derive-0.1.5.tar.gz) = 4884 SHA256 (rust/crates/fuchsia-cprng-0.1.1.tar.gz) = a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba SIZE (rust/crates/fuchsia-cprng-0.1.1.tar.gz) = 2950 SHA256 (rust/crates/fxhash-0.2.1.tar.gz) = c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c @@ -105,10 +111,12 @@ SHA256 (rust/crates/nom-4.2.3.tar.gz) = 2ad2a91a8e869e SIZE (rust/crates/nom-4.2.3.tar.gz) = 115343 SHA256 (rust/crates/num-derive-0.2.5.tar.gz) = eafd0b45c5537c3ba526f79d3e75120036502bebacbb3f3220914067ce39dbf2 SIZE (rust/crates/num-derive-0.2.5.tar.gz) = 13137 +SHA256 (rust/crates/num-integer-0.1.41.tar.gz) = b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09 +SIZE (rust/crates/num-integer-0.1.41.tar.gz) = 19399 SHA256 (rust/crates/num-traits-0.2.8.tar.gz) = 6ba9a427cfca2be13aa6f6403b0b7e7368fe982bfa16fccc450ce74c46cd9b32 SIZE (rust/crates/num-traits-0.2.8.tar.gz) = 39965 -SHA256 (rust/crates/num_cpus-1.10.0.tar.gz) = 1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba -SIZE (rust/crates/num_cpus-1.10.0.tar.gz) = 10669 +SHA256 (rust/crates/num_cpus-1.10.1.tar.gz) = bcef43580c035376c0705c42792c294b66974abbfd2789b511784023f71f3273 +SIZE (rust/crates/num_cpus-1.10.1.tar.gz) = 11151 SHA256 (rust/crates/numtoa-0.1.0.tar.gz) = b8f8bdf33df195859076e54ab11ee78a1b208382d3a26ec40d142ffc1ecc49ef SIZE (rust/crates/numtoa-0.1.0.tar.gz) = 8999 SHA256 (rust/crates/output_vt100-0.1.2.tar.gz) = 53cdc5b785b7a58c5aad8216b3dfa114df64b0b06ae6e1501cef91df2fbdf8f9 @@ -153,20 +161,20 @@ SHA256 (rust/crates/rand_xorshift-0.1.1.tar.gz) = cbf7 SIZE (rust/crates/rand_xorshift-0.1.1.tar.gz) = 8997 SHA256 (rust/crates/rand_xoshiro-0.1.0.tar.gz) = 03b418169fb9c46533f326efd6eed2576699c44ca92d3052a066214a8d828929 SIZE (rust/crates/rand_xoshiro-0.1.0.tar.gz) = 14829 -SHA256 (rust/crates/rayon-1.0.3.tar.gz) = 373814f27745b2686b350dd261bfd24576a6fb0e2c5919b3a2b6005f820b0473 -SIZE (rust/crates/rayon-1.0.3.tar.gz) = 134391 -SHA256 (rust/crates/rayon-core-1.4.1.tar.gz) = b055d1e92aba6877574d8fe604a63c8b5df60f60e5982bf7ccbb1338ea527356 -SIZE (rust/crates/rayon-core-1.4.1.tar.gz) = 53760 +SHA256 (rust/crates/rayon-1.1.0.tar.gz) = a4b0186e22767d5b9738a05eab7c6ac90b15db17e5b5f9bd87976dd7d89a10a4 +SIZE (rust/crates/rayon-1.1.0.tar.gz) = 138915 +SHA256 (rust/crates/rayon-core-1.5.0.tar.gz) = ebbe0df8435ac0c397d467b6cad6d25543d06e8a019ef3f6af3c384597515bd2 +SIZE (rust/crates/rayon-core-1.5.0.tar.gz) = 61857 SHA256 (rust/crates/rdrand-0.4.0.tar.gz) = 678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2 SIZE (rust/crates/rdrand-0.4.0.tar.gz) = 6456 SHA256 (rust/crates/redox_syscall-0.1.54.tar.gz) = 12229c14a0f65c4f1cb046a3b52047cdd9da1f4b30f8a39c5063c8bae515e252 SIZE (rust/crates/redox_syscall-0.1.54.tar.gz) = 15668 SHA256 (rust/crates/redox_termios-0.1.1.tar.gz) = 7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76 SIZE (rust/crates/redox_termios-0.1.1.tar.gz) = 3227 -SHA256 (rust/crates/regex-1.1.6.tar.gz) = 8f0a0bcab2fd7d1d7c54fa9eae6f43eddeb9ce2e7352f8518a814a4f65d60c58 -SIZE (rust/crates/regex-1.1.6.tar.gz) = 243429 -SHA256 (rust/crates/regex-syntax-0.6.6.tar.gz) = dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96 -SIZE (rust/crates/regex-syntax-0.6.6.tar.gz) = 273068 +SHA256 (rust/crates/regex-1.1.7.tar.gz) = 0b2f0808e7d7e4fb1cb07feb6ff2f4bc827938f24f8c2e6a3beb7370af544bdd +SIZE (rust/crates/regex-1.1.7.tar.gz) = 243534 +SHA256 (rust/crates/regex-syntax-0.6.7.tar.gz) = 9d76410686f9e3a17f06128962e0ecc5755870bb890c34820c7af7f1db2e1d48 +SIZE (rust/crates/regex-syntax-0.6.7.tar.gz) = 273104 SHA256 (rust/crates/rustc-demangle-0.1.15.tar.gz) = a7f4dccf6f4891ebcc0c39f9b6eb1a83b9bf5d747cb439ec6fba4f3b977038af SIZE (rust/crates/rustc-demangle-0.1.15.tar.gz) = 18640 SHA256 (rust/crates/ryu-0.2.8.tar.gz) = b96a9549dc8d48f2c283938303c4b5a77aa29bfbc5b54b084fb1630408899a8f @@ -177,6 +185,10 @@ SHA256 (rust/crates/scan_fmt-0.2.2.tar.gz) = 9abed583e SIZE (rust/crates/scan_fmt-0.2.2.tar.gz) = 8371 SHA256 (rust/crates/scopeguard-0.3.3.tar.gz) = 94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27 SIZE (rust/crates/scopeguard-0.3.3.tar.gz) = 9605 +SHA256 (rust/crates/semver-0.9.0.tar.gz) = 1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403 +SIZE (rust/crates/semver-0.9.0.tar.gz) = 17344 +SHA256 (rust/crates/semver-parser-0.7.0.tar.gz) = 388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3 +SIZE (rust/crates/semver-parser-0.7.0.tar.gz) = 10268 SHA256 (rust/crates/serde-1.0.92.tar.gz) = 32746bf0f26eab52f06af0d0aa1984f641341d06d8d673c693871da2d188c9be SIZE (rust/crates/serde-1.0.92.tar.gz) = 71689 SHA256 (rust/crates/serde_derive-1.0.92.tar.gz) = 46a3223d0c9ba936b61c0d2e3e559e3217dbfb8d65d06d26e8b3c25de38bae3e @@ -191,16 +203,20 @@ SHA256 (rust/crates/signal-hook-registry-1.0.1.tar.gz) SIZE (rust/crates/signal-hook-registry-1.0.1.tar.gz) = 12520 SHA256 (rust/crates/strsim-0.8.0.tar.gz) = 8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a SIZE (rust/crates/strsim-0.8.0.tar.gz) = 9309 -SHA256 (rust/crates/syn-0.15.34.tar.gz) = a1393e4a97a19c01e900df2aec855a29f71cf02c402e2f443b8d2747c25c5dbe -SIZE (rust/crates/syn-0.15.34.tar.gz) = 149802 +SHA256 (rust/crates/syn-0.15.36.tar.gz) = 8b4f551a91e2e3848aeef8751d0d4eec9489b6474c720fd4c55958d8d31a430c +SIZE (rust/crates/syn-0.15.36.tar.gz) = 150279 +SHA256 (rust/crates/synstructure-0.10.2.tar.gz) = 02353edf96d6e4dc81aea2d8490a7e9db177bf8acb0e951c24940bf866cb313f +SIZE (rust/crates/synstructure-0.10.2.tar.gz) = 17988 SHA256 (rust/crates/termcolor-1.0.5.tar.gz) = 96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e SIZE (rust/crates/termcolor-1.0.5.tar.gz) = 14526 -SHA256 (rust/crates/termion-1.5.2.tar.gz) = dde0593aeb8d47accea5392b39350015b5eccb12c0d98044d856983d89548dea -SIZE (rust/crates/termion-1.5.2.tar.gz) = 22076 +SHA256 (rust/crates/termion-1.5.3.tar.gz) = 6a8fb22f7cde82c8220e5aeacb3258ed7ce996142c77cba193f203515e26c330 +SIZE (rust/crates/termion-1.5.3.tar.gz) = 22080 SHA256 (rust/crates/textwrap-0.11.0.tar.gz) = d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060 SIZE (rust/crates/textwrap-0.11.0.tar.gz) = 17322 SHA256 (rust/crates/thread_local-0.3.6.tar.gz) = c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b SIZE (rust/crates/thread_local-0.3.6.tar.gz) = 12388 +SHA256 (rust/crates/time-0.1.42.tar.gz) = db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f +SIZE (rust/crates/time-0.1.42.tar.gz) = 30005 SHA256 (rust/crates/tinytemplate-1.0.2.tar.gz) = 4574b75faccaacddb9b284faecdf0b544b80b6b294f3d062d325c5726a209c20 SIZE (rust/crates/tinytemplate-1.0.2.tar.gz) = 24614 SHA256 (rust/crates/toml-0.2.1.tar.gz) = 736b60249cb25337bc196faa43ee12c705e426f3d55c214d73a4e7be06f92cb4 @@ -211,14 +227,16 @@ SHA256 (rust/crates/unicode-width-0.1.5.tar.gz) = 8823 SIZE (rust/crates/unicode-width-0.1.5.tar.gz) = 15761 SHA256 (rust/crates/unicode-xid-0.1.0.tar.gz) = fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc SIZE (rust/crates/unicode-xid-0.1.0.tar.gz) = 16000 -SHA256 (rust/crates/utf8-ranges-1.0.2.tar.gz) = 796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737 -SIZE (rust/crates/utf8-ranges-1.0.2.tar.gz) = 8510 +SHA256 (rust/crates/utf8-ranges-1.0.3.tar.gz) = 9d50aa7650df78abf942826607c62468ce18d9019673d4a2ebe1865dbb96ffde +SIZE (rust/crates/utf8-ranges-1.0.3.tar.gz) = 8496 SHA256 (rust/crates/vec_map-0.8.1.tar.gz) = 05c78687fb1a80548ae3250346c3db86a80a7cdd77bda190189f2d0a0987c81a SIZE (rust/crates/vec_map-0.8.1.tar.gz) = 14959 +SHA256 (rust/crates/vergen-3.0.4.tar.gz) = 6aba5e34f93dc7051dfad05b98a18e9156f27e7b431fe1d2398cb6061c0a1dba +SIZE (rust/crates/vergen-3.0.4.tar.gz) = 15089 SHA256 (rust/crates/version_check-0.1.5.tar.gz) = 914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd SIZE (rust/crates/version_check-0.1.5.tar.gz) = 8173 -SHA256 (rust/crates/walkdir-2.2.7.tar.gz) = 9d9d7ed3431229a144296213105a390676cc49c9b6a72bd19f3176c98e129fa1 -SIZE (rust/crates/walkdir-2.2.7.tar.gz) = 23507 +SHA256 (rust/crates/walkdir-2.2.8.tar.gz) = c7904a7e2bb3cdf0cf5e783f44204a85a37a93151738fa349f06680f59a98b45 +SIZE (rust/crates/walkdir-2.2.8.tar.gz) = 23476 SHA256 (rust/crates/which-2.0.1.tar.gz) = b57acb10231b9493c8472b20cb57317d0679a49e0bdbee44b3b803a6473af164 SIZE (rust/crates/which-2.0.1.tar.gz) = 6953 SHA256 (rust/crates/winapi-0.3.7.tar.gz) = f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770 @@ -233,5 +251,5 @@ SHA256 (rust/crates/wincolor-1.0.1.tar.gz) = 561ed901a SIZE (rust/crates/wincolor-1.0.1.tar.gz) = 4737 SHA256 (rust/crates/y4m-0.3.3.tar.gz) = b14191e41f540837886792294aa9269c2d63eb8733ed0499590935fef7bbb94f SIZE (rust/crates/y4m-0.3.3.tar.gz) = 11108 -SHA256 (xiph-rav1e-s20190608-c68d68c6_GH0.tar.gz) = bdb2fd0ec81cea6061a3e4bd844655666e6dc0cef86f901f16f3bd366d23be82 -SIZE (xiph-rav1e-s20190608-c68d68c6_GH0.tar.gz) = 406165 +SHA256 (xiph-rav1e-s20190615-6d330d26_GH0.tar.gz) = 6fbcc8b74e26b50af40f782dd6c30d76c48f38554d6aba0b9f248700f9687c17 +SIZE (xiph-rav1e-s20190615-6d330d26_GH0.tar.gz) = 411886 From owner-svn-ports-all@freebsd.org Tue Jun 18 00:51:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 479BE15C95AF; Tue, 18 Jun 2019 00:51:51 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D55E489E95; Tue, 18 Jun 2019 00:51:50 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F3CDC5BD4; Tue, 18 Jun 2019 00:51:49 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I0pntN050345; Tue, 18 Jun 2019 00:51:49 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I0pnOa050344; Tue, 18 Jun 2019 00:51:49 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906180051.x5I0pnOa050344@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 00:51:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504453 - head/multimedia/aom X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/aom X-SVN-Commit-Revision: 504453 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D55E489E95 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 00:51:51 -0000 Author: jbeich Date: Tue Jun 18 00:51:49 2019 New Revision: 504453 URL: https://svnweb.freebsd.org/changeset/ports/504453 Log: multimedia/aom: update to 1.0.0.1940 Changes: https://aomedia.googlesource.com/aom/+log/0674efe20..3cf25c540 Modified: head/multimedia/aom/Makefile (contents, props changed) head/multimedia/aom/distinfo (contents, props changed) Modified: head/multimedia/aom/Makefile ============================================================================== --- head/multimedia/aom/Makefile Tue Jun 18 00:51:42 2019 (r504452) +++ head/multimedia/aom/Makefile Tue Jun 18 00:51:49 2019 (r504453) @@ -2,8 +2,8 @@ PORTNAME= aom DISTVERSIONPREFIX= v -DISTVERSION= 1.0.0-1935 -DISTVERSIONSUFFIX= -g0674efe20 +DISTVERSION= 1.0.0-1940 +DISTVERSIONSUFFIX= -g3cf25c540 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org Modified: head/multimedia/aom/distinfo ============================================================================== --- head/multimedia/aom/distinfo Tue Jun 18 00:51:42 2019 (r504452) +++ head/multimedia/aom/distinfo Tue Jun 18 00:51:49 2019 (r504453) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560558587 -SHA256 (jbeich-aom-v1.0.0-1935-g0674efe20_GH0.tar.gz) = 67c236edbfab2b62c8f5558a099cdb926e31f16e2c7fb1ab1b9fc2e1beb7c7d0 -SIZE (jbeich-aom-v1.0.0-1935-g0674efe20_GH0.tar.gz) = 3320984 +TIMESTAMP = 1560800832 +SHA256 (jbeich-aom-v1.0.0-1940-g3cf25c540_GH0.tar.gz) = 59fa5322abc50aee0677effaeb3472777252eec90c28f394482c00e70e39776d +SIZE (jbeich-aom-v1.0.0-1940-g3cf25c540_GH0.tar.gz) = 3321280 From owner-svn-ports-all@freebsd.org Tue Jun 18 00:52:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2646315C95E7; Tue, 18 Jun 2019 00:52:04 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B007289FFD; Tue, 18 Jun 2019 00:52:03 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 565E05BE5; Tue, 18 Jun 2019 00:52:02 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I0q2YN051201; Tue, 18 Jun 2019 00:52:02 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I0q1c7051199; Tue, 18 Jun 2019 00:52:01 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906180052.x5I0q1c7051199@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 00:52:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504454 - head/lang/rust-nightly X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/lang/rust-nightly X-SVN-Commit-Revision: 504454 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B007289FFD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 00:52:04 -0000 Author: jbeich Date: Tue Jun 18 00:52:01 2019 New Revision: 504454 URL: https://svnweb.freebsd.org/changeset/ports/504454 Log: lang/rust-nightly: update to 1.36.0.20190618 Changes: https://github.com/rust-lang/rust/compare/7840a0b753a0...b25ee644971a Modified: head/lang/rust-nightly/Makefile (contents, props changed) head/lang/rust-nightly/distinfo (contents, props changed) Modified: head/lang/rust-nightly/Makefile ============================================================================== --- head/lang/rust-nightly/Makefile Tue Jun 18 00:51:49 2019 (r504453) +++ head/lang/rust-nightly/Makefile Tue Jun 18 00:52:01 2019 (r504454) @@ -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-06-01 +NIGHTLY_DATE= 2019-06-18 NIGHTLY_SUBDIR= ${NIGHTLY_DATE}/ # See WRKSRC/src/stage0.txt for this date @@ -24,7 +24,6 @@ CARGO_BOOTSTRAP_VERSION= beta CARGO_VENDOR_DIR= ${WRKSRC}/vendor -BROKEN= https://github.com/rust-lang/rust/issues/61435 # Other bootstraps aren't provided by upstream yet ONLY_FOR_ARCHS= amd64 i386 Modified: head/lang/rust-nightly/distinfo ============================================================================== --- head/lang/rust-nightly/distinfo Tue Jun 18 00:51:49 2019 (r504453) +++ head/lang/rust-nightly/distinfo Tue Jun 18 00:52:01 2019 (r504454) @@ -1,6 +1,6 @@ -TIMESTAMP = 1559328173 -SHA256 (rust/2019-06-01/rustc-nightly-src.tar.xz) = 0a9044a7692f692475ff3ade64b5556dbb64e4be0f7c942fc0a7c149cbfad684 -SIZE (rust/2019-06-01/rustc-nightly-src.tar.xz) = 98423732 +TIMESTAMP = 1560800860 +SHA256 (rust/2019-06-18/rustc-nightly-src.tar.xz) = 1e1413e0302ffb321e75cb2170b08d379b10bd5d8914bf46acb585706d26c363 +SIZE (rust/2019-06-18/rustc-nightly-src.tar.xz) = 98598616 SHA256 (rust/2019-05-23/rustc-beta-x86_64-unknown-freebsd.tar.gz) = 5155fd888a153b77de49aa7bb61ee6cb142d695d259f552390f0aab2b4e753f9 SIZE (rust/2019-05-23/rustc-beta-x86_64-unknown-freebsd.tar.gz) = 74106383 SHA256 (rust/2019-05-23/rust-std-beta-x86_64-unknown-freebsd.tar.gz) = 84af42671eed94e1cc2f0f504e52303cf1dc57f9e8c6a2f4768f5c99c3d73b1d From owner-svn-ports-all@freebsd.org Tue Jun 18 00:55:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF01A15C9684; Tue, 18 Jun 2019 00:55:51 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 62E218A2BE; Tue, 18 Jun 2019 00:55:51 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4870E5C0E; Tue, 18 Jun 2019 00:55:51 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I0tprT054550; Tue, 18 Jun 2019 00:55:51 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I0todE054548; Tue, 18 Jun 2019 00:55:50 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906180055.x5I0todE054548@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 00:55:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504455 - head/games/openbor X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/games/openbor X-SVN-Commit-Revision: 504455 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 62E218A2BE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 00:55:51 -0000 Author: jbeich Date: Tue Jun 18 00:55:50 2019 New Revision: 504455 URL: https://svnweb.freebsd.org/changeset/ports/504455 Log: games/openbor: update to 7056 Changes: https://github.com/DCurrent/openbor/compare/68a1c977...6de201a4 Modified: head/games/openbor/Makefile (contents, props changed) head/games/openbor/distinfo (contents, props changed) Modified: head/games/openbor/Makefile ============================================================================== --- head/games/openbor/Makefile Tue Jun 18 00:52:01 2019 (r504454) +++ head/games/openbor/Makefile Tue Jun 18 00:55:50 2019 (r504455) @@ -2,7 +2,7 @@ PORTNAME= openbor # Hint: svn revision is git rev-list --count ${GH_TAGNAME} -PORTVERSION?= 7045 +PORTVERSION?= 7056 .ifndef PKGNAMESUFFIX PORTREVISION= 0 .endif @@ -31,7 +31,7 @@ PORTSCOUT= ignore:1 USE_GITHUB= yes GH_ACCOUNT= DCurrent -GH_TAGNAME?= 68a1c977 +GH_TAGNAME?= 6de201a4 USES+= gmake pkgconfig .if ${PORTVERSION} < 4433 Modified: head/games/openbor/distinfo ============================================================================== --- head/games/openbor/distinfo Tue Jun 18 00:52:01 2019 (r504454) +++ head/games/openbor/distinfo Tue Jun 18 00:55:50 2019 (r504455) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560545467 -SHA256 (DCurrent-openbor-7045-68a1c977_GH0.tar.gz) = edfef9bcfee7586ce29b4d0ba8a40744b878a5efca00680045b0284ea687338b -SIZE (DCurrent-openbor-7045-68a1c977_GH0.tar.gz) = 16334468 +TIMESTAMP = 1560734613 +SHA256 (DCurrent-openbor-7056-6de201a4_GH0.tar.gz) = efe4980e1b32b43c0a2f6823094eb6af64c6ebaf4c6c321b6eb6fd6bd7bc9b49 +SIZE (DCurrent-openbor-7056-6de201a4_GH0.tar.gz) = 28482814 From owner-svn-ports-all@freebsd.org Tue Jun 18 00:56:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 43C1715C96C7; Tue, 18 Jun 2019 00:56:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D65638A398; Tue, 18 Jun 2019 00:56:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AFA665C0F; Tue, 18 Jun 2019 00:56:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I0uS0o054704; Tue, 18 Jun 2019 00:56:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I0uSkH054702; Tue, 18 Jun 2019 00:56:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906180056.x5I0uSkH054702@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 00:56:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504456 - branches/2019Q2/games/openbor X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2019Q2/games/openbor X-SVN-Commit-Revision: 504456 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D65638A398 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 00:56:29 -0000 Author: jbeich Date: Tue Jun 18 00:56:28 2019 New Revision: 504456 URL: https://svnweb.freebsd.org/changeset/ports/504456 Log: MFH: r504455 games/openbor: update to 7056 Changes: https://github.com/DCurrent/openbor/compare/68a1c977...6de201a4 Approved by: ports-secteam (feld, implicit for snapshots) Modified: branches/2019Q2/games/openbor/Makefile branches/2019Q2/games/openbor/distinfo Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/games/openbor/Makefile ============================================================================== --- branches/2019Q2/games/openbor/Makefile Tue Jun 18 00:55:50 2019 (r504455) +++ branches/2019Q2/games/openbor/Makefile Tue Jun 18 00:56:28 2019 (r504456) @@ -2,7 +2,7 @@ PORTNAME= openbor # Hint: svn revision is git rev-list --count ${GH_TAGNAME} -PORTVERSION?= 7045 +PORTVERSION?= 7056 .ifndef PKGNAMESUFFIX PORTREVISION= 0 .endif @@ -31,7 +31,7 @@ PORTSCOUT= ignore:1 USE_GITHUB= yes GH_ACCOUNT= DCurrent -GH_TAGNAME?= 68a1c977 +GH_TAGNAME?= 6de201a4 USES+= gmake pkgconfig .if ${PORTVERSION} < 4433 Modified: branches/2019Q2/games/openbor/distinfo ============================================================================== --- branches/2019Q2/games/openbor/distinfo Tue Jun 18 00:55:50 2019 (r504455) +++ branches/2019Q2/games/openbor/distinfo Tue Jun 18 00:56:28 2019 (r504456) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560545467 -SHA256 (DCurrent-openbor-7045-68a1c977_GH0.tar.gz) = edfef9bcfee7586ce29b4d0ba8a40744b878a5efca00680045b0284ea687338b -SIZE (DCurrent-openbor-7045-68a1c977_GH0.tar.gz) = 16334468 +TIMESTAMP = 1560734613 +SHA256 (DCurrent-openbor-7056-6de201a4_GH0.tar.gz) = efe4980e1b32b43c0a2f6823094eb6af64c6ebaf4c6c321b6eb6fd6bd7bc9b49 +SIZE (DCurrent-openbor-7056-6de201a4_GH0.tar.gz) = 28482814 From owner-svn-ports-all@freebsd.org Tue Jun 18 01:02:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6E97A15C9892; Tue, 18 Jun 2019 01:02:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 10ECB8A737; Tue, 18 Jun 2019 01:02:54 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E16D75DB1; Tue, 18 Jun 2019 01:02:53 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I12ro1060090; Tue, 18 Jun 2019 01:02:53 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I12rtm060088; Tue, 18 Jun 2019 01:02:53 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906180102.x5I12rtm060088@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 18 Jun 2019 01:02:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504457 - head/devel/py-envisage X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/devel/py-envisage X-SVN-Commit-Revision: 504457 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 10ECB8A737 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 01:02:54 -0000 Author: swills Date: Tue Jun 18 01:02:53 2019 New Revision: 504457 URL: https://svnweb.freebsd.org/changeset/ports/504457 Log: devel/py-envisage: Update to 4.7.2 PR: 238439 Submitted by: vladimir.chukharev@gmail.com (maintainer) Modified: head/devel/py-envisage/Makefile (contents, props changed) head/devel/py-envisage/distinfo (contents, props changed) Modified: head/devel/py-envisage/Makefile ============================================================================== --- head/devel/py-envisage/Makefile Tue Jun 18 00:56:28 2019 (r504456) +++ head/devel/py-envisage/Makefile Tue Jun 18 01:02:53 2019 (r504457) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= envisage -PORTVERSION= 4.7.1 +PORTVERSION= 4.7.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,8 +16,8 @@ LICENSE_COMB= multi RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}traits>=4.5.0:devel/py-traits@${PY_FLAVOR} -USES= python:-2.7 -USE_PYTHON= autoplist distutils +USES= python +USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes Modified: head/devel/py-envisage/distinfo ============================================================================== --- head/devel/py-envisage/distinfo Tue Jun 18 00:56:28 2019 (r504456) +++ head/devel/py-envisage/distinfo Tue Jun 18 01:02:53 2019 (r504457) @@ -1,3 +1,3 @@ -TIMESTAMP = 1549658640 -SHA256 (envisage-4.7.1.tar.gz) = 9b55d7be4b06e51c86992a963c719d6178c93323d753abaccd8242196b257abf -SIZE (envisage-4.7.1.tar.gz) = 252246 +TIMESTAMP = 1557557585 +SHA256 (envisage-4.7.2.tar.gz) = 89794e986f21c8658a6f95de8a59c8a848f6dd3c6d3408649427f5c401b76549 +SIZE (envisage-4.7.2.tar.gz) = 256249 From owner-svn-ports-all@freebsd.org Tue Jun 18 01:05:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D862715C98F4; Tue, 18 Jun 2019 01:05:49 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 77B118A89C; Tue, 18 Jun 2019 01:05:49 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4E4CE5DBB; Tue, 18 Jun 2019 01:05:49 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I15nLp060354; Tue, 18 Jun 2019 01:05:49 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I15mag060352; Tue, 18 Jun 2019 01:05:48 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906180105.x5I15mag060352@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 18 Jun 2019 01:05:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504458 - head/math/libnormaliz X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/math/libnormaliz X-SVN-Commit-Revision: 504458 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 77B118A89C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 01:05:50 -0000 Author: swills Date: Tue Jun 18 01:05:48 2019 New Revision: 504458 URL: https://svnweb.freebsd.org/changeset/ports/504458 Log: math/libnormaliz: Update to 3.7.3 PR: 238450 Submitted by: Lorenzo Salvadore (maintainer) Modified: head/math/libnormaliz/Makefile (contents, props changed) head/math/libnormaliz/distinfo (contents, props changed) Modified: head/math/libnormaliz/Makefile ============================================================================== --- head/math/libnormaliz/Makefile Tue Jun 18 01:02:53 2019 (r504457) +++ head/math/libnormaliz/Makefile Tue Jun 18 01:05:48 2019 (r504458) @@ -2,7 +2,7 @@ PORTNAME= libnormaliz DISTVERSIONPREFIX= v -DISTVERSION= 3.7.2 +DISTVERSION= 3.7.3 CATEGORIES= math MAINTAINER= phascolarctos@protonmail.ch @@ -23,7 +23,8 @@ GH_PROJECT= Normaliz BUILD_WRKSRC= ${WRKSRC}/source/libnormaliz INSTALL_WRKSRC= ${WRKSRC}/source/libnormaliz -CXXFLAGS+= -I ${LOCALBASE}/include +CXXFLAGS+= -I ${LOCALBASE}/include \ + -I ${WRKSRC}/source MAKEFILE= Makefile.classic GNU_CONFIGURE= yes LDFLAGS+= -L${LOCALBASE}/lib Modified: head/math/libnormaliz/distinfo ============================================================================== --- head/math/libnormaliz/distinfo Tue Jun 18 01:02:53 2019 (r504457) +++ head/math/libnormaliz/distinfo Tue Jun 18 01:05:48 2019 (r504458) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557398323 -SHA256 (Normaliz-Normaliz-v3.7.2_GH0.tar.gz) = 90137933ea7f90209ba3065c9055e564e30bf42cf75d0609fc913c65e0a6de6a -SIZE (Normaliz-Normaliz-v3.7.2_GH0.tar.gz) = 4515223 +TIMESTAMP = 1560087813 +SHA256 (Normaliz-Normaliz-v3.7.3_GH0.tar.gz) = 23e674b69b034661bbfe7cd589e803ffe7e71c8b53b2178712d759065015d7a4 +SIZE (Normaliz-Normaliz-v3.7.3_GH0.tar.gz) = 9509689 From owner-svn-ports-all@freebsd.org Tue Jun 18 01:08:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5B43A15C9968; Tue, 18 Jun 2019 01:08:51 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F02DE8A9F8; Tue, 18 Jun 2019 01:08:50 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CB2415DBE; Tue, 18 Jun 2019 01:08:50 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I18o98060623; Tue, 18 Jun 2019 01:08:50 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I18oCr060620; Tue, 18 Jun 2019 01:08:50 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906180108.x5I18oCr060620@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 18 Jun 2019 01:08:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504459 - head/www/otrs X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/www/otrs X-SVN-Commit-Revision: 504459 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F02DE8A9F8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 01:08:51 -0000 Author: swills Date: Tue Jun 18 01:08:49 2019 New Revision: 504459 URL: https://svnweb.freebsd.org/changeset/ports/504459 Log: www/otrs: update to 6.0.19 PR: 238480 Submitted by: m.tsatsenko@gmail.com (maintainer) Modified: head/www/otrs/Makefile (contents, props changed) head/www/otrs/distinfo (contents, props changed) head/www/otrs/pkg-plist (contents, props changed) Modified: head/www/otrs/Makefile ============================================================================== --- head/www/otrs/Makefile Tue Jun 18 01:05:48 2019 (r504458) +++ head/www/otrs/Makefile Tue Jun 18 01:08:49 2019 (r504459) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= otrs -PORTVERSION= 6.0.10 -PORTREVISION= 1 +PORTVERSION= 6.0.19 CATEGORIES= www MAINTAINER= m.tsatsenko@gmail.com @@ -54,7 +53,7 @@ USES= cpe shebangfix perl5 tar:bzip2 USE_GITHUB= yes GH_ACCOUNT= OTRS -GH_TAGNAME= 51cbe50 +GH_TAGNAME= b7b2693 SHEBANG_FILES= bin/cgi-bin/*.pl bin/cgi-bin/app.psgi bin/fcgi-bin/*.pl bin/*.pl \ scripts/tools/*.pl scripts/*.pl Modified: head/www/otrs/distinfo ============================================================================== --- head/www/otrs/distinfo Tue Jun 18 01:05:48 2019 (r504458) +++ head/www/otrs/distinfo Tue Jun 18 01:08:49 2019 (r504459) @@ -1,3 +1,3 @@ -TIMESTAMP = 1535683312 -SHA256 (OTRS-otrs-6.0.10-51cbe50_GH0.tar.gz) = 1545455267e45ee3370c02645cac52be75b10bf5f852195808d04f99e8e25205 -SIZE (OTRS-otrs-6.0.10-51cbe50_GH0.tar.gz) = 39579491 +TIMESTAMP = 1558571903 +SHA256 (OTRS-otrs-6.0.19-b7b2693_GH0.tar.gz) = e3e9076b283f6b19e7b517e6fb08aa78c7379f7548152a3a4bcc8faf71481510 +SIZE (OTRS-otrs-6.0.19-b7b2693_GH0.tar.gz) = 40909105 Modified: head/www/otrs/pkg-plist ============================================================================== --- head/www/otrs/pkg-plist Tue Jun 18 01:05:48 2019 (r504458) +++ head/www/otrs/pkg-plist Tue Jun 18 01:08:49 2019 (r504459) @@ -86,14 +86,17 @@ otrs/Kernel/Language/hu.pm otrs/Kernel/Language/id.pm otrs/Kernel/Language/it.pm otrs/Kernel/Language/ja.pm +otrs/Kernel/Language/ko.pm otrs/Kernel/Language/lt.pm otrs/Kernel/Language/lv.pm +otrs/Kernel/Language/mk.pm otrs/Kernel/Language/ms.pm otrs/Kernel/Language/nb_NO.pm otrs/Kernel/Language/nl.pm otrs/Kernel/Language/pl.pm otrs/Kernel/Language/pt.pm otrs/Kernel/Language/pt_BR.pm +otrs/Kernel/Language/ro.pm otrs/Kernel/Language/ru.pm otrs/Kernel/Language/sk_SK.pm otrs/Kernel/Language/sl.pm @@ -355,6 +358,7 @@ otrs/Kernel/Output/HTML/Notification/CustomerUserTimeZ otrs/Kernel/Output/HTML/Notification/DaemonCheck.pm otrs/Kernel/Output/HTML/Notification/Generic.pm otrs/Kernel/Output/HTML/Notification/OutofOfficeCheck.pm +otrs/Kernel/Output/HTML/Notification/PackageManagerCheckNotVerifiedPackages.pm otrs/Kernel/Output/HTML/Notification/SystemConfigurationInvalidCheck.pm otrs/Kernel/Output/HTML/Notification/SystemConfigurationIsDirtyCheck.pm otrs/Kernel/Output/HTML/Notification/SystemConfigurationOutOfSyncCheck.pm @@ -787,6 +791,8 @@ otrs/Kernel/System/Console/BaseCommand.pm otrs/Kernel/System/Console/Command/Admin/Article/StorageSwitch.pm otrs/Kernel/System/Console/Command/Admin/CommunicationChannel/Drop.pm otrs/Kernel/System/Console/Command/Admin/CommunicationChannel/Sync.pm +otrs/Kernel/System/Console/Command/Admin/Config/FixInvalid.pm +otrs/Kernel/System/Console/Command/Admin/Config/ListInvalid.pm otrs/Kernel/System/Console/Command/Admin/Config/Read.pm otrs/Kernel/System/Console/Command/Admin/Config/UnlockAll.pm otrs/Kernel/System/Console/Command/Admin/Config/Update.pm @@ -823,6 +829,7 @@ otrs/Kernel/System/Console/Command/Admin/WebService/De otrs/Kernel/System/Console/Command/Admin/WebService/Dump.pm otrs/Kernel/System/Console/Command/Admin/WebService/List.pm otrs/Kernel/System/Console/Command/Admin/WebService/Update.pm +otrs/Kernel/System/Console/Command/Dev/Code/CPANUpdate.pm otrs/Kernel/System/Console/Command/Dev/Code/ContributorsListUpdate.pm otrs/Kernel/System/Console/Command/Dev/Code/Generate/ConsoleCommand.pm otrs/Kernel/System/Console/Command/Dev/Code/Generate/ConsoleCommand/ConsoleCommand.pm.skel @@ -1135,7 +1142,6 @@ otrs/Kernel/System/SupportDataCollector/Plugin/OTRS/Da otrs/Kernel/System/SupportDataCollector/Plugin/OTRS/DefaultSOAPUser.pm otrs/Kernel/System/SupportDataCollector/Plugin/OTRS/DefaultUser.pm otrs/Kernel/System/SupportDataCollector/Plugin/OTRS/EmailQueue.pm -otrs/Kernel/System/SupportDataCollector/Plugin/OTRS/ErrorLog.pm otrs/Kernel/System/SupportDataCollector/Plugin/OTRS/FQDN.pm otrs/Kernel/System/SupportDataCollector/Plugin/OTRS/FileSystemWritable.pm otrs/Kernel/System/SupportDataCollector/Plugin/OTRS/LegacyConfigBackups.pm @@ -1217,7 +1223,6 @@ otrs/Kernel/System/Ticket/CustomerPermission/CustomerI otrs/Kernel/System/Ticket/CustomerPermission/CustomerUserIDCheck.pm otrs/Kernel/System/Ticket/CustomerPermission/GroupCheck.pm otrs/Kernel/System/Ticket/Event/ArchiveRestore.pm -otrs/Kernel/System/Ticket/Event/ArticleSearchIndex.pm otrs/Kernel/System/Ticket/Event/DynamicFieldFromCustomerUser.pm otrs/Kernel/System/Ticket/Event/ForceOwnerReset.pm otrs/Kernel/System/Ticket/Event/ForceState.pm @@ -1301,6 +1306,7 @@ otrs/bin/otrs.PostMaster.pl otrs/bin/otrs.SetPermissions.pl otrs/scripts/DBUpdate-to-6.pl otrs/scripts/DBUpdateTo6.pm +otrs/scripts/DBUpdateTo6/ACLDeploy.pm otrs/scripts/DBUpdateTo6/AddAppointmentCalendarNotification.pm otrs/scripts/DBUpdateTo6/Base.pm otrs/scripts/DBUpdateTo6/CacheCleanup.pm @@ -1314,9 +1320,10 @@ otrs/scripts/DBUpdateTo6/DatabaseVersionCheck.pm otrs/scripts/DBUpdateTo6/DropObjectLockState.pm otrs/scripts/DBUpdateTo6/FrameworkVersionCheck.pm otrs/scripts/DBUpdateTo6/InitializeDefaultCronjobs.pm -otrs/scripts/DBUpdateTo6/MigrateChatData.pm +otrs/scripts/DBUpdateTo6/InvalidSettingsCheck.pm otrs/scripts/DBUpdateTo6/MigrateArticleData.pm otrs/scripts/DBUpdateTo6/MigrateArticleSearchIndex.pm +otrs/scripts/DBUpdateTo6/MigrateChatData.pm otrs/scripts/DBUpdateTo6/MigrateConfigEffectiveValues.pm otrs/scripts/DBUpdateTo6/MigrateGenericAgentJobs.pm otrs/scripts/DBUpdateTo6/MigratePackageRepositoryConfiguration.pm @@ -1327,7 +1334,7 @@ otrs/scripts/DBUpdateTo6/MigrateTicketAppointments.pm otrs/scripts/DBUpdateTo6/MigrateTicketFrontendCustomerInfoZoom.pm otrs/scripts/DBUpdateTo6/MigrateTicketMergedHistory.pm otrs/scripts/DBUpdateTo6/MigrateTicketNotifications.pm -otrs/scripts/DBUpdateTo6/TaskConfig/MigrateArticleData.yml.dist +otrs/scripts/DBUpdateTo6/MigrateTicketSearchProfiles.pm otrs/scripts/DBUpdateTo6/MigrateTicketStats.pm otrs/scripts/DBUpdateTo6/MigrateTicketStorageModule.pm otrs/scripts/DBUpdateTo6/MigrateTimeZoneConfiguration.pm @@ -1336,8 +1343,10 @@ otrs/scripts/DBUpdateTo6/MigrateZoomExpandConfig.pm otrs/scripts/DBUpdateTo6/PerlModulesCheck.pm otrs/scripts/DBUpdateTo6/PerlVersionCheck.pm otrs/scripts/DBUpdateTo6/PostArticleTableStructureChanges.pm +otrs/scripts/DBUpdateTo6/ProcessDeploy.pm otrs/scripts/DBUpdateTo6/RebuildConfig.pm -otrs/scripts/DBUpdateTo6/SysConfigCheck.pm +otrs/scripts/DBUpdateTo6/RebuildConfigCleanup.pm +otrs/scripts/DBUpdateTo6/TaskConfig/MigrateArticleData.yml.dist otrs/scripts/DBUpdateTo6/UninstallMergedFeatureAddOns.pm otrs/scripts/DBUpdateTo6/UpdateAppointmentCalendarFutureTasks.pm otrs/scripts/DBUpdateTo6/UpgradeDatabaseStructure.pm @@ -1346,6 +1355,8 @@ otrs/scripts/DBUpdateTo6/UpgradeDatabaseStructure/Arti otrs/scripts/DBUpdateTo6/UpgradeDatabaseStructure/ArticleTableChangesRename.pm otrs/scripts/DBUpdateTo6/UpgradeDatabaseStructure/CommunicationLogs.pm otrs/scripts/DBUpdateTo6/UpgradeDatabaseStructure/DynamicFieldChanges.pm +otrs/scripts/DBUpdateTo6/UpgradeDatabaseStructure/FixUserPreferenceKeys.pm +otrs/scripts/DBUpdateTo6/UpgradeDatabaseStructure/IndexArticleDataMimeTable.pm otrs/scripts/DBUpdateTo6/UpgradeDatabaseStructure/NewArticleSearchIndexTable.pm otrs/scripts/DBUpdateTo6/UpgradeDatabaseStructure/NewChatDataTable.pm otrs/scripts/DBUpdateTo6/UpgradeDatabaseStructure/NewCommunicationChannelTable.pm @@ -1374,6 +1385,7 @@ otrs/scripts/database/otrs-schema.postgresql.sql otrs/scripts/database/otrs-schema.xml otrs/scripts/restore.pl otrs/scripts/rpc-example.pl +otrs/scripts/test/Archive.t otrs/scripts/test/AsynchronousExecutor.t otrs/scripts/test/Auth.t otrs/scripts/test/AuthSession.t @@ -1426,6 +1438,7 @@ otrs/scripts/test/Queue.t otrs/scripts/test/ReferenceData.t otrs/scripts/test/SLA.t otrs/scripts/test/SMIME.t +otrs/scripts/test/SMIMEAutoResponse.t otrs/scripts/test/Salutation.t otrs/scripts/test/SearchProfile.t otrs/scripts/test/Service.t @@ -1505,6 +1518,7 @@ otrs/var/httpd/htdocs/js/Core.Agent.Admin.Group.js otrs/var/httpd/htdocs/js/Core.Agent.Admin.Log.js otrs/var/httpd/htdocs/js/Core.Agent.Admin.MailAccount.js otrs/var/httpd/htdocs/js/Core.Agent.Admin.NotificationEvent.js +otrs/var/httpd/htdocs/js/Core.Agent.Admin.PGP.js otrs/var/httpd/htdocs/js/Core.Agent.Admin.PackageManager.js otrs/var/httpd/htdocs/js/Core.Agent.Admin.PostMasterFilter.js otrs/var/httpd/htdocs/js/Core.Agent.Admin.Priority.js @@ -1553,6 +1567,7 @@ otrs/var/httpd/htdocs/js/Core.Agent.Overview.js otrs/var/httpd/htdocs/js/Core.Agent.Preferences.js otrs/var/httpd/htdocs/js/Core.Agent.Responsive.js otrs/var/httpd/htdocs/js/Core.Agent.Search.js +otrs/var/httpd/htdocs/js/Core.Agent.SharedSecretGenerator.js otrs/var/httpd/htdocs/js/Core.Agent.SortedTree.js otrs/var/httpd/htdocs/js/Core.Agent.Statistics.ParamsWidget.js otrs/var/httpd/htdocs/js/Core.Agent.Statistics.js @@ -2104,6 +2119,7 @@ otrs/var/httpd/htdocs/js/thirdparty/ckeditor-%%VER_CKE otrs/var/httpd/htdocs/js/thirdparty/ckeditor-%%VER_CKEDITOR%%/plugins/codesnippetgeshi/plugin.js otrs/var/httpd/htdocs/js/thirdparty/ckeditor-%%VER_CKEDITOR%%/plugins/colordialog/dialogs/colordialog.css otrs/var/httpd/htdocs/js/thirdparty/ckeditor-%%VER_CKEDITOR%%/plugins/colordialog/dialogs/colordialog.js +otrs/var/httpd/htdocs/js/thirdparty/ckeditor-%%VER_CKEDITOR%%/plugins/contextmenu_linkopen/plugin.js otrs/var/httpd/htdocs/js/thirdparty/ckeditor-%%VER_CKEDITOR%%/plugins/copyformatting/cursors/cursor-disabled.svg otrs/var/httpd/htdocs/js/thirdparty/ckeditor-%%VER_CKEDITOR%%/plugins/copyformatting/cursors/cursor.svg otrs/var/httpd/htdocs/js/thirdparty/ckeditor-%%VER_CKEDITOR%%/plugins/copyformatting/styles/copyformatting.css @@ -2967,7 +2983,7 @@ otrs/var/httpd/htdocs/js/thirdparty/fullcalendar-3.4.0 otrs/var/httpd/htdocs/js/thirdparty/fullcalendar-scheduler-1.6.2/scheduler.min.js otrs/var/httpd/htdocs/js/thirdparty/jquery-3.2.1/jquery.js otrs/var/httpd/htdocs/js/thirdparty/jquery-browser-detection/jquery-browser-detection.js -otrs/var/httpd/htdocs/js/thirdparty/jquery-jstree-3.3.4/jquery.jstree.js +otrs/var/httpd/htdocs/js/thirdparty/jquery-jstree-3.3.7/jquery.jstree.js otrs/var/httpd/htdocs/js/thirdparty/jquery-migrate-3.0.0/jquery-migrate.js otrs/var/httpd/htdocs/js/thirdparty/jquery-pubsub/pubsub.js otrs/var/httpd/htdocs/js/thirdparty/jquery-tablesorter-2.28.14/jquery.tablesorter.js @@ -2985,6 +3001,7 @@ otrs/var/httpd/htdocs/js/thirdparty/nvd3-1.7.1/nvd3.mi otrs/var/httpd/htdocs/js/thirdparty/qunit-2.3.3/qunit.css otrs/var/httpd/htdocs/js/thirdparty/qunit-2.3.3/qunit.js otrs/var/httpd/htdocs/js/thirdparty/spectrum-1.8.0/spectrum.js +otrs/var/httpd/htdocs/robots.txt otrs/var/httpd/htdocs/skins/Agent/default/css/Core.Agent.Admin.ACL.css otrs/var/httpd/htdocs/skins/Agent/default/css/Core.Agent.Admin.CloudServices.css otrs/var/httpd/htdocs/skins/Agent/default/css/Core.Agent.Admin.CommunicationLog.css From owner-svn-ports-all@freebsd.org Tue Jun 18 01:54:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E9D115CACEC; Tue, 18 Jun 2019 01:54:47 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A89358C460; Tue, 18 Jun 2019 01:54:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 816E46623; Tue, 18 Jun 2019 01:54:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I1skbK086510; Tue, 18 Jun 2019 01:54:46 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I1skZt086508; Tue, 18 Jun 2019 01:54:46 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906180154.x5I1skZt086508@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 18 Jun 2019 01:54:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504460 - head/finance/py-ta-lib X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/finance/py-ta-lib X-SVN-Commit-Revision: 504460 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A89358C460 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 01:54:47 -0000 Author: swills Date: Tue Jun 18 01:54:45 2019 New Revision: 504460 URL: https://svnweb.freebsd.org/changeset/ports/504460 Log: finance/py-ta-lib: update to 0.4.17 PR: 238481 Submitted by: m.tsatsenko@gmail.com (maintainer) Modified: head/finance/py-ta-lib/Makefile (contents, props changed) head/finance/py-ta-lib/distinfo (contents, props changed) Modified: head/finance/py-ta-lib/Makefile ============================================================================== --- head/finance/py-ta-lib/Makefile Tue Jun 18 01:08:49 2019 (r504459) +++ head/finance/py-ta-lib/Makefile Tue Jun 18 01:54:45 2019 (r504460) @@ -2,8 +2,7 @@ PORTNAME= ta-lib DISTVERSIONPREFIX= TA_Lib- -DISTVERSION= 0.4.16 -PORTREVISION= 2 +DISTVERSION= 0.4.17 CATEGORIES= finance python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,9 +16,10 @@ BUILD_DEPENDS= ${PYNUMPY} LIB_DEPENDS= libta_lib.so:devel/ta-lib RUN_DEPENDS= ${PYNUMPY} +USES= python + MAKE_ENV= TA_INCLUDE_PATH="${LOCALBASE}/include" -USES= python USE_GITHUB= yes GH_ACCOUNT= mrjbq7 USE_PYTHON= distutils cython autoplist Modified: head/finance/py-ta-lib/distinfo ============================================================================== --- head/finance/py-ta-lib/distinfo Tue Jun 18 01:08:49 2019 (r504459) +++ head/finance/py-ta-lib/distinfo Tue Jun 18 01:54:45 2019 (r504460) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519271769 -SHA256 (mrjbq7-ta-lib-TA_Lib-0.4.16_GH0.tar.gz) = 1aeda4c421214640e9cf115085cb31e84d316f289f8cf5d47410a5cb4406636f -SIZE (mrjbq7-ta-lib-TA_Lib-0.4.16_GH0.tar.gz) = 822860 +TIMESTAMP = 1560237401 +SHA256 (mrjbq7-ta-lib-TA_Lib-0.4.17_GH0.tar.gz) = e0bf90a446068183dc5df8416fdafc8f7aebac8b582623678236342f8e576093 +SIZE (mrjbq7-ta-lib-TA_Lib-0.4.17_GH0.tar.gz) = 823951 From owner-svn-ports-all@freebsd.org Tue Jun 18 02:00:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2FC7315CADFB; Tue, 18 Jun 2019 02:00:15 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C38FB8C615; Tue, 18 Jun 2019 02:00:14 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AC822662A; Tue, 18 Jun 2019 02:00:14 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I20End086944; Tue, 18 Jun 2019 02:00:14 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I20EXW086943; Tue, 18 Jun 2019 02:00:14 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906180200.x5I20EXW086943@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 18 Jun 2019 02:00:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504461 - head/security/py-service_identity X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/security/py-service_identity X-SVN-Commit-Revision: 504461 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C38FB8C615 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 02:00:15 -0000 Author: swills Date: Tue Jun 18 02:00:13 2019 New Revision: 504461 URL: https://svnweb.freebsd.org/changeset/ports/504461 Log: security/py-service_identity: Update to 18.1.0 PR: 238459 Approved by: Axel.Rau@Chaos1.DE (maintainer) Modified: head/security/py-service_identity/Makefile (contents, props changed) head/security/py-service_identity/distinfo (contents, props changed) Modified: head/security/py-service_identity/Makefile ============================================================================== --- head/security/py-service_identity/Makefile Tue Jun 18 01:54:45 2019 (r504460) +++ head/security/py-service_identity/Makefile Tue Jun 18 02:00:13 2019 (r504461) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= service_identity -PORTVERSION= 17.0.0 +PORTVERSION= 18.1.0 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,14 +13,20 @@ COMMENT= Service identity verification for pyOpenSSL LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}attrs>=15.2:devel/py-attrs@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}openssl>=0.15:security/py-openssl@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pyasn1>=0.1.9:devel/py-pyasn1@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pyasn1-modules>=0.0.8:devel/py-pyasn1-modules@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}characteristic>=14.1:devel/py-characteristic@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}attrs>=16.0.0:devel/py-attrs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}cryptography>=0:security/py-cryptography@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyasn1-modules>=0:devel/py-pyasn1-modules@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyasn1>=0:devel/py-pyasn1@${PY_FLAVOR} -NO_ARCH= yes USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist distutils -.include +NO_ARCH= yes + +.include + +.if ${PYTHON_VER} < 3.3 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}ipaddress>=0:net/py-ipaddress@${PY_FLAVOR} +.endif + +.include Modified: head/security/py-service_identity/distinfo ============================================================================== --- head/security/py-service_identity/distinfo Tue Jun 18 01:54:45 2019 (r504460) +++ head/security/py-service_identity/distinfo Tue Jun 18 02:00:13 2019 (r504461) @@ -1,3 +1,3 @@ -TIMESTAMP = 1504993632 -SHA256 (service_identity-17.0.0.tar.gz) = 4001fbb3da19e0df22c47a06d29681a398473af4aa9d745eca525b3b2c2302ab -SIZE (service_identity-17.0.0.tar.gz) = 23502 +TIMESTAMP = 1560182465 +SHA256 (service_identity-18.1.0.tar.gz) = 0858a54aabc5b459d1aafa8a518ed2081a285087f349fe3e55197989232e2e2d +SIZE (service_identity-18.1.0.tar.gz) = 21653 From owner-svn-ports-all@freebsd.org Tue Jun 18 02:01:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 873AC15CAE3D; Tue, 18 Jun 2019 02:01:24 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 27E908C788; Tue, 18 Jun 2019 02:01:24 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 02CF4678A; Tue, 18 Jun 2019 02:01:24 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I21NeX089382; Tue, 18 Jun 2019 02:01:23 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I21Ngj089379; Tue, 18 Jun 2019 02:01:23 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906180201.x5I21Ngj089379@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 02:01:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504462 - head/games/onscripter X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/games/onscripter X-SVN-Commit-Revision: 504462 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 27E908C788 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 02:01:24 -0000 Author: jbeich Date: Tue Jun 18 02:01:23 2019 New Revision: 504462 URL: https://svnweb.freebsd.org/changeset/ports/504462 Log: games/onscripter: update to 20190527 Changes: http://onscripter.osdn.jp/onscripter_devel.2019.html Modified: head/games/onscripter/Makefile (contents, props changed) head/games/onscripter/distinfo (contents, props changed) Modified: head/games/onscripter/Makefile ============================================================================== --- head/games/onscripter/Makefile Tue Jun 18 02:00:13 2019 (r504461) +++ head/games/onscripter/Makefile Tue Jun 18 02:01:23 2019 (r504462) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= onscripter -PORTVERSION= 20181218 +PORTVERSION= 20190527 CATEGORIES= games MASTER_SITES= http://onscripter.osdn.jp/ Modified: head/games/onscripter/distinfo ============================================================================== --- head/games/onscripter/distinfo Tue Jun 18 02:00:13 2019 (r504461) +++ head/games/onscripter/distinfo Tue Jun 18 02:01:23 2019 (r504462) @@ -1,3 +1,3 @@ -TIMESTAMP = 1545144174 -SHA256 (onscripter-20181218.tar.gz) = 724bd96c3687f2848292f5308d0a39d702957be22f0fe790f404522efcce113f -SIZE (onscripter-20181218.tar.gz) = 248478 +TIMESTAMP = 1558939320 +SHA256 (onscripter-20190527.tar.gz) = 4e72830051dbe79fad21128888652dd31383ef999e9adba2fea97559a5158452 +SIZE (onscripter-20190527.tar.gz) = 246783 From owner-svn-ports-all@freebsd.org Tue Jun 18 02:29:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3487315CBBAD; Tue, 18 Jun 2019 02:29:27 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D05688D8ED; Tue, 18 Jun 2019 02:29:26 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A70FB6B29; Tue, 18 Jun 2019 02:29:26 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I2TQVt002865; Tue, 18 Jun 2019 02:29:26 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I2TQUL002864; Tue, 18 Jun 2019 02:29:26 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201906180229.x5I2TQUL002864@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Tue, 18 Jun 2019 02:29:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504463 - in head/comms/quisk: . files X-SVN-Group: ports-head X-SVN-Commit-Author: shurd X-SVN-Commit-Paths: in head/comms/quisk: . files X-SVN-Commit-Revision: 504463 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D05688D8ED X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.955,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 02:29:27 -0000 Author: shurd Date: Tue Jun 18 02:29:26 2019 New Revision: 504463 URL: https://svnweb.freebsd.org/changeset/ports/504463 Log: Fix SDR-IQ Support Previously, only if the device name started with the literal string "/dev/ttyUSB" was the device treated as a tty. The new patch uses isatty() to decide if the device is a tty. Added: head/comms/quisk/files/patch-sdriqpkg_sdriq.c (contents, props changed) Modified: head/comms/quisk/Makefile Modified: head/comms/quisk/Makefile ============================================================================== --- head/comms/quisk/Makefile Tue Jun 18 02:01:23 2019 (r504462) +++ head/comms/quisk/Makefile Tue Jun 18 02:29:26 2019 (r504463) @@ -3,6 +3,7 @@ PORTNAME= quisk DISTVERSION= 4.1.40 +PORTREVISION= 1 CATEGORIES= comms hamradio MASTER_SITES= CHEESESHOP Added: head/comms/quisk/files/patch-sdriqpkg_sdriq.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/quisk/files/patch-sdriqpkg_sdriq.c Tue Jun 18 02:29:26 2019 (r504463) @@ -0,0 +1,41 @@ +--- sdriqpkg/sdriq.c.orig 2018-08-02 14:01:30 UTC ++++ sdriqpkg/sdriq.c +@@ -629,14 +658,14 @@ static void quisk_open_sdriq_dev(const c + { + struct termios newtio; + +- if (!strncmp(name, "/dev/ttyUSB", 11)) { // use ftdi_sio driver +- quisk_sdriq_fd = open(name, O_RDWR | O_NOCTTY); +- if (quisk_sdriq_fd < 0) { +- strncpy(buf, "Open SDR-IQ : ", bufsize); +- strncat(buf, strerror(errno), bufsize - strlen(buf) - 1); +- quisk_sdriq_fd = INVALID_HANDLE_VALUE; +- return; +- } ++ quisk_sdriq_fd = open(name, O_RDWR | O_NOCTTY | O_NONBLOCK); ++ if (quisk_sdriq_fd < 0) { ++ strncpy(buf, "Open SDR-IQ : ", bufsize); ++ strncat(buf, strerror(errno), bufsize - strlen(buf) - 1); ++ quisk_sdriq_fd = INVALID_HANDLE_VALUE; ++ return; ++ } ++ if (isatty(quisk_sdriq_fd)) { + bzero(&newtio, sizeof(newtio)); + newtio.c_cflag = CS8 | CLOCAL | CREAD; + newtio.c_iflag = IGNPAR; +@@ -649,15 +678,6 @@ static void quisk_open_sdriq_dev(const c + tcflush(quisk_sdriq_fd, TCIFLUSH); + tcsetattr(quisk_sdriq_fd, TCSANOW, &newtio); + } +- else { // use ft245 or similar driver +- quisk_sdriq_fd = open(name, O_RDWR | O_NONBLOCK); +- if (quisk_sdriq_fd < 0) { +- strncpy(buf, "Open SDR-IQ: ", bufsize); +- strncat(buf, strerror(errno), bufsize - strlen(buf) - 1); +- quisk_sdriq_fd = INVALID_HANDLE_VALUE; +- return; +- } +- } + return; + } + #endif From owner-svn-ports-all@freebsd.org Tue Jun 18 02:29:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1C4E515CBBDE; Tue, 18 Jun 2019 02:29:48 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6941D8D9C3; Tue, 18 Jun 2019 02:29:47 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 424366B2A; Tue, 18 Jun 2019 02:29:47 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I2TlbV002999; Tue, 18 Jun 2019 02:29:47 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I2TkO8002997; Tue, 18 Jun 2019 02:29:46 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906180229.x5I2TkO8002997@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 18 Jun 2019 02:29:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504464 - head/net/bwping X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/net/bwping X-SVN-Commit-Revision: 504464 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6941D8D9C3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.955,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 02:29:48 -0000 Author: swills Date: Tue Jun 18 02:29:46 2019 New Revision: 504464 URL: https://svnweb.freebsd.org/changeset/ports/504464 Log: net/bwping: Update to 1.15 PR: 238493 Submitted by: Oleg Derevenetz (maintainer) Modified: head/net/bwping/Makefile (contents, props changed) head/net/bwping/distinfo (contents, props changed) Modified: head/net/bwping/Makefile ============================================================================== --- head/net/bwping/Makefile Tue Jun 18 02:29:26 2019 (r504463) +++ head/net/bwping/Makefile Tue Jun 18 02:29:46 2019 (r504464) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= bwping -PORTVERSION= 1.14 +PORTVERSION= 1.15 CATEGORIES= net MASTER_SITES= SF Modified: head/net/bwping/distinfo ============================================================================== --- head/net/bwping/distinfo Tue Jun 18 02:29:26 2019 (r504463) +++ head/net/bwping/distinfo Tue Jun 18 02:29:46 2019 (r504464) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557184441 -SHA256 (bwping-1.14.tar.gz) = 527d20a7e36e274c21697e8292ef222b00b2bd318dc095519a1fbb530cce1ad6 -SIZE (bwping-1.14.tar.gz) = 104555 +TIMESTAMP = 1560245634 +SHA256 (bwping-1.15.tar.gz) = ed40b5f56da61830734f1a1aa967ad7fd9f7b3a2e688ca9ff2d509156c14b37d +SIZE (bwping-1.15.tar.gz) = 104234 From owner-svn-ports-all@freebsd.org Tue Jun 18 02:33:02 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9994815CBE79; Tue, 18 Jun 2019 02:33:02 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3BF3D8DDEE; Tue, 18 Jun 2019 02:33:02 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 26CE46CE0; Tue, 18 Jun 2019 02:33:02 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I2X2Il007812; Tue, 18 Jun 2019 02:33:02 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I2X12U007809; Tue, 18 Jun 2019 02:33:01 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906180233.x5I2X12U007809@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 18 Jun 2019 02:33:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504465 - head/dns/nsd X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/dns/nsd X-SVN-Commit-Revision: 504465 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3BF3D8DDEE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.955,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 02:33:02 -0000 Author: swills Date: Tue Jun 18 02:33:01 2019 New Revision: 504465 URL: https://svnweb.freebsd.org/changeset/ports/504465 Log: dns/nsd: update to 4.2.0 PR: 238498 Submitted by: Jaap Akkerhuis (maintainer) Modified: head/dns/nsd/Makefile (contents, props changed) head/dns/nsd/distinfo (contents, props changed) Modified: head/dns/nsd/Makefile ============================================================================== --- head/dns/nsd/Makefile Tue Jun 18 02:29:46 2019 (r504464) +++ head/dns/nsd/Makefile Tue Jun 18 02:33:01 2019 (r504465) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nsd -PORTVERSION= 4.1.27 +PORTVERSION= 4.2.0 CATEGORIES= dns ipv6 MASTER_SITES= http://www.nlnetlabs.nl/downloads/nsd/ \ ftp://ftp.rhnet.is/pub/nsd/ Modified: head/dns/nsd/distinfo ============================================================================== --- head/dns/nsd/distinfo Tue Jun 18 02:29:46 2019 (r504464) +++ head/dns/nsd/distinfo Tue Jun 18 02:33:01 2019 (r504465) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553519927 -SHA256 (nsd-4.1.27.tar.gz) = 1bab5f30406cabac2f2cc95f8af6dfe20581646a75a70c091845e04d325f4eea -SIZE (nsd-4.1.27.tar.gz) = 1131881 +TIMESTAMP = 1560257384 +SHA256 (nsd-4.2.0.tar.gz) = 51df1ca44a00e588c09ff0696e588c13566ce889b50d953896d8b6e507eda74c +SIZE (nsd-4.2.0.tar.gz) = 1141796 From owner-svn-ports-all@freebsd.org Tue Jun 18 05:43:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 634D515CFA79; Tue, 18 Jun 2019 05:43:53 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 062FB92D4B; Tue, 18 Jun 2019 05:43:53 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D41578D64; Tue, 18 Jun 2019 05:43:52 +0000 (UTC) (envelope-from vanilla@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I5hqTN007635; Tue, 18 Jun 2019 05:43:52 GMT (envelope-from vanilla@FreeBSD.org) Received: (from vanilla@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I5hpL6007631; Tue, 18 Jun 2019 05:43:51 GMT (envelope-from vanilla@FreeBSD.org) Message-Id: <201906180543.x5I5hpL6007631@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vanilla set sender to vanilla@FreeBSD.org using -f From: "Vanilla I. Shu" Date: Tue, 18 Jun 2019 05:43:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504466 - in head/devel/pecl-swoole: . files X-SVN-Group: ports-head X-SVN-Commit-Author: vanilla X-SVN-Commit-Paths: in head/devel/pecl-swoole: . files X-SVN-Commit-Revision: 504466 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 062FB92D4B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 05:43:53 -0000 Author: vanilla Date: Tue Jun 18 05:43:51 2019 New Revision: 504466 URL: https://svnweb.freebsd.org/changeset/ports/504466 Log: Update to 4.3.5. Added: head/devel/pecl-swoole/files/patch-src_server_static__handler.cc (contents, props changed) Modified: head/devel/pecl-swoole/Makefile head/devel/pecl-swoole/distinfo head/devel/pecl-swoole/files/patch-config.m4 Modified: head/devel/pecl-swoole/Makefile ============================================================================== --- head/devel/pecl-swoole/Makefile Tue Jun 18 02:33:01 2019 (r504465) +++ head/devel/pecl-swoole/Makefile Tue Jun 18 05:43:51 2019 (r504466) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= swoole -PORTVERSION= 4.3.1 +PORTVERSION= 4.3.5 CATEGORIES= devel net MAINTAINER= vanilla@FreeBSD.org Modified: head/devel/pecl-swoole/distinfo ============================================================================== --- head/devel/pecl-swoole/distinfo Tue Jun 18 02:33:01 2019 (r504465) +++ head/devel/pecl-swoole/distinfo Tue Jun 18 05:43:51 2019 (r504466) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554984024 -SHA256 (PECL/swoole-4.3.1.tgz) = 8078960cd654b1a4a72cd3b092e672455e28013d56670ccdd4f882281c6425dd -SIZE (PECL/swoole-4.3.1.tgz) = 1311706 +TIMESTAMP = 1560827376 +SHA256 (PECL/swoole-4.3.5.tgz) = d9c640f6275403d9a871998643d79a7f3e8e51593591c1c08e53e93af189b075 +SIZE (PECL/swoole-4.3.5.tgz) = 1348319 Modified: head/devel/pecl-swoole/files/patch-config.m4 ============================================================================== --- head/devel/pecl-swoole/files/patch-config.m4 Tue Jun 18 02:33:01 2019 (r504465) +++ head/devel/pecl-swoole/files/patch-config.m4 Tue Jun 18 05:43:51 2019 (r504466) @@ -1,6 +1,6 @@ ---- config.m4.orig 2019-02-02 14:04:33 UTC +--- config.m4.orig 2019-06-14 08:30:12 UTC +++ config.m4 -@@ -227,7 +227,7 @@ if test "$PHP_SWOOLE" != "no"; then +@@ -296,7 +296,7 @@ if test "$PHP_SWOOLE" != "no"; then AC_CHECK_LIB(c, poll, AC_DEFINE(HAVE_POLL, 1, [have poll])) AC_CHECK_LIB(c, sendfile, AC_DEFINE(HAVE_SENDFILE, 1, [have sendfile])) AC_CHECK_LIB(c, kqueue, AC_DEFINE(HAVE_KQUEUE, 1, [have kqueue])) Added: head/devel/pecl-swoole/files/patch-src_server_static__handler.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/pecl-swoole/files/patch-src_server_static__handler.cc Tue Jun 18 05:43:51 2019 (r504466) @@ -0,0 +1,11 @@ +--- src/server/static_handler.cc.orig 2019-06-18 03:17:11 UTC ++++ src/server/static_handler.cc +@@ -168,7 +168,7 @@ int static_handler::send_response() + { + date_format = SW_HTTP_ASCTIME_DATE; + } +- if (date_format && mktime(&tm3) - (int) timezone >= file_mtime) ++ if (date_format && mktime(&tm3) - (long)timezone >= file_mtime) + { + response.info.len = sw_snprintf(header_buffer, sizeof(header_buffer), "HTTP/1.1 304 Not Modified\r\n" + "%s" From owner-svn-ports-all@freebsd.org Tue Jun 18 06:10:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EABAA15CFF07; Tue, 18 Jun 2019 06:10:18 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4A23693535; Tue, 18 Jun 2019 06:10:18 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D841C90B5; Tue, 18 Jun 2019 06:10:17 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I6AHti018049; Tue, 18 Jun 2019 06:10:17 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I6AHY2018047; Tue, 18 Jun 2019 06:10:17 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201906180610.x5I6AHY2018047@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Tue, 18 Jun 2019 06:10:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504467 - head/devel/py-yamllint X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: head/devel/py-yamllint X-SVN-Commit-Revision: 504467 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4A23693535 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 06:10:19 -0000 Author: matthew Date: Tue Jun 18 06:10:17 2019 New Revision: 504467 URL: https://svnweb.freebsd.org/changeset/ports/504467 Log: Update to 1.16.0 ChangeLog: https://github.com/adrienverge/yamllint/blob/master/CHANGELOG.rst Modified: head/devel/py-yamllint/Makefile head/devel/py-yamllint/distinfo Modified: head/devel/py-yamllint/Makefile ============================================================================== --- head/devel/py-yamllint/Makefile Tue Jun 18 05:43:51 2019 (r504466) +++ head/devel/py-yamllint/Makefile Tue Jun 18 06:10:17 2019 (r504467) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= yamllint -PORTVERSION= 1.15.0 -PORTREVISION= 1 +PORTVERSION= 1.16.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-yamllint/distinfo ============================================================================== --- head/devel/py-yamllint/distinfo Tue Jun 18 05:43:51 2019 (r504466) +++ head/devel/py-yamllint/distinfo Tue Jun 18 06:10:17 2019 (r504467) @@ -1,3 +1,3 @@ -TIMESTAMP = 1550014698 -SHA256 (yamllint-1.15.0.tar.gz) = 8f25759997acb42e52b96bf3af0b4b942e6516b51198bebd3402640102006af7 -SIZE (yamllint-1.15.0.tar.gz) = 114958 +TIMESTAMP = 1560837962 +SHA256 (yamllint-1.16.0.tar.gz) = 9a4fec2d40804979de5f54453fd1551bc1f8b59a7ad4a26fd7f26aeca34a83af +SIZE (yamllint-1.16.0.tar.gz) = 116004 From owner-svn-ports-all@freebsd.org Tue Jun 18 07:28:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5592715D1AC6; Tue, 18 Jun 2019 07:28:30 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ECEDF959FF; Tue, 18 Jun 2019 07:28:29 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C9F7A9E2A; Tue, 18 Jun 2019 07:28:29 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I7STVI059525; Tue, 18 Jun 2019 07:28:29 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I7STGF059524; Tue, 18 Jun 2019 07:28:29 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201906180728.x5I7STGF059524@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Tue, 18 Jun 2019 07:28:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504468 - in head/databases/mariadb103-server: . files X-SVN-Group: ports-head X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: in head/databases/mariadb103-server: . files X-SVN-Commit-Revision: 504468 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: ECEDF959FF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 07:28:30 -0000 Author: brnrd Date: Tue Jun 18 07:28:29 2019 New Revision: 504468 URL: https://svnweb.freebsd.org/changeset/ports/504468 Log: databases/mariadb103-server: Bugfix update to 10.3.16 Deleted: head/databases/mariadb103-server/files/patch-plugin_auth__ed25519_CMakeLists.txt Modified: head/databases/mariadb103-server/Makefile head/databases/mariadb103-server/distinfo Modified: head/databases/mariadb103-server/Makefile ============================================================================== --- head/databases/mariadb103-server/Makefile Tue Jun 18 06:10:17 2019 (r504467) +++ head/databases/mariadb103-server/Makefile Tue Jun 18 07:28:29 2019 (r504468) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 10.3.15 +PORTVERSION= 10.3.16 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://mirrors.supportex.net/${SITESDIR}/ \ Modified: head/databases/mariadb103-server/distinfo ============================================================================== --- head/databases/mariadb103-server/distinfo Tue Jun 18 06:10:17 2019 (r504467) +++ head/databases/mariadb103-server/distinfo Tue Jun 18 07:28:29 2019 (r504468) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557908013 -SHA256 (mariadb-10.3.15.tar.gz) = 27f391a54d544f93850d4edfb3ef1b4cf24f8e27e61e51727b0e7d31bb4d6968 -SIZE (mariadb-10.3.15.tar.gz) = 70824529 +TIMESTAMP = 1560708987 +SHA256 (mariadb-10.3.16.tar.gz) = 39e9723eaf620afd99b0925b2c2a5a50a89110ba50040adf14cce7cf89e5e21b +SIZE (mariadb-10.3.16.tar.gz) = 70862041 From owner-svn-ports-all@freebsd.org Tue Jun 18 09:01:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3F0B15B2158; Tue, 18 Jun 2019 09:01:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 884866AD29; Tue, 18 Jun 2019 09:01:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 406E0AEF3; Tue, 18 Jun 2019 09:01:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I91wKN008531; Tue, 18 Jun 2019 09:01:58 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I91woN008530; Tue, 18 Jun 2019 09:01:58 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906180901.x5I91woN008530@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 18 Jun 2019 09:01:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504469 - head/sysutils/seatools X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/sysutils/seatools X-SVN-Commit-Revision: 504469 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 884866AD29 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.960,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 09:01:59 -0000 Author: amdmi3 Date: Tue Jun 18 09:01:57 2019 New Revision: 504469 URL: https://svnweb.freebsd.org/changeset/ports/504469 Log: - Update WWW Approved by: portmgr blanket Modified: head/sysutils/seatools/pkg-descr Modified: head/sysutils/seatools/pkg-descr ============================================================================== --- head/sysutils/seatools/pkg-descr Tue Jun 18 07:28:29 2019 (r504468) +++ head/sysutils/seatools/pkg-descr Tue Jun 18 09:01:57 2019 (r504469) @@ -1,4 +1,4 @@ Here is the port of Seagate's SeaTools Enterprise Edition for Linux Disc Diagnostic Software (cli version). -WWW: http://www.seagate.com +WWW: https://www.seagate.com From owner-svn-ports-all@freebsd.org Tue Jun 18 09:05:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8859015B23E1; Tue, 18 Jun 2019 09:05:53 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3A3F36B147; Tue, 18 Jun 2019 09:05:53 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1051DAF31; Tue, 18 Jun 2019 09:05:53 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5I95roK012024; Tue, 18 Jun 2019 09:05:53 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5I95qBO012021; Tue, 18 Jun 2019 09:05:52 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906180905.x5I95qBO012021@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Tue, 18 Jun 2019 09:05:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504470 - in head/devel/ocaml-camomile: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/devel/ocaml-camomile: . files X-SVN-Commit-Revision: 504470 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3A3F36B147 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.965,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 09:05:54 -0000 Author: danfe Date: Tue Jun 18 09:05:52 2019 New Revision: 504470 URL: https://svnweb.freebsd.org/changeset/ports/504470 Log: - Update to version 1.0.1 (the project had moved to GitHub) - Now built with Dune (formerly jbuilder), which replaces most USE_OCAML_* knobs and allows to drop MAKE_JOBS_UNSAFE Added: head/devel/ocaml-camomile/pkg-plist (contents, props changed) Deleted: head/devel/ocaml-camomile/files/ Modified: head/devel/ocaml-camomile/Makefile head/devel/ocaml-camomile/distinfo Modified: head/devel/ocaml-camomile/Makefile ============================================================================== --- head/devel/ocaml-camomile/Makefile Tue Jun 18 09:01:57 2019 (r504469) +++ head/devel/ocaml-camomile/Makefile Tue Jun 18 09:05:52 2019 (r504470) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= camomile -PORTVERSION= 0.8.3 +PORTVERSION= 1.0.1 CATEGORIES= devel -MASTER_SITES= SF PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org @@ -12,22 +11,27 @@ COMMENT= Comprehensive Unicode library for Objective C LICENSE= LGPL21 -USES= gmake tar:bzip2 +BUILD_DEPENDS= jbuilder:devel/ocaml-dune + +USES= gmake +USE_GITHUB= yes +GH_ACCOUNT= yoriyuki +GH_PROJECT= Camomile USE_OCAML= yes -USE_OCAML_FINDLIB=yes -USE_OCAML_CAMLP4=yes -USE_OCAML_LDCONFIG=yes -USE_OCAML_WASH= yes -GNU_CONFIGURE= yes -MAKE_JOBS_UNSAFE= yes -DOCSDIR= ${PREFIX}/share/doc/ocaml/${PORTNAME} -EXAMPLESDIR= ${PREFIX}/share/examples/ocaml/${PORTNAME} +MAKE_ENV= LIBDIR="${OCAML_SITELIBDIR}" +DOCSDIR= ${OCAML_DOCSDIR}/${PORTNAME} -post-install: - @${FIND} ${STAGEDIR}${DATADIR} ! -type d | \ - ${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST} - @${FIND} ${STAGEDIR}${OCAMLFIND_DESTDIR}/${PORTNAME} ! -type d | \ - ${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST} +PORTDOCS= CHANGES.md LICENSE.md README.md + +OPTIONS_DEFINE= DOCS + +post-patch: + @${REINPLACE_CMD} -e '/^INSTALL_ARGS/ \ + s:$$: $$(if $$(LIBDIR),--libdir $$(LIBDIR),):' \ + ${WRKSRC}/Makefile + @${REINPLACE_CMD} -e 's,(\*\*,(*,' \ + ${WRKSRC}/Camomile/public/uCharInfo.mli \ + ${WRKSRC}/Camomile/public/stringPrep.ml* .include Modified: head/devel/ocaml-camomile/distinfo ============================================================================== --- head/devel/ocaml-camomile/distinfo Tue Jun 18 09:01:57 2019 (r504469) +++ head/devel/ocaml-camomile/distinfo Tue Jun 18 09:05:52 2019 (r504470) @@ -1,2 +1,3 @@ -SHA256 (camomile-0.8.3.tar.bz2) = 94c8d65d417c90301f6b3b21e4b00e151c434a3e2d406c3d5b3363859034f27b -SIZE (camomile-0.8.3.tar.bz2) = 2646968 +TIMESTAMP = 1523366405 +SHA256 (yoriyuki-Camomile-1.0.1_GH0.tar.gz) = 8ce9d93a2ad3fcee8aa51538d16516f47d63b48d31ac85640003800200864e05 +SIZE (yoriyuki-Camomile-1.0.1_GH0.tar.gz) = 7035976 Added: head/devel/ocaml-camomile/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ocaml-camomile/pkg-plist Tue Jun 18 09:05:52 2019 (r504470) @@ -0,0 +1,1255 @@ +%%OCAML_SITELIBDIR%%/camomile/META +%%OCAML_SITELIBDIR%%/camomile/camomile_do_not_use.cmi +%%OCAML_SITELIBDIR%%/camomile/camomile_do_not_use.cmt +%%OCAML_SITELIBDIR%%/camomile/camomile_do_not_use.cmx +%%OCAML_SITELIBDIR%%/camomile/camomile_do_not_use.ml +%%OCAML_SITELIBDIR%%/camomile/camomile_yuge.a +%%OCAML_SITELIBDIR%%/camomile/camomile_yuge.cma +%%OCAML_SITELIBDIR%%/camomile/camomile_yuge.cmxa +%%OCAML_SITELIBDIR%%/camomile/camomile_yuge.cmxs +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig.a +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig.cma +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig.cmi +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig.cmt +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig.cmx +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig.cmxa +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig.cmxs +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig.ml +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig__.cmi +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig__.cmt +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig__.cmx +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig__.ml +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig__InstallConfig.cmi +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig__InstallConfig.cmt +%%OCAML_SITELIBDIR%%/camomile/default_config/camomileDefaultConfig__InstallConfig.cmx +%%OCAML_SITELIBDIR%%/camomile/default_config/installConfig.ml +%%OCAML_SITELIBDIR%%/camomile/dune-package +%%OCAML_SITELIBDIR%%/camomile/dyn/camomileLibraryDyn.a +%%OCAML_SITELIBDIR%%/camomile/dyn/camomileLibraryDyn.cma +%%OCAML_SITELIBDIR%%/camomile/dyn/camomileLibraryDyn.cmi +%%OCAML_SITELIBDIR%%/camomile/dyn/camomileLibraryDyn.cmt +%%OCAML_SITELIBDIR%%/camomile/dyn/camomileLibraryDyn.cmx +%%OCAML_SITELIBDIR%%/camomile/dyn/camomileLibraryDyn.cmxa +%%OCAML_SITELIBDIR%%/camomile/dyn/camomileLibraryDyn.cmxs +%%OCAML_SITELIBDIR%%/camomile/dyn/camomileLibraryDyn.ml +%%OCAML_SITELIBDIR%%/camomile/lib_default/camomileLibraryDefault.a +%%OCAML_SITELIBDIR%%/camomile/lib_default/camomileLibraryDefault.cma +%%OCAML_SITELIBDIR%%/camomile/lib_default/camomileLibraryDefault.cmi +%%OCAML_SITELIBDIR%%/camomile/lib_default/camomileLibraryDefault.cmt +%%OCAML_SITELIBDIR%%/camomile/lib_default/camomileLibraryDefault.cmx +%%OCAML_SITELIBDIR%%/camomile/lib_default/camomileLibraryDefault.cmxa +%%OCAML_SITELIBDIR%%/camomile/lib_default/camomileLibraryDefault.cmxs +%%OCAML_SITELIBDIR%%/camomile/lib_default/camomileLibraryDefault.ml +%%OCAML_SITELIBDIR%%/camomile/library/avlTree.ml +%%OCAML_SITELIBDIR%%/camomile/library/avlTree.mli +%%OCAML_SITELIBDIR%%/camomile/library/bitsvect.ml +%%OCAML_SITELIBDIR%%/camomile/library/bitsvect.mli +%%OCAML_SITELIBDIR%%/camomile/library/byte_labeled_dag.ml +%%OCAML_SITELIBDIR%%/camomile/library/byte_labeled_dag.mli +%%OCAML_SITELIBDIR%%/camomile/library/bytesvect.ml +%%OCAML_SITELIBDIR%%/camomile/library/bytesvect.mli +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary.a +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary.cma +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary.cmxa +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary.cmxs +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary.ml +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__.ml +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__AvlTree.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__AvlTree.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__AvlTree.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__AvlTree.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Bitsvect.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Bitsvect.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Bitsvect.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Bitsvect.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Byte_labeled_dag.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Byte_labeled_dag.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Byte_labeled_dag.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Byte_labeled_dag.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Bytesvect.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Bytesvect.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Bytesvect.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Bytesvect.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__CaseMap.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__CaseMap.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__CaseMap.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__CaseMap.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__CharEncoding.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__CharEncoding.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__CharEncoding.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__CharEncoding.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Charmap.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Charmap.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Charmap.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Charmap.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__ConfigInt.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__ConfigInt.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__ConfigInt.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Database.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Database.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Database.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Database.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Hangul.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Hangul.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Hangul.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Hangul.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__IMap.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__IMap.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__IMap.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__IMap.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__ISet.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__ISet.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__ISet.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__ISet.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Locale.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Locale.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Locale.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Locale.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__OOChannel.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__OOChannel.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__OOChannel.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__OOChannel.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__StringPrep.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__StringPrep.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__StringPrep.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__StringPrep.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__StringPrep_data.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__StringPrep_data.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__StringPrep_data.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__StringPrep_data.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__SubText.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__SubText.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__SubText.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__SubText.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Tbl31.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Tbl31.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Tbl31.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Tbl31.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCS4.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCS4.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCS4.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCS4.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UChar.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UChar.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UChar.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UChar.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCharInfo.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCharInfo.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCharInfo.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCharInfo.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCharTbl.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCharTbl.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCharTbl.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCharTbl.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCol.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCol.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCol.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UCol.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__ULine.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__ULine.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__ULine.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__ULine.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UMap.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UMap.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UMap.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UMap.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UNF.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UNF.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UNF.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UNF.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UPervasives.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UPervasives.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UPervasives.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UPervasives.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__URe.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__URe.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__URe.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__URe.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStr.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStr.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStr.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStr.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStrLexer.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStrLexer.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStrLexer.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStrParser.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStrParser.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStrParser.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStrParser.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStrParserType.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStrParserType.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UReStrParserType.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__USet.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__USet.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__USet.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__USet.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UTF16.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UTF16.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UTF16.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UTF16.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UTF8.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UTF8.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UTF8.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UTF8.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UText.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UText.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UText.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UText.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UnicodeString.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UnicodeString.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__UnicodeString.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Unidata.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Unidata.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Unidata.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Unidata.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Unimap.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Unimap.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Unimap.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__Unimap.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__XArray.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__XArray.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__XArray.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__XArray.cmx +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__XString.cmi +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__XString.cmt +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__XString.cmti +%%OCAML_SITELIBDIR%%/camomile/library/camomileLibrary__XString.cmx +%%OCAML_SITELIBDIR%%/camomile/library/caseMap.ml +%%OCAML_SITELIBDIR%%/camomile/library/caseMap.mli +%%OCAML_SITELIBDIR%%/camomile/library/charEncoding.ml +%%OCAML_SITELIBDIR%%/camomile/library/charEncoding.mli +%%OCAML_SITELIBDIR%%/camomile/library/charmap.ml +%%OCAML_SITELIBDIR%%/camomile/library/charmap.mli +%%OCAML_SITELIBDIR%%/camomile/library/configInt.ml +%%OCAML_SITELIBDIR%%/camomile/library/database.ml +%%OCAML_SITELIBDIR%%/camomile/library/database.mli +%%OCAML_SITELIBDIR%%/camomile/library/hangul.ml +%%OCAML_SITELIBDIR%%/camomile/library/hangul.mli +%%OCAML_SITELIBDIR%%/camomile/library/iMap.ml +%%OCAML_SITELIBDIR%%/camomile/library/iMap.mli +%%OCAML_SITELIBDIR%%/camomile/library/iSet.ml +%%OCAML_SITELIBDIR%%/camomile/library/iSet.mli +%%OCAML_SITELIBDIR%%/camomile/library/locale.ml +%%OCAML_SITELIBDIR%%/camomile/library/locale.mli +%%OCAML_SITELIBDIR%%/camomile/library/oOChannel.ml +%%OCAML_SITELIBDIR%%/camomile/library/oOChannel.mli +%%OCAML_SITELIBDIR%%/camomile/library/stringPrep.ml +%%OCAML_SITELIBDIR%%/camomile/library/stringPrep.mli +%%OCAML_SITELIBDIR%%/camomile/library/stringPrep_data.ml +%%OCAML_SITELIBDIR%%/camomile/library/stringPrep_data.mli +%%OCAML_SITELIBDIR%%/camomile/library/subText.ml +%%OCAML_SITELIBDIR%%/camomile/library/subText.mli +%%OCAML_SITELIBDIR%%/camomile/library/tbl31.ml +%%OCAML_SITELIBDIR%%/camomile/library/tbl31.mli +%%OCAML_SITELIBDIR%%/camomile/library/uCS4.ml +%%OCAML_SITELIBDIR%%/camomile/library/uCS4.mli +%%OCAML_SITELIBDIR%%/camomile/library/uChar.ml +%%OCAML_SITELIBDIR%%/camomile/library/uChar.mli +%%OCAML_SITELIBDIR%%/camomile/library/uCharInfo.ml +%%OCAML_SITELIBDIR%%/camomile/library/uCharInfo.mli +%%OCAML_SITELIBDIR%%/camomile/library/uCharTbl.ml +%%OCAML_SITELIBDIR%%/camomile/library/uCharTbl.mli +%%OCAML_SITELIBDIR%%/camomile/library/uCol.ml +%%OCAML_SITELIBDIR%%/camomile/library/uCol.mli +%%OCAML_SITELIBDIR%%/camomile/library/uLine.ml +%%OCAML_SITELIBDIR%%/camomile/library/uLine.mli +%%OCAML_SITELIBDIR%%/camomile/library/uMap.ml +%%OCAML_SITELIBDIR%%/camomile/library/uMap.mli +%%OCAML_SITELIBDIR%%/camomile/library/uNF.ml +%%OCAML_SITELIBDIR%%/camomile/library/uNF.mli +%%OCAML_SITELIBDIR%%/camomile/library/uPervasives.ml +%%OCAML_SITELIBDIR%%/camomile/library/uPervasives.mli +%%OCAML_SITELIBDIR%%/camomile/library/uRe.ml +%%OCAML_SITELIBDIR%%/camomile/library/uRe.mli +%%OCAML_SITELIBDIR%%/camomile/library/uReStr.ml +%%OCAML_SITELIBDIR%%/camomile/library/uReStr.mli +%%OCAML_SITELIBDIR%%/camomile/library/uReStrLexer.ml +%%OCAML_SITELIBDIR%%/camomile/library/uReStrParser.ml +%%OCAML_SITELIBDIR%%/camomile/library/uReStrParser.mli +%%OCAML_SITELIBDIR%%/camomile/library/uReStrParserType.ml +%%OCAML_SITELIBDIR%%/camomile/library/uSet.ml +%%OCAML_SITELIBDIR%%/camomile/library/uSet.mli +%%OCAML_SITELIBDIR%%/camomile/library/uTF16.ml +%%OCAML_SITELIBDIR%%/camomile/library/uTF16.mli +%%OCAML_SITELIBDIR%%/camomile/library/uTF8.ml +%%OCAML_SITELIBDIR%%/camomile/library/uTF8.mli +%%OCAML_SITELIBDIR%%/camomile/library/uText.ml +%%OCAML_SITELIBDIR%%/camomile/library/uText.mli +%%OCAML_SITELIBDIR%%/camomile/library/unicodeString.ml +%%OCAML_SITELIBDIR%%/camomile/library/unidata.ml +%%OCAML_SITELIBDIR%%/camomile/library/unidata.mli +%%OCAML_SITELIBDIR%%/camomile/library/unimap.ml +%%OCAML_SITELIBDIR%%/camomile/library/unimap.mli +%%OCAML_SITELIBDIR%%/camomile/library/xArray.ml +%%OCAML_SITELIBDIR%%/camomile/library/xArray.mli +%%OCAML_SITELIBDIR%%/camomile/library/xString.ml +%%OCAML_SITELIBDIR%%/camomile/library/xString.mli +%%OCAML_SITELIBDIR%%/camomile/opam +%%DATADIR%%/charmaps/1026.mar +%%DATADIR%%/charmaps/1047.mar +%%DATADIR%%/charmaps/437.mar +%%DATADIR%%/charmaps/500.mar +%%DATADIR%%/charmaps/500V1.mar +%%DATADIR%%/charmaps/850.mar +%%DATADIR%%/charmaps/851.mar +%%DATADIR%%/charmaps/852.mar +%%DATADIR%%/charmaps/855.mar +%%DATADIR%%/charmaps/856.mar +%%DATADIR%%/charmaps/857.mar +%%DATADIR%%/charmaps/860.mar +%%DATADIR%%/charmaps/861.mar +%%DATADIR%%/charmaps/862.mar +%%DATADIR%%/charmaps/863.mar +%%DATADIR%%/charmaps/865.mar +%%DATADIR%%/charmaps/866.mar +%%DATADIR%%/charmaps/866NAV.mar +%%DATADIR%%/charmaps/869.mar +%%DATADIR%%/charmaps/904.mar +%%DATADIR%%/charmaps/ANSI_X3%2E110-1983.mar +%%DATADIR%%/charmaps/ANSI_X3%2E4-1968.mar +%%DATADIR%%/charmaps/ANSI_X3%2E4-1986.mar +%%DATADIR%%/charmaps/ARABIC.mar +%%DATADIR%%/charmaps/ARABIC7.mar +%%DATADIR%%/charmaps/ARMSCII-8.mar +%%DATADIR%%/charmaps/ASCII.mar +%%DATADIR%%/charmaps/ASMO-708.mar +%%DATADIR%%/charmaps/ASMO_449.mar +%%DATADIR%%/charmaps/BIG5-CP950.mar +%%DATADIR%%/charmaps/BIG5-HKSCS.mar +%%DATADIR%%/charmaps/BIG5.mar +%%DATADIR%%/charmaps/BIG5HKSCS.mar +%%DATADIR%%/charmaps/BRF.mar +%%DATADIR%%/charmaps/BS_4730.mar +%%DATADIR%%/charmaps/BS_VIEWDATA.mar +%%DATADIR%%/charmaps/CA.mar +%%DATADIR%%/charmaps/CN.mar +%%DATADIR%%/charmaps/CP-AR.mar +%%DATADIR%%/charmaps/CP-GR.mar +%%DATADIR%%/charmaps/CP-HU.mar +%%DATADIR%%/charmaps/CP-IS.mar +%%DATADIR%%/charmaps/CP037.mar +%%DATADIR%%/charmaps/CP038.mar +%%DATADIR%%/charmaps/CP10007.mar +%%DATADIR%%/charmaps/CP1004.mar +%%DATADIR%%/charmaps/CP1026.mar +%%DATADIR%%/charmaps/CP1047.mar +%%DATADIR%%/charmaps/CP1124.mar +%%DATADIR%%/charmaps/CP1125.mar +%%DATADIR%%/charmaps/CP1129.mar +%%DATADIR%%/charmaps/CP1132.mar +%%DATADIR%%/charmaps/CP1133.mar +%%DATADIR%%/charmaps/CP1160.mar +%%DATADIR%%/charmaps/CP1161.mar +%%DATADIR%%/charmaps/CP1163.mar +%%DATADIR%%/charmaps/CP1164.mar +%%DATADIR%%/charmaps/CP1250.mar +%%DATADIR%%/charmaps/CP1251.mar +%%DATADIR%%/charmaps/CP1252.mar +%%DATADIR%%/charmaps/CP1253.mar +%%DATADIR%%/charmaps/CP1254.mar +%%DATADIR%%/charmaps/CP1255.mar +%%DATADIR%%/charmaps/CP1256.mar +%%DATADIR%%/charmaps/CP1257.mar +%%DATADIR%%/charmaps/CP1258.mar +%%DATADIR%%/charmaps/CP273.mar +%%DATADIR%%/charmaps/CP274.mar +%%DATADIR%%/charmaps/CP275.mar +%%DATADIR%%/charmaps/CP278.mar +%%DATADIR%%/charmaps/CP280.mar +%%DATADIR%%/charmaps/CP281.mar +%%DATADIR%%/charmaps/CP284.mar +%%DATADIR%%/charmaps/CP285.mar +%%DATADIR%%/charmaps/CP290.mar +%%DATADIR%%/charmaps/CP297.mar +%%DATADIR%%/charmaps/CP367.mar +%%DATADIR%%/charmaps/CP420.mar +%%DATADIR%%/charmaps/CP423.mar +%%DATADIR%%/charmaps/CP424.mar +%%DATADIR%%/charmaps/CP437.mar +%%DATADIR%%/charmaps/CP500.mar +%%DATADIR%%/charmaps/CP737.mar +%%DATADIR%%/charmaps/CP775.mar +%%DATADIR%%/charmaps/CP819.mar +%%DATADIR%%/charmaps/CP850.mar +%%DATADIR%%/charmaps/CP851.mar +%%DATADIR%%/charmaps/CP852.mar +%%DATADIR%%/charmaps/CP855.mar +%%DATADIR%%/charmaps/CP856.mar +%%DATADIR%%/charmaps/CP857.mar +%%DATADIR%%/charmaps/CP860.mar +%%DATADIR%%/charmaps/CP861.mar +%%DATADIR%%/charmaps/CP862.mar +%%DATADIR%%/charmaps/CP863.mar +%%DATADIR%%/charmaps/CP864.mar +%%DATADIR%%/charmaps/CP865.mar +%%DATADIR%%/charmaps/CP866.mar +%%DATADIR%%/charmaps/CP866NAV.mar +%%DATADIR%%/charmaps/CP868.mar +%%DATADIR%%/charmaps/CP869.mar +%%DATADIR%%/charmaps/CP870.mar +%%DATADIR%%/charmaps/CP871.mar +%%DATADIR%%/charmaps/CP874.mar +%%DATADIR%%/charmaps/CP875.mar +%%DATADIR%%/charmaps/CP880.mar +%%DATADIR%%/charmaps/CP891.mar +%%DATADIR%%/charmaps/CP903.mar +%%DATADIR%%/charmaps/CP904.mar +%%DATADIR%%/charmaps/CP905.mar +%%DATADIR%%/charmaps/CP918.mar +%%DATADIR%%/charmaps/CP922.mar +%%DATADIR%%/charmaps/CP932.mar +%%DATADIR%%/charmaps/CP936.mar +%%DATADIR%%/charmaps/CP949.mar +%%DATADIR%%/charmaps/CSA7-1.mar +%%DATADIR%%/charmaps/CSA7-2.mar +%%DATADIR%%/charmaps/CSA_T500-1983.mar +%%DATADIR%%/charmaps/CSA_Z243%2E4-1985-1.mar +%%DATADIR%%/charmaps/CSA_Z243%2E4-1985-2.mar +%%DATADIR%%/charmaps/CSA_Z243%2E4-1985-GR.mar +%%DATADIR%%/charmaps/CSN_369103.mar +%%DATADIR%%/charmaps/CUBA.mar +%%DATADIR%%/charmaps/CWI-2.mar +%%DATADIR%%/charmaps/CWI.mar +%%DATADIR%%/charmaps/CYRILLIC.mar +%%DATADIR%%/charmaps/Cyrillic-Asian.mar +%%DATADIR%%/charmaps/DE.mar +%%DATADIR%%/charmaps/DEC-MCS.mar +%%DATADIR%%/charmaps/DEC.mar +%%DATADIR%%/charmaps/DIN_66003.mar +%%DATADIR%%/charmaps/DK.mar +%%DATADIR%%/charmaps/DS2089.mar +%%DATADIR%%/charmaps/DS_2089.mar +%%DATADIR%%/charmaps/E13B.mar +%%DATADIR%%/charmaps/EBCDIC-AT-DE-A.mar +%%DATADIR%%/charmaps/EBCDIC-AT-DE.mar +%%DATADIR%%/charmaps/EBCDIC-BE.mar +%%DATADIR%%/charmaps/EBCDIC-BR.mar +%%DATADIR%%/charmaps/EBCDIC-CA-FR.mar +%%DATADIR%%/charmaps/EBCDIC-CP-AR1.mar +%%DATADIR%%/charmaps/EBCDIC-CP-AR2.mar +%%DATADIR%%/charmaps/EBCDIC-CP-BE.mar +%%DATADIR%%/charmaps/EBCDIC-CP-CA.mar +%%DATADIR%%/charmaps/EBCDIC-CP-CH.mar +%%DATADIR%%/charmaps/EBCDIC-CP-DK.mar +%%DATADIR%%/charmaps/EBCDIC-CP-ES.mar +%%DATADIR%%/charmaps/EBCDIC-CP-FI.mar +%%DATADIR%%/charmaps/EBCDIC-CP-FR.mar +%%DATADIR%%/charmaps/EBCDIC-CP-GB.mar +%%DATADIR%%/charmaps/EBCDIC-CP-GR.mar +%%DATADIR%%/charmaps/EBCDIC-CP-HE.mar +%%DATADIR%%/charmaps/EBCDIC-CP-IS.mar +%%DATADIR%%/charmaps/EBCDIC-CP-IT.mar +%%DATADIR%%/charmaps/EBCDIC-CP-NL.mar +%%DATADIR%%/charmaps/EBCDIC-CP-NO.mar +%%DATADIR%%/charmaps/EBCDIC-CP-ROECE.mar +%%DATADIR%%/charmaps/EBCDIC-CP-SE.mar +%%DATADIR%%/charmaps/EBCDIC-CP-TR.mar +%%DATADIR%%/charmaps/EBCDIC-CP-US.mar +%%DATADIR%%/charmaps/EBCDIC-CP-WT.mar +%%DATADIR%%/charmaps/EBCDIC-CP-YU.mar +%%DATADIR%%/charmaps/EBCDIC-CYRILLIC.mar +%%DATADIR%%/charmaps/EBCDIC-DK-NO-A.mar +%%DATADIR%%/charmaps/EBCDIC-DK-NO.mar +%%DATADIR%%/charmaps/EBCDIC-ES-A.mar +%%DATADIR%%/charmaps/EBCDIC-ES-S.mar +%%DATADIR%%/charmaps/EBCDIC-ES.mar +%%DATADIR%%/charmaps/EBCDIC-FI-SE-A.mar +%%DATADIR%%/charmaps/EBCDIC-FI-SE.mar +%%DATADIR%%/charmaps/EBCDIC-FR.mar +%%DATADIR%%/charmaps/EBCDIC-GREEK.mar +%%DATADIR%%/charmaps/EBCDIC-INT.mar +%%DATADIR%%/charmaps/EBCDIC-INT1.mar +%%DATADIR%%/charmaps/EBCDIC-IS-FRISS.mar +%%DATADIR%%/charmaps/EBCDIC-IT.mar +%%DATADIR%%/charmaps/EBCDIC-JP-E.mar +%%DATADIR%%/charmaps/EBCDIC-JP-KANA.mar +%%DATADIR%%/charmaps/EBCDIC-PT.mar +%%DATADIR%%/charmaps/EBCDIC-UK.mar +%%DATADIR%%/charmaps/EBCDIC-US.mar +%%DATADIR%%/charmaps/ECMA-114.mar +%%DATADIR%%/charmaps/ECMA-118.mar +%%DATADIR%%/charmaps/ECMA-CYRILLIC.mar +%%DATADIR%%/charmaps/ELOT_928.mar +%%DATADIR%%/charmaps/ES.mar +%%DATADIR%%/charmaps/ES2.mar +%%DATADIR%%/charmaps/EUC-JISX0213.mar +%%DATADIR%%/charmaps/EUC-JP-MS.mar +%%DATADIR%%/charmaps/EUC-JP.mar +%%DATADIR%%/charmaps/EUC-KR.mar +%%DATADIR%%/charmaps/EUC-TW.mar +%%DATADIR%%/charmaps/FI.mar +%%DATADIR%%/charmaps/FR.mar +%%DATADIR%%/charmaps/FRISS.mar +%%DATADIR%%/charmaps/GB.mar +%%DATADIR%%/charmaps/GB18030.mar +%%DATADIR%%/charmaps/GB2312.mar +%%DATADIR%%/charmaps/GBK.mar +%%DATADIR%%/charmaps/GB_1988-80.mar +%%DATADIR%%/charmaps/GEORGIAN-ACADEMY.mar +%%DATADIR%%/charmaps/GEORGIAN-PS.mar +%%DATADIR%%/charmaps/GOST_19768-74.mar +%%DATADIR%%/charmaps/GREEK-CCITT.mar +%%DATADIR%%/charmaps/GREEK.mar +%%DATADIR%%/charmaps/GREEK7-OLD.mar +%%DATADIR%%/charmaps/GREEK7.mar +%%DATADIR%%/charmaps/GREEK8.mar +%%DATADIR%%/charmaps/HEBREW.mar +%%DATADIR%%/charmaps/HP-GREEK8.mar +%%DATADIR%%/charmaps/HP-ROMAN8.mar +%%DATADIR%%/charmaps/HP-ROMAN9.mar +%%DATADIR%%/charmaps/HP-THAI8.mar +%%DATADIR%%/charmaps/HP-TURKISH8.mar +%%DATADIR%%/charmaps/HU.mar +%%DATADIR%%/charmaps/IBM-1047.mar +%%DATADIR%%/charmaps/IBM037.mar +%%DATADIR%%/charmaps/IBM038.mar +%%DATADIR%%/charmaps/IBM1004.mar +%%DATADIR%%/charmaps/IBM1026.mar +%%DATADIR%%/charmaps/IBM1047.mar +%%DATADIR%%/charmaps/IBM1124.mar +%%DATADIR%%/charmaps/IBM1129.mar +%%DATADIR%%/charmaps/IBM1132.mar +%%DATADIR%%/charmaps/IBM1133.mar +%%DATADIR%%/charmaps/IBM1160.mar +%%DATADIR%%/charmaps/IBM1161.mar +%%DATADIR%%/charmaps/IBM1162.mar +%%DATADIR%%/charmaps/IBM1163.mar +%%DATADIR%%/charmaps/IBM1164.mar +%%DATADIR%%/charmaps/IBM256.mar +%%DATADIR%%/charmaps/IBM273.mar +%%DATADIR%%/charmaps/IBM274.mar +%%DATADIR%%/charmaps/IBM275.mar +%%DATADIR%%/charmaps/IBM277.mar +%%DATADIR%%/charmaps/IBM278.mar +%%DATADIR%%/charmaps/IBM280.mar +%%DATADIR%%/charmaps/IBM281.mar +%%DATADIR%%/charmaps/IBM284.mar +%%DATADIR%%/charmaps/IBM285.mar +%%DATADIR%%/charmaps/IBM290.mar +%%DATADIR%%/charmaps/IBM297.mar +%%DATADIR%%/charmaps/IBM367.mar +%%DATADIR%%/charmaps/IBM420.mar +%%DATADIR%%/charmaps/IBM423.mar +%%DATADIR%%/charmaps/IBM424.mar +%%DATADIR%%/charmaps/IBM437.mar +%%DATADIR%%/charmaps/IBM500.mar +%%DATADIR%%/charmaps/IBM819.mar +%%DATADIR%%/charmaps/IBM848.mar +%%DATADIR%%/charmaps/IBM850.mar +%%DATADIR%%/charmaps/IBM851.mar +%%DATADIR%%/charmaps/IBM852.mar +%%DATADIR%%/charmaps/IBM855.mar +%%DATADIR%%/charmaps/IBM856.mar +%%DATADIR%%/charmaps/IBM857.mar +%%DATADIR%%/charmaps/IBM860.mar +%%DATADIR%%/charmaps/IBM861.mar +%%DATADIR%%/charmaps/IBM862.mar +%%DATADIR%%/charmaps/IBM863.mar +%%DATADIR%%/charmaps/IBM864.mar +%%DATADIR%%/charmaps/IBM865.mar +%%DATADIR%%/charmaps/IBM866.mar +%%DATADIR%%/charmaps/IBM866NAV.mar +%%DATADIR%%/charmaps/IBM868.mar +%%DATADIR%%/charmaps/IBM869.mar +%%DATADIR%%/charmaps/IBM870.mar +%%DATADIR%%/charmaps/IBM871.mar +%%DATADIR%%/charmaps/IBM874.mar +%%DATADIR%%/charmaps/IBM875.mar +%%DATADIR%%/charmaps/IBM880.mar +%%DATADIR%%/charmaps/IBM891.mar +%%DATADIR%%/charmaps/IBM903.mar +%%DATADIR%%/charmaps/IBM904.mar +%%DATADIR%%/charmaps/IBM905.mar +%%DATADIR%%/charmaps/IBM918.mar +%%DATADIR%%/charmaps/IBM922.mar +%%DATADIR%%/charmaps/IEC_P27-1.mar +%%DATADIR%%/charmaps/INIS-8.mar +%%DATADIR%%/charmaps/INIS-CYRILLIC.mar +%%DATADIR%%/charmaps/INIS.mar +%%DATADIR%%/charmaps/INVARIANT.mar +%%DATADIR%%/charmaps/IRV.mar +%%DATADIR%%/charmaps/ISIRI-3342.mar +%%DATADIR%%/charmaps/ISO%2FTR_11548-1.mar +%%DATADIR%%/charmaps/ISO-10646%2FUTF-8.mar +%%DATADIR%%/charmaps/ISO-8859-1.mar +%%DATADIR%%/charmaps/ISO-8859-10.mar +%%DATADIR%%/charmaps/ISO-8859-11.mar +%%DATADIR%%/charmaps/ISO-8859-13.mar +%%DATADIR%%/charmaps/ISO-8859-14.mar +%%DATADIR%%/charmaps/ISO-8859-15.mar +%%DATADIR%%/charmaps/ISO-8859-16.mar +%%DATADIR%%/charmaps/ISO-8859-2.mar +%%DATADIR%%/charmaps/ISO-8859-3.mar +%%DATADIR%%/charmaps/ISO-8859-4.mar +%%DATADIR%%/charmaps/ISO-8859-5.mar +%%DATADIR%%/charmaps/ISO-8859-6.mar +%%DATADIR%%/charmaps/ISO-8859-7.mar +%%DATADIR%%/charmaps/ISO-8859-8.mar +%%DATADIR%%/charmaps/ISO-8859-9.mar +%%DATADIR%%/charmaps/ISO-8859-9E.mar +%%DATADIR%%/charmaps/ISO-IR-10.mar +%%DATADIR%%/charmaps/ISO-IR-100.mar +%%DATADIR%%/charmaps/ISO-IR-101.mar +%%DATADIR%%/charmaps/ISO-IR-102.mar +%%DATADIR%%/charmaps/ISO-IR-103.mar +%%DATADIR%%/charmaps/ISO-IR-109.mar +%%DATADIR%%/charmaps/ISO-IR-11.mar +%%DATADIR%%/charmaps/ISO-IR-110.mar +%%DATADIR%%/charmaps/ISO-IR-111.mar +%%DATADIR%%/charmaps/ISO-IR-121.mar +%%DATADIR%%/charmaps/ISO-IR-122.mar +%%DATADIR%%/charmaps/ISO-IR-123.mar +%%DATADIR%%/charmaps/ISO-IR-126.mar +%%DATADIR%%/charmaps/ISO-IR-127.mar +%%DATADIR%%/charmaps/ISO-IR-128.mar +%%DATADIR%%/charmaps/ISO-IR-138.mar +%%DATADIR%%/charmaps/ISO-IR-139.mar +%%DATADIR%%/charmaps/ISO-IR-14.mar +%%DATADIR%%/charmaps/ISO-IR-141.mar +%%DATADIR%%/charmaps/ISO-IR-142.mar +%%DATADIR%%/charmaps/ISO-IR-143.mar +%%DATADIR%%/charmaps/ISO-IR-144.mar +%%DATADIR%%/charmaps/ISO-IR-146.mar +%%DATADIR%%/charmaps/ISO-IR-147.mar +%%DATADIR%%/charmaps/ISO-IR-148.mar +%%DATADIR%%/charmaps/ISO-IR-15.mar +%%DATADIR%%/charmaps/ISO-IR-150.mar +%%DATADIR%%/charmaps/ISO-IR-151.mar +%%DATADIR%%/charmaps/ISO-IR-152.mar +%%DATADIR%%/charmaps/ISO-IR-153.mar +%%DATADIR%%/charmaps/ISO-IR-154.mar +%%DATADIR%%/charmaps/ISO-IR-155.mar +%%DATADIR%%/charmaps/ISO-IR-156.mar +%%DATADIR%%/charmaps/ISO-IR-157.mar +%%DATADIR%%/charmaps/ISO-IR-158.mar +%%DATADIR%%/charmaps/ISO-IR-16.mar +%%DATADIR%%/charmaps/ISO-IR-166.mar +%%DATADIR%%/charmaps/ISO-IR-17.mar +%%DATADIR%%/charmaps/ISO-IR-170.mar +%%DATADIR%%/charmaps/ISO-IR-179.mar +%%DATADIR%%/charmaps/ISO-IR-18.mar +%%DATADIR%%/charmaps/ISO-IR-19.mar +%%DATADIR%%/charmaps/ISO-IR-197.mar +%%DATADIR%%/charmaps/ISO-IR-2.mar +%%DATADIR%%/charmaps/ISO-IR-209.mar +%%DATADIR%%/charmaps/ISO-IR-21.mar +%%DATADIR%%/charmaps/ISO-IR-226.mar +%%DATADIR%%/charmaps/ISO-IR-25.mar +%%DATADIR%%/charmaps/ISO-IR-27.mar +%%DATADIR%%/charmaps/ISO-IR-37.mar +%%DATADIR%%/charmaps/ISO-IR-4.mar +%%DATADIR%%/charmaps/ISO-IR-47.mar +%%DATADIR%%/charmaps/ISO-IR-49.mar +%%DATADIR%%/charmaps/ISO-IR-50.mar +%%DATADIR%%/charmaps/ISO-IR-51.mar +%%DATADIR%%/charmaps/ISO-IR-54.mar +%%DATADIR%%/charmaps/ISO-IR-55.mar +%%DATADIR%%/charmaps/ISO-IR-57.mar +%%DATADIR%%/charmaps/ISO-IR-6.mar +%%DATADIR%%/charmaps/ISO-IR-60.mar +%%DATADIR%%/charmaps/ISO-IR-61.mar +%%DATADIR%%/charmaps/ISO-IR-69.mar +%%DATADIR%%/charmaps/ISO-IR-70.mar +%%DATADIR%%/charmaps/ISO-IR-8-1.mar +%%DATADIR%%/charmaps/ISO-IR-84.mar +%%DATADIR%%/charmaps/ISO-IR-85.mar +%%DATADIR%%/charmaps/ISO-IR-86.mar +%%DATADIR%%/charmaps/ISO-IR-88.mar +%%DATADIR%%/charmaps/ISO-IR-89.mar +%%DATADIR%%/charmaps/ISO-IR-9-1.mar +%%DATADIR%%/charmaps/ISO-IR-90.mar +%%DATADIR%%/charmaps/ISO-IR-92.mar +%%DATADIR%%/charmaps/ISO-IR-98.mar +%%DATADIR%%/charmaps/ISO-IR-99.mar +%%DATADIR%%/charmaps/ISO646-CA.mar +%%DATADIR%%/charmaps/ISO646-CA2.mar +%%DATADIR%%/charmaps/ISO646-CN.mar +%%DATADIR%%/charmaps/ISO646-CU.mar +%%DATADIR%%/charmaps/ISO646-DE.mar +%%DATADIR%%/charmaps/ISO646-DK.mar +%%DATADIR%%/charmaps/ISO646-ES.mar +%%DATADIR%%/charmaps/ISO646-ES2.mar +%%DATADIR%%/charmaps/ISO646-FI.mar +%%DATADIR%%/charmaps/ISO646-FR.mar +%%DATADIR%%/charmaps/ISO646-FR1.mar +%%DATADIR%%/charmaps/ISO646-GB.mar +%%DATADIR%%/charmaps/ISO646-HU.mar +%%DATADIR%%/charmaps/ISO646-IT.mar +%%DATADIR%%/charmaps/ISO646-JP-OCR-B.mar +%%DATADIR%%/charmaps/ISO646-JP.mar +%%DATADIR%%/charmaps/ISO646-KR.mar +%%DATADIR%%/charmaps/ISO646-NO.mar +%%DATADIR%%/charmaps/ISO646-NO2.mar +%%DATADIR%%/charmaps/ISO646-PT.mar +%%DATADIR%%/charmaps/ISO646-PT2.mar +%%DATADIR%%/charmaps/ISO646-SE.mar +%%DATADIR%%/charmaps/ISO646-SE2.mar +%%DATADIR%%/charmaps/ISO646-US.mar +%%DATADIR%%/charmaps/ISO646-YU.mar +%%DATADIR%%/charmaps/ISO6937.mar +%%DATADIR%%/charmaps/ISO_10367-BOX.mar +%%DATADIR%%/charmaps/ISO_11548-1.mar +%%DATADIR%%/charmaps/ISO_2033-1983.mar +%%DATADIR%%/charmaps/ISO_5427%3A1981.mar +%%DATADIR%%/charmaps/ISO_5427-EXT.mar +%%DATADIR%%/charmaps/ISO_5427.mar +%%DATADIR%%/charmaps/ISO_5428%3A1980.mar +%%DATADIR%%/charmaps/ISO_5428.mar +%%DATADIR%%/charmaps/ISO_646%2EBASIC%3A1983.mar +%%DATADIR%%/charmaps/ISO_646%2EBASIC.mar +%%DATADIR%%/charmaps/ISO_646%2EIRV%3A1983.mar +%%DATADIR%%/charmaps/ISO_646%2EIRV%3A1991.mar +%%DATADIR%%/charmaps/ISO_646%2EIRV.mar +%%DATADIR%%/charmaps/ISO_6937%3A1992.mar +%%DATADIR%%/charmaps/ISO_6937-2%3A1983.mar +%%DATADIR%%/charmaps/ISO_6937-2-25.mar +%%DATADIR%%/charmaps/ISO_6937-2-ADD.mar +%%DATADIR%%/charmaps/ISO_6937.mar +%%DATADIR%%/charmaps/ISO_8859-1%3A1987.mar +%%DATADIR%%/charmaps/ISO_8859-1.mar +%%DATADIR%%/charmaps/ISO_8859-10%3A1992.mar +%%DATADIR%%/charmaps/ISO_8859-10.mar +%%DATADIR%%/charmaps/ISO_8859-15.mar +%%DATADIR%%/charmaps/ISO_8859-16%3A2001.mar +%%DATADIR%%/charmaps/ISO_8859-16.mar +%%DATADIR%%/charmaps/ISO_8859-2%3A1987.mar +%%DATADIR%%/charmaps/ISO_8859-2.mar +%%DATADIR%%/charmaps/ISO_8859-3%3A1988.mar +%%DATADIR%%/charmaps/ISO_8859-3.mar +%%DATADIR%%/charmaps/ISO_8859-4%3A1988.mar +%%DATADIR%%/charmaps/ISO_8859-4.mar +%%DATADIR%%/charmaps/ISO_8859-5%3A1988.mar +%%DATADIR%%/charmaps/ISO_8859-5.mar +%%DATADIR%%/charmaps/ISO_8859-6%3A1987.mar +%%DATADIR%%/charmaps/ISO_8859-6.mar +%%DATADIR%%/charmaps/ISO_8859-7%3A1987.mar +%%DATADIR%%/charmaps/ISO_8859-7%3A2003.mar +%%DATADIR%%/charmaps/ISO_8859-7.mar +%%DATADIR%%/charmaps/ISO_8859-8%3A1988.mar +%%DATADIR%%/charmaps/ISO_8859-8.mar +%%DATADIR%%/charmaps/ISO_8859-9%3A1989.mar +%%DATADIR%%/charmaps/ISO_8859-9.mar +%%DATADIR%%/charmaps/ISO_8859-SUPP.mar +%%DATADIR%%/charmaps/ISO_9036.mar +%%DATADIR%%/charmaps/IT.mar +%%DATADIR%%/charmaps/JIS_C6220-1969-RO.mar +%%DATADIR%%/charmaps/JIS_C6229-1984-B.mar +%%DATADIR%%/charmaps/JIS_X0201.mar +%%DATADIR%%/charmaps/JOHAB.mar +%%DATADIR%%/charmaps/JP-OCR-B.mar +%%DATADIR%%/charmaps/JP.mar +%%DATADIR%%/charmaps/JS.mar +%%DATADIR%%/charmaps/JUS_I%2EB1%2E002.mar +%%DATADIR%%/charmaps/JUS_I%2EB1%2E003-MAC.mar +%%DATADIR%%/charmaps/JUS_I%2EB1%2E003-SERB.mar +%%DATADIR%%/charmaps/KOI-7.mar +%%DATADIR%%/charmaps/KOI-8.mar +%%DATADIR%%/charmaps/KOI8-R.mar +%%DATADIR%%/charmaps/KOI8-RU.mar +%%DATADIR%%/charmaps/KOI8-T.mar +%%DATADIR%%/charmaps/KOI8-U.mar +%%DATADIR%%/charmaps/KSC5636.mar +%%DATADIR%%/charmaps/L1.mar +%%DATADIR%%/charmaps/L10.mar +%%DATADIR%%/charmaps/L2.mar +%%DATADIR%%/charmaps/L3.mar +%%DATADIR%%/charmaps/L4.mar +%%DATADIR%%/charmaps/L5.mar +%%DATADIR%%/charmaps/L6.mar +%%DATADIR%%/charmaps/L7.mar +%%DATADIR%%/charmaps/L8.mar +%%DATADIR%%/charmaps/LAP.mar +%%DATADIR%%/charmaps/LATIN-9.mar +%%DATADIR%%/charmaps/LATIN-GREEK-1.mar +%%DATADIR%%/charmaps/LATIN-GREEK.mar +%%DATADIR%%/charmaps/LATIN-LAP.mar +%%DATADIR%%/charmaps/LATIN1-2-5.mar +%%DATADIR%%/charmaps/LATIN1.mar +%%DATADIR%%/charmaps/LATIN10.mar +%%DATADIR%%/charmaps/LATIN2.mar +%%DATADIR%%/charmaps/LATIN3.mar +%%DATADIR%%/charmaps/LATIN4.mar +%%DATADIR%%/charmaps/LATIN5.mar +%%DATADIR%%/charmaps/LATIN6.mar +%%DATADIR%%/charmaps/LATIN7.mar +%%DATADIR%%/charmaps/LATIN8.mar +%%DATADIR%%/charmaps/MAC-CYRILLIC.mar +%%DATADIR%%/charmaps/MAC-IS.mar +%%DATADIR%%/charmaps/MAC-SAMI.mar +%%DATADIR%%/charmaps/MAC-UK.mar +%%DATADIR%%/charmaps/MAC.mar +%%DATADIR%%/charmaps/MACEDONIAN.mar +%%DATADIR%%/charmaps/MACINTOSH.mar +%%DATADIR%%/charmaps/MIK.mar +%%DATADIR%%/charmaps/MS-ANSI.mar +%%DATADIR%%/charmaps/MS-ARAB.mar +%%DATADIR%%/charmaps/MS-CYRL.mar +%%DATADIR%%/charmaps/MS-EE.mar +%%DATADIR%%/charmaps/MS-GREEK.mar +%%DATADIR%%/charmaps/MS-HEBR.mar +%%DATADIR%%/charmaps/MS-TURK.mar +%%DATADIR%%/charmaps/MS936.mar +%%DATADIR%%/charmaps/MSZ_7795%2E3.mar +%%DATADIR%%/charmaps/NAPLPS.mar +%%DATADIR%%/charmaps/NATS-DANO.mar +%%DATADIR%%/charmaps/NATS-SEFI.mar +%%DATADIR%%/charmaps/NC_NC00-10%3A81.mar +%%DATADIR%%/charmaps/NC_NC00-10.mar +%%DATADIR%%/charmaps/NEXT.mar +%%DATADIR%%/charmaps/NEXTSTEP.mar +%%DATADIR%%/charmaps/NF_Z_62-010.mar +%%DATADIR%%/charmaps/NF_Z_62-010_%281973%29.mar +%%DATADIR%%/charmaps/NO.mar +%%DATADIR%%/charmaps/NO2.mar +%%DATADIR%%/charmaps/NS_4551-1.mar +%%DATADIR%%/charmaps/NS_4551-2.mar +%%DATADIR%%/charmaps/OS2LATIN1.mar +%%DATADIR%%/charmaps/PT.mar +%%DATADIR%%/charmaps/PT154.mar +%%DATADIR%%/charmaps/PT2.mar +%%DATADIR%%/charmaps/R8.mar +%%DATADIR%%/charmaps/R9.mar +%%DATADIR%%/charmaps/REF.mar +%%DATADIR%%/charmaps/RK1048.mar +%%DATADIR%%/charmaps/ROMAN8.mar +%%DATADIR%%/charmaps/ROMAN9.mar +%%DATADIR%%/charmaps/RUSCII.mar +%%DATADIR%%/charmaps/SAMI.mar +%%DATADIR%%/charmaps/SE.mar +%%DATADIR%%/charmaps/SE2.mar +%%DATADIR%%/charmaps/SEN_850200_B.mar +%%DATADIR%%/charmaps/SEN_850200_C.mar +%%DATADIR%%/charmaps/SERBIAN.mar +%%DATADIR%%/charmaps/SHIFT_JIS.mar +%%DATADIR%%/charmaps/SHIFT_JISX0213.mar +%%DATADIR%%/charmaps/SJIS.mar +%%DATADIR%%/charmaps/SS636127.mar +%%DATADIR%%/charmaps/STRK1048-2002.mar +%%DATADIR%%/charmaps/ST_SEV_358-88.mar +%%DATADIR%%/charmaps/T%2E101-G2.mar +%%DATADIR%%/charmaps/T%2E61-7BIT.mar +%%DATADIR%%/charmaps/T%2E61-8BIT.mar +%%DATADIR%%/charmaps/T%2E61.mar +%%DATADIR%%/charmaps/TCVN-5712.mar +%%DATADIR%%/charmaps/TCVN.mar +%%DATADIR%%/charmaps/TCVN5712-1%3A1993.mar +%%DATADIR%%/charmaps/TCVN5712-1.mar +%%DATADIR%%/charmaps/THAI8.mar +%%DATADIR%%/charmaps/TIS-620.mar +%%DATADIR%%/charmaps/TIS620%2E2529-1.mar +%%DATADIR%%/charmaps/TIS620%2E2533-0.mar +%%DATADIR%%/charmaps/TIS620-0.mar +%%DATADIR%%/charmaps/TIS620.mar +%%DATADIR%%/charmaps/TURKISH8.mar +%%DATADIR%%/charmaps/UK.mar +%%DATADIR%%/charmaps/US-ASCII.mar +%%DATADIR%%/charmaps/US.mar +%%DATADIR%%/charmaps/UTF-8.mar +%%DATADIR%%/charmaps/VIDEOTEX-SUPPL.mar +%%DATADIR%%/charmaps/VISCII.mar +%%DATADIR%%/charmaps/WIN-SAMI-2.mar +%%DATADIR%%/charmaps/WINBALTRIM.mar +%%DATADIR%%/charmaps/WINDOWS-31J.mar +%%DATADIR%%/charmaps/WINDOWS-874.mar +%%DATADIR%%/charmaps/WINDOWS-936.mar +%%DATADIR%%/charmaps/WINDOWS-SAMI2.mar +%%DATADIR%%/charmaps/WS2.mar +%%DATADIR%%/charmaps/X0201.mar +%%DATADIR%%/charmaps/YU.mar +%%DATADIR%%/database/ASCII_Hex_Digit.mar +%%DATADIR%%/database/ASCII_Hex_Digit_set.mar +%%DATADIR%%/database/Alphabetic.mar +%%DATADIR%%/database/Alphabetic_set.mar +%%DATADIR%%/database/Bidi_Control.mar +%%DATADIR%%/database/Bidi_Control_set.mar +%%DATADIR%%/database/Default_Ignorable_Code_Point.mar +%%DATADIR%%/database/Default_Ignorable_Code_Point_set.mar +%%DATADIR%%/database/Deprecated.mar +%%DATADIR%%/database/Deprecated_set.mar +%%DATADIR%%/database/Diacritic.mar +%%DATADIR%%/database/Diacritic_set.mar +%%DATADIR%%/database/Extender.mar +%%DATADIR%%/database/Extender_set.mar +%%DATADIR%%/database/Grapheme_Base.mar +%%DATADIR%%/database/Grapheme_Base_set.mar +%%DATADIR%%/database/Grapheme_Extend.mar +%%DATADIR%%/database/Grapheme_Extend_set.mar +%%DATADIR%%/database/Grapheme_Link.mar +%%DATADIR%%/database/Grapheme_Link_set.mar +%%DATADIR%%/database/Hex_Digit.mar +%%DATADIR%%/database/Hex_Digit_set.mar +%%DATADIR%%/database/Hyphen.mar +%%DATADIR%%/database/Hyphen_set.mar +%%DATADIR%%/database/IDS_Binary_Operator.mar +%%DATADIR%%/database/IDS_Binary_Operator_set.mar +%%DATADIR%%/database/IDS_Trinary_Operator.mar +%%DATADIR%%/database/IDS_Trinary_Operator_set.mar +%%DATADIR%%/database/ID_Continue.mar +%%DATADIR%%/database/ID_Continue_set.mar +%%DATADIR%%/database/ID_Start.mar +%%DATADIR%%/database/ID_Start_set.mar +%%DATADIR%%/database/Ideographic.mar +%%DATADIR%%/database/Ideographic_set.mar +%%DATADIR%%/database/Join_Control.mar +%%DATADIR%%/database/Join_Control_set.mar +%%DATADIR%%/database/Logical_Order_Exception.mar +%%DATADIR%%/database/Logical_Order_Exception_set.mar +%%DATADIR%%/database/Lowercase.mar +%%DATADIR%%/database/Lowercase_set.mar +%%DATADIR%%/database/Math.mar +%%DATADIR%%/database/Math_set.mar +%%DATADIR%%/database/Noncharacter_Code_Point.mar +%%DATADIR%%/database/Noncharacter_Code_Point_set.mar +%%DATADIR%%/database/Other_Alphabetic.mar +%%DATADIR%%/database/Other_Alphabetic_set.mar +%%DATADIR%%/database/Other_Default_Ignorable_Code_Point.mar +%%DATADIR%%/database/Other_Default_Ignorable_Code_Point_set.mar +%%DATADIR%%/database/Other_Grapheme_Extend.mar +%%DATADIR%%/database/Other_Grapheme_Extend_set.mar +%%DATADIR%%/database/Other_Lowercase.mar +%%DATADIR%%/database/Other_Lowercase_set.mar +%%DATADIR%%/database/Other_Math.mar +%%DATADIR%%/database/Other_Math_set.mar +%%DATADIR%%/database/Other_Uppercase.mar +%%DATADIR%%/database/Other_Uppercase_set.mar +%%DATADIR%%/database/Quotation_Mark.mar +%%DATADIR%%/database/Quotation_Mark_set.mar +%%DATADIR%%/database/Radical.mar +%%DATADIR%%/database/Radical_set.mar +%%DATADIR%%/database/Soft_Dotted.mar +%%DATADIR%%/database/Soft_Dotted_set.mar +%%DATADIR%%/database/Terminal_Punctuation.mar +%%DATADIR%%/database/Terminal_Punctuation_set.mar +%%DATADIR%%/database/Unified_Ideograph.mar +%%DATADIR%%/database/Unified_Ideograph_set.mar +%%DATADIR%%/database/Uppercase.mar +%%DATADIR%%/database/Uppercase_set.mar +%%DATADIR%%/database/White_Space.mar +%%DATADIR%%/database/White_Space_set.mar *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Tue Jun 18 10:12:55 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0775315B4873; Tue, 18 Jun 2019 10:12:55 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9E97C6D72D; Tue, 18 Jun 2019 10:12:54 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6C7D3BCB7; Tue, 18 Jun 2019 10:12:54 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IACs9w048764; Tue, 18 Jun 2019 10:12:54 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IACsG3048760; Tue, 18 Jun 2019 10:12:54 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906181012.x5IACsG3048760@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 10:12:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504471 - head/www/firefox X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/www/firefox X-SVN-Commit-Revision: 504471 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9E97C6D72D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 10:12:55 -0000 Author: jbeich Date: Tue Jun 18 10:12:53 2019 New Revision: 504471 URL: https://svnweb.freebsd.org/changeset/ports/504471 Log: www/firefox: update to 67.0.3 Changes: https://www.mozilla.org/firefox/67.0.3/releasenotes/ PR: 236651 Modified: head/www/firefox/Makefile (contents, props changed) head/www/firefox/distinfo (contents, props changed) Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Tue Jun 18 09:05:52 2019 (r504470) +++ head/www/firefox/Makefile Tue Jun 18 10:12:53 2019 (r504471) @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 67.0.2 -PORTREVISION= 2 +DISTVERSION= 67.0.3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org Modified: head/www/firefox/distinfo ============================================================================== --- head/www/firefox/distinfo Tue Jun 18 09:05:52 2019 (r504470) +++ head/www/firefox/distinfo Tue Jun 18 10:12:53 2019 (r504471) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560068206 -SHA256 (firefox-67.0.2.source.tar.xz) = 6a0dd9a838c9532b143bb0322f73d03afd272f6afba92af5be5845061f0deb47 -SIZE (firefox-67.0.2.source.tar.xz) = 283090748 +TIMESTAMP = 1560836862 +SHA256 (firefox-67.0.3.source.tar.xz) = b5f8c82910335c26f9a82d6ecd49a01800596026422c6fb6bd941fda900e5f2f +SIZE (firefox-67.0.3.source.tar.xz) = 285477708 From owner-svn-ports-all@freebsd.org Tue Jun 18 10:13:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6A02B15B48A1; Tue, 18 Jun 2019 10:13:08 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0F2866D7FD; Tue, 18 Jun 2019 10:13:08 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E0EB6BCB9; Tue, 18 Jun 2019 10:13:07 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IAD7Es048914; Tue, 18 Jun 2019 10:13:07 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IAD7fS048912; Tue, 18 Jun 2019 10:13:07 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906181013.x5IAD7fS048912@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 10:13:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504472 - head/www/firefox-esr X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/www/firefox-esr X-SVN-Commit-Revision: 504472 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0F2866D7FD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 10:13:08 -0000 Author: jbeich Date: Tue Jun 18 10:13:07 2019 New Revision: 504472 URL: https://svnweb.freebsd.org/changeset/ports/504472 Log: www/firefox-esr: update to 60.7.1 Changes: https://www.mozilla.org/firefox/60.7.1/releasenotes/ Modified: head/www/firefox-esr/Makefile (contents, props changed) head/www/firefox-esr/distinfo (contents, props changed) Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Tue Jun 18 10:12:53 2019 (r504471) +++ head/www/firefox-esr/Makefile Tue Jun 18 10:13:07 2019 (r504472) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 60.7.0 -PORTREVISION= 2 +DISTVERSION= 60.7.1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: head/www/firefox-esr/distinfo ============================================================================== --- head/www/firefox-esr/distinfo Tue Jun 18 10:12:53 2019 (r504471) +++ head/www/firefox-esr/distinfo Tue Jun 18 10:13:07 2019 (r504472) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557861234 -SHA256 (firefox-60.7.0esr.source.tar.xz) = 0a5f0c1d8d1e9443d85083d37fec32e5cc15c1001ea992d49745490065b4a023 -SIZE (firefox-60.7.0esr.source.tar.xz) = 268497160 +TIMESTAMP = 1560837244 +SHA256 (firefox-60.7.1esr.source.tar.xz) = 3d118be1559720e40172cc3cd2605c9c35b504ac777f690a19d9f5279ce05c83 +SIZE (firefox-60.7.1esr.source.tar.xz) = 267808428 From owner-svn-ports-all@freebsd.org Tue Jun 18 10:13:34 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E4D2315B48DF; Tue, 18 Jun 2019 10:13:33 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 83F516D8D9; Tue, 18 Jun 2019 10:13:33 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5DC1CBCBA; Tue, 18 Jun 2019 10:13:33 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IADXpk049058; Tue, 18 Jun 2019 10:13:33 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IADW8K049056; Tue, 18 Jun 2019 10:13:32 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906181013.x5IADW8K049056@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 10:13:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504473 - branches/2019Q2/www/firefox X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2019Q2/www/firefox X-SVN-Commit-Revision: 504473 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 83F516D8D9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 10:13:34 -0000 Author: jbeich Date: Tue Jun 18 10:13:32 2019 New Revision: 504473 URL: https://svnweb.freebsd.org/changeset/ports/504473 Log: MFH: r504471 www/firefox: update to 67.0.3 Changes: https://www.mozilla.org/firefox/67.0.3/releasenotes/ PR: 236651 Approved by: ports-secteam blanket Modified: branches/2019Q2/www/firefox/Makefile branches/2019Q2/www/firefox/distinfo Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/www/firefox/Makefile ============================================================================== --- branches/2019Q2/www/firefox/Makefile Tue Jun 18 10:13:07 2019 (r504472) +++ branches/2019Q2/www/firefox/Makefile Tue Jun 18 10:13:32 2019 (r504473) @@ -2,12 +2,11 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 67.0.2 -PORTREVISION= 2 +DISTVERSION= 67.0.3 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org Modified: branches/2019Q2/www/firefox/distinfo ============================================================================== --- branches/2019Q2/www/firefox/distinfo Tue Jun 18 10:13:07 2019 (r504472) +++ branches/2019Q2/www/firefox/distinfo Tue Jun 18 10:13:32 2019 (r504473) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560068206 -SHA256 (firefox-67.0.2.source.tar.xz) = 6a0dd9a838c9532b143bb0322f73d03afd272f6afba92af5be5845061f0deb47 -SIZE (firefox-67.0.2.source.tar.xz) = 283090748 +TIMESTAMP = 1560836862 +SHA256 (firefox-67.0.3.source.tar.xz) = b5f8c82910335c26f9a82d6ecd49a01800596026422c6fb6bd941fda900e5f2f +SIZE (firefox-67.0.3.source.tar.xz) = 285477708 From owner-svn-ports-all@freebsd.org Tue Jun 18 10:14:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14B0915B497C; Tue, 18 Jun 2019 10:14:10 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AB98D6D9E4; Tue, 18 Jun 2019 10:14:09 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 870F2BCBC; Tue, 18 Jun 2019 10:14:09 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IAE9KH049221; Tue, 18 Jun 2019 10:14:09 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IAE95F049219; Tue, 18 Jun 2019 10:14:09 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906181014.x5IAE95F049219@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 18 Jun 2019 10:14:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504474 - branches/2019Q2/www/firefox-esr X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2019Q2/www/firefox-esr X-SVN-Commit-Revision: 504474 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AB98D6D9E4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 10:14:10 -0000 Author: jbeich Date: Tue Jun 18 10:14:08 2019 New Revision: 504474 URL: https://svnweb.freebsd.org/changeset/ports/504474 Log: MFH: r504472 www/firefox-esr: update to 60.7.1 Changes: https://www.mozilla.org/firefox/60.7.1/releasenotes/ Approved by: ports-secteam blanket Modified: branches/2019Q2/www/firefox-esr/Makefile branches/2019Q2/www/firefox-esr/distinfo Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/www/firefox-esr/Makefile ============================================================================== --- branches/2019Q2/www/firefox-esr/Makefile Tue Jun 18 10:13:32 2019 (r504473) +++ branches/2019Q2/www/firefox-esr/Makefile Tue Jun 18 10:14:08 2019 (r504474) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 60.7.0 -PORTREVISION= 1 +DISTVERSION= 60.7.1 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2019Q2/www/firefox-esr/distinfo ============================================================================== --- branches/2019Q2/www/firefox-esr/distinfo Tue Jun 18 10:13:32 2019 (r504473) +++ branches/2019Q2/www/firefox-esr/distinfo Tue Jun 18 10:14:08 2019 (r504474) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557861234 -SHA256 (firefox-60.7.0esr.source.tar.xz) = 0a5f0c1d8d1e9443d85083d37fec32e5cc15c1001ea992d49745490065b4a023 -SIZE (firefox-60.7.0esr.source.tar.xz) = 268497160 +TIMESTAMP = 1560837244 +SHA256 (firefox-60.7.1esr.source.tar.xz) = 3d118be1559720e40172cc3cd2605c9c35b504ac777f690a19d9f5279ce05c83 +SIZE (firefox-60.7.1esr.source.tar.xz) = 267808428 From owner-svn-ports-all@freebsd.org Tue Jun 18 10:15:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1F7C415B4A06; Tue, 18 Jun 2019 10:15:51 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B3A9B6DAE2; Tue, 18 Jun 2019 10:15:50 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9F4A7BCBD; Tue, 18 Jun 2019 10:15:50 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IAFo5w049387; Tue, 18 Jun 2019 10:15:50 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IAFoqp049386; Tue, 18 Jun 2019 10:15:50 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906181015.x5IAFoqp049386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Tue, 18 Jun 2019 10:15:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504475 - head/converters/osm2pgsql X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/converters/osm2pgsql X-SVN-Commit-Revision: 504475 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B3A9B6DAE2 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 10:15:51 -0000 Author: linimon Date: Tue Jun 18 10:15:50 2019 New Revision: 504475 URL: https://svnweb.freebsd.org/changeset/ports/504475 Log: Fix build on GCC-based systems by adding compiler:c++11-lang to USES: fails to compile: node-ram-cache.hpp: cstdint: No such file or directory Approved by: portmgr (tier-2 blanket) Modified: head/converters/osm2pgsql/Makefile Modified: head/converters/osm2pgsql/Makefile ============================================================================== --- head/converters/osm2pgsql/Makefile Tue Jun 18 10:14:08 2019 (r504474) +++ head/converters/osm2pgsql/Makefile Tue Jun 18 10:15:50 2019 (r504475) @@ -16,12 +16,10 @@ LIB_DEPENDS= libproj.so:graphics/proj \ libboost_system.so:devel/boost-libs \ libexpat.so:textproc/expat2 -BROKEN_powerpc64= fails to compile: node-ram-cache.hpp: cstdint: No such file or directory - USE_GITHUB= yes GH_ACCOUNT= openstreetmap -USES= cmake lua:53 pgsql +USES= cmake compiler:c++11-lang lua:53 pgsql PLIST_FILES= bin/osm2pgsql \ man/man1/osm2pgsql.1.gz From owner-svn-ports-all@freebsd.org Tue Jun 18 10:26:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8020415B4F7A; Tue, 18 Jun 2019 10:26:19 +0000 (UTC) (envelope-from tijl@freebsd.org) Received: from mailrelay116.isp.belgacom.be (mailrelay116.isp.belgacom.be [195.238.20.143]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "relay.skynet.be", Issuer "GlobalSign Organization Validation CA - SHA256 - G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 417B46E160; Tue, 18 Jun 2019 10:26:17 +0000 (UTC) (envelope-from tijl@freebsd.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2AbAABjuQhd/1H1sVtmGwEBAQEDAQE?= =?us-ascii?q?BBwMBAQGBUQYBAQELAYIQWRFRASASFBSEFogcX4l8AQGCDDUBh2yCHo4kFIF?= =?us-ascii?q?nCQEBAgEBAQEBKwwBAYRAAoJPJDQJDgEDAQEFAQEBAQRtHAyFSwEFIzMjEAs?= =?us-ascii?q?OBgQCAgUhAgIPSAYBEoMjgg4LqQ6BMYQyAQsBhF+BCgaBDCgBi3SBf4QjPoQ?= =?us-ascii?q?sCw2DCoJYBIwenUIJghKGSIx/J5c0hA2JEIckkTs4gVhNMAg7gmyLE4VBPQM?= =?us-ascii?q?wjSeCUAEB?= X-IPAS-Result: =?us-ascii?q?A2AbAABjuQhd/1H1sVtmGwEBAQEDAQEBBwMBAQGBUQYBA?= =?us-ascii?q?QELAYIQWRFRASASFBSEFogcX4l8AQGCDDUBh2yCHo4kFIFnCQEBAgEBAQEBK?= =?us-ascii?q?wwBAYRAAoJPJDQJDgEDAQEFAQEBAQRtHAyFSwEFIzMjEAsOBgQCAgUhAgIPS?= =?us-ascii?q?AYBEoMjgg4LqQ6BMYQyAQsBhF+BCgaBDCgBi3SBf4QjPoQsCw2DCoJYBIwen?= =?us-ascii?q?UIJghKGSIx/J5c0hA2JEIckkTs4gVhNMAg7gmyLE4VBPQMwjSeCUAEB?= Received: from 81.245-177-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.177.245.81]) by relay.skynet.be with ESMTP; 18 Jun 2019 12:25:07 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.15.2/8.15.2) with ESMTP id x5IAP44K065350; Tue, 18 Jun 2019 12:25:06 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Date: Tue, 18 Jun 2019 12:25:04 +0200 From: =?UTF-8?B?VMSzbA==?= Coosemans To: Mathieu Arnold , bapt@FreeBSD.org Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r503385 - head/Mk/Scripts Message-ID: <20190618122504.791b3fcd@kalimero.tijl.coosemans.org> In-Reply-To: <20190615170158.489616a4@kalimero.tijl.coosemans.org> References: <201906031257.x53Cvi9P092541@repo.freebsd.org> <20190615170158.489616a4@kalimero.tijl.coosemans.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 417B46E160 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.965,0]; ASN(0.00)[asn:5432, ipnet:195.238.0.0/19, country:BE] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 10:26:19 -0000 On Sat, 15 Jun 2019 17:01:58 +0200 T=C4=B3l Coosemans wrote: > On Mon, 3 Jun 2019 12:57:44 +0000 (UTC) Mathieu Arnold > wrote: >> Author: mat >> Date: Mon Jun 3 12:57:44 2019 >> New Revision: 503385 >> URL: https://svnweb.freebsd.org/changeset/ports/503385 >>=20 >> Log: >> Use UCL for pkg-message >> =20 >> Remain backward compatible but use ucl for the pkg-messages, which all= ows to: >> - append messages one after the other >> - only print message on delete, install, upgrade from a version to ano= ther >> =20 >> If pkg-message starts with a [ we consider it should be a valid ucl fi= le >> =20 >> The format is the following: >> [ >> { message: "Always print" }, >> { message: "package being removed", type: remove }, >> { message: "package being installed", type: install }, >> { message: "package is being upgraded", type: upgrade }, >> { message: "Upgrading from lower than 1.0", maximum_version: "1.0", ty= pe: upgrade }, >> { message: "Upgrading from higher than 1.0", minimum_version: "1.0", t= ype: upgrade }, >> { message: "Upgrading from >1.0 < 3.0", maximum_version: "3.0", minimu= m_version: "1.0", >> ] >> =20 >> Because it is ucl one can use some sugar like: >> [ >> { message =3D <> formatted >> message 'with fancy things' >> EOD >> }, >> } =20 >=20 > Can this be extended to include these fields: > opsys: > osversion: > arch: > options: Or should pkg-message just be created dynamically at package build time in these cases? From owner-svn-ports-all@freebsd.org Tue Jun 18 10:32:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 582AB15B527F; Tue, 18 Jun 2019 10:32:05 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EBB3D6E4F5; Tue, 18 Jun 2019 10:32:04 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from ivaldir.etoilebsd.net (etoilebsd.net [178.32.217.76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: bapt) by smtp.freebsd.org (Postfix) with ESMTPSA id 9B492CC03; Tue, 18 Jun 2019 10:32:04 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: by ivaldir.etoilebsd.net (Postfix, from userid 1001) id A8AB8B4A26; Tue, 18 Jun 2019 12:32:03 +0200 (CEST) Date: Tue, 18 Jun 2019 12:32:03 +0200 From: Baptiste Daroussin To: =?utf-8?Q?T=C4=B3l?= Coosemans Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r503385 - head/Mk/Scripts Message-ID: <20190618103203.n3v4qcghpqe5holn@ivaldir.net> References: <201906031257.x53Cvi9P092541@repo.freebsd.org> <20190615170158.489616a4@kalimero.tijl.coosemans.org> <20190618122504.791b3fcd@kalimero.tijl.coosemans.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="t4jtfgqg4hpovqhl" Content-Disposition: inline In-Reply-To: <20190618122504.791b3fcd@kalimero.tijl.coosemans.org> User-Agent: NeoMutt/20180716 X-Rspamd-Queue-Id: EBB3D6E4F5 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.975,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 10:32:05 -0000 --t4jtfgqg4hpovqhl Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jun 18, 2019 at 12:25:04PM +0200, T=C4=B3l Coosemans wrote: > On Sat, 15 Jun 2019 17:01:58 +0200 T=C4=B3l Coosemans > wrote: > > On Mon, 3 Jun 2019 12:57:44 +0000 (UTC) Mathieu Arnold > > wrote: > >> Author: mat > >> Date: Mon Jun 3 12:57:44 2019 > >> New Revision: 503385 > >> URL: https://svnweb.freebsd.org/changeset/ports/503385 > >>=20 > >> Log: > >> Use UCL for pkg-message > >> =20 > >> Remain backward compatible but use ucl for the pkg-messages, which a= llows to: > >> - append messages one after the other > >> - only print message on delete, install, upgrade from a version to a= nother > >> =20 > >> If pkg-message starts with a [ we consider it should be a valid ucl = file > >> =20 > >> The format is the following: > >> [ > >> { message: "Always print" }, > >> { message: "package being removed", type: remove }, > >> { message: "package being installed", type: install }, > >> { message: "package is being upgraded", type: upgrade }, > >> { message: "Upgrading from lower than 1.0", maximum_version: "1.0", = type: upgrade }, > >> { message: "Upgrading from higher than 1.0", minimum_version: "1.0",= type: upgrade }, > >> { message: "Upgrading from >1.0 < 3.0", maximum_version: "3.0", mini= mum_version: "1.0", > >> ] > >> =20 > >> Because it is ucl one can use some sugar like: > >> [ > >> { message =3D < >> formatted > >> message 'with fancy things' > >> EOD > >> }, > >> } =20 > >=20 > > Can this be extended to include these fields: > > opsys: > > osversion: > > arch: > > options: >=20 > Or should pkg-message just be created dynamically at package build time > in these cases? For now it is pretty simple on how it works. Yes we could imagine those extension easily, I will see what I can do. but = in the mean time one can create pkg-message based on the option. The only non easy one for me to add is the one based on options. Best regards, Bapt --t4jtfgqg4hpovqhl Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEgOTj3suS2urGXVU3Y4mL3PG3PloFAl0IvaAACgkQY4mL3PG3 Plpcxw//Uii8tmc/epIXf0+16JgNP0THRqJW0M4zWEc0KJQVlKHJ3t18vOWszrAK +qyu/391rKl85L3sXMABCOkwAq2d5hFo1v3FNn7HPjOQK0oUVmKC3ExVHYKVyhBq kbvfXpZXV7fnWpZ5k54Bh0li0fWJED3JattB9pqoDOUrws7eEe4fCmiBPOjHnQxW 5kkdieFKU1tWFdBWDy92IreAjZhWGz3SPOTxN8RSrDIw3uzswyrDA7tDnBiqnXQf Ql+r6CvXbyczmm17r/de38fnQG/ZE+7D1Mg1F5ktNZMh2TAFnwHScrybXvv5PSS6 FKz7aGMw16Tbj4XqJzQ0u1Z/I4Tc2BNcd0QQv0DRctlJC39p32LE+aJt0TxRidq+ SqmMBsoU7ysIVB5iNImZlEu/QCzAYHR6+YNIJ47nUaQYDyG1P2pUhE99FtkGmpxf vmK8nDlseKRfdXAMlwGFYMfA4w8dlOWrpfOkjUOjEfdwn0D0ZJG5V3aypPZJrDXn X4vq+8xPZJeF7ElX7NuvgfZ9/9qHdsBFN6ZPpjBkiCM9TMH7lbr7mwLfaBrG1baP bIdhUHpjcN5IkSMOk+95GMnF64+YnTfMY75/GP3xgiqjtyX5qSeyWSWxJMLaBESU Xo5T4pzS7hj/va2k9X26WhAHEW9pILGPxwrvecM2hN5jrhvb3nk= =XETl -----END PGP SIGNATURE----- --t4jtfgqg4hpovqhl-- From owner-svn-ports-all@freebsd.org Tue Jun 18 10:34:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38F6B15B52E9; Tue, 18 Jun 2019 10:34:39 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D32CE6E63E; Tue, 18 Jun 2019 10:34:38 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A629FC01F; Tue, 18 Jun 2019 10:34:38 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IAYcrN059811; Tue, 18 Jun 2019 10:34:38 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IAYbWG059806; Tue, 18 Jun 2019 10:34:37 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906181034.x5IAYbWG059806@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Tue, 18 Jun 2019 10:34:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504476 - in head/www: mattermost-server mattermost-webapp X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: in head/www: mattermost-server mattermost-webapp X-SVN-Commit-Revision: 504476 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D32CE6E63E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.984,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 10:34:39 -0000 Author: joneum Date: Tue Jun 18 10:34:37 2019 New Revision: 504476 URL: https://svnweb.freebsd.org/changeset/ports/504476 Log: Update to 5.12.0 PR: 238000 Reported by: dev@spiessknafl.at Approved by: loic.blot@unix-experience.fr (maintainer) Sponsored by: Netzkommune GmbH Modified: head/www/mattermost-server/Makefile head/www/mattermost-server/distinfo head/www/mattermost-webapp/Makefile head/www/mattermost-webapp/distinfo head/www/mattermost-webapp/pkg-plist Modified: head/www/mattermost-server/Makefile ============================================================================== --- head/www/mattermost-server/Makefile Tue Jun 18 10:15:50 2019 (r504475) +++ head/www/mattermost-server/Makefile Tue Jun 18 10:34:37 2019 (r504476) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mattermost-server -PORTVERSION= 5.10.0 +PORTVERSION= 5.12.0 DISTVERSIONPREFIX= v CATEGORIES= www Modified: head/www/mattermost-server/distinfo ============================================================================== --- head/www/mattermost-server/distinfo Tue Jun 18 10:15:50 2019 (r504475) +++ head/www/mattermost-server/distinfo Tue Jun 18 10:34:37 2019 (r504476) @@ -1,3 +1,3 @@ -TIMESTAMP = 1545771660 -SHA256 (mattermost-mattermost-server-v5.10.0_GH0.tar.gz) = 56f3391ad0c4df2369bc0c8d6ac15907a7bc4c21e8df0ff236285f8202c856a2 -SIZE (mattermost-mattermost-server-v5.10.0_GH0.tar.gz) = 16743454 +TIMESTAMP = 1560593139 +SHA256 (mattermost-mattermost-server-v5.12.0_GH0.tar.gz) = d98cd00948b87b5c41ca61ece36e7f934036b8d51a78057f73e3a56dc7ef3998 +SIZE (mattermost-mattermost-server-v5.12.0_GH0.tar.gz) = 15998564 Modified: head/www/mattermost-webapp/Makefile ============================================================================== --- head/www/mattermost-webapp/Makefile Tue Jun 18 10:15:50 2019 (r504475) +++ head/www/mattermost-webapp/Makefile Tue Jun 18 10:34:37 2019 (r504476) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mattermost-webapp -PORTVERSION= 5.10.0 +PORTVERSION= 5.12.0 DISTVERSIONPREFIX= v CATEGORIES= www MASTER_SITES= https://releases.mattermost.com/${PORTVERSION}/ Modified: head/www/mattermost-webapp/distinfo ============================================================================== --- head/www/mattermost-webapp/distinfo Tue Jun 18 10:15:50 2019 (r504475) +++ head/www/mattermost-webapp/distinfo Tue Jun 18 10:34:37 2019 (r504476) @@ -1,3 +1,3 @@ -TIMESTAMP = 1545771548 -SHA256 (mattermost-5.10.0-linux-amd64.tar.gz) = 210416d6def6424e33b358c2f5808adfbdf15adf3ffba6768d16d7777230b24f -SIZE (mattermost-5.10.0-linux-amd64.tar.gz) = 101564629 +TIMESTAMP = 1560592863 +SHA256 (mattermost-5.12.0-linux-amd64.tar.gz) = ce4b1b182e12ca499ba3e1a115f7635e0747430b741b3e10b4de54b8bcbfdfd7 +SIZE (mattermost-5.12.0-linux-amd64.tar.gz) = 126829207 Modified: head/www/mattermost-webapp/pkg-plist ============================================================================== --- head/www/mattermost-webapp/pkg-plist Tue Jun 18 10:15:50 2019 (r504475) +++ head/www/mattermost-webapp/pkg-plist Tue Jun 18 10:34:37 2019 (r504476) @@ -1,77 +1,77 @@ -%%WWWDIR%%/client/0.971a673e49ba99d4f748.js -%%WWWDIR%%/client/0.971a673e49ba99d4f748.js.map -%%WWWDIR%%/client/1.b70aabe1be69f484abe7.js -%%WWWDIR%%/client/1.b70aabe1be69f484abe7.js.map -%%WWWDIR%%/client/10.400a83cdf201d0d81e74.js -%%WWWDIR%%/client/10.400a83cdf201d0d81e74.js.map -%%WWWDIR%%/client/11.ce533d760926316508c2.js -%%WWWDIR%%/client/11.ce533d760926316508c2.js.map -%%WWWDIR%%/client/12.6adf8e22cb5e4ebc13e9.js -%%WWWDIR%%/client/12.6adf8e22cb5e4ebc13e9.js.map -%%WWWDIR%%/client/13.73e52e3ad14900019f55.js -%%WWWDIR%%/client/13.73e52e3ad14900019f55.js.map -%%WWWDIR%%/client/14.39b768594898dd0196ef.js -%%WWWDIR%%/client/14.39b768594898dd0196ef.js.map -%%WWWDIR%%/client/15.2b7df7465fa20dfbb2db.js -%%WWWDIR%%/client/15.2b7df7465fa20dfbb2db.js.map -%%WWWDIR%%/client/16.1b873c9a167e28349a55.js -%%WWWDIR%%/client/16.1b873c9a167e28349a55.js.map -%%WWWDIR%%/client/17.8369e6d28ced98f6e3ab.js -%%WWWDIR%%/client/17.8369e6d28ced98f6e3ab.js.map -%%WWWDIR%%/client/18.d7c5ba0659a6c046be61.js -%%WWWDIR%%/client/18.d7c5ba0659a6c046be61.js.map -%%WWWDIR%%/client/19.32e73ad200a7597c4912.js -%%WWWDIR%%/client/19.32e73ad200a7597c4912.js.map -%%WWWDIR%%/client/2.fd01924e3c41b4f21163.js -%%WWWDIR%%/client/2.fd01924e3c41b4f21163.js.map -%%WWWDIR%%/client/20.6b62bdf6777235d7ad0b.js -%%WWWDIR%%/client/20.6b62bdf6777235d7ad0b.js.map -%%WWWDIR%%/client/21.7ba90fcbb58e0266caf2.js -%%WWWDIR%%/client/21.7ba90fcbb58e0266caf2.js.map -%%WWWDIR%%/client/22.317ab8bf5b53b1c79a4e.js -%%WWWDIR%%/client/22.317ab8bf5b53b1c79a4e.js.map -%%WWWDIR%%/client/23.10d7ca10b9c026266812.js -%%WWWDIR%%/client/23.10d7ca10b9c026266812.js.map -%%WWWDIR%%/client/24.26255d76b84d3f093dd2.js -%%WWWDIR%%/client/24.26255d76b84d3f093dd2.js.map -%%WWWDIR%%/client/25.c710fc08273236c68404.js -%%WWWDIR%%/client/25.c710fc08273236c68404.js.map -%%WWWDIR%%/client/26.806bfeab4565da1e8e6d.js -%%WWWDIR%%/client/26.806bfeab4565da1e8e6d.js.map -%%WWWDIR%%/client/27.bfa486a432d2c03fcabd.js -%%WWWDIR%%/client/27.bfa486a432d2c03fcabd.js.map -%%WWWDIR%%/client/28.6a165931667a0f3bc733.js -%%WWWDIR%%/client/28.6a165931667a0f3bc733.js.map -%%WWWDIR%%/client/29.8c1e256f9d24b8d0a52a.js -%%WWWDIR%%/client/29.8c1e256f9d24b8d0a52a.js.map -%%WWWDIR%%/client/30.fc8accdc6a62059dabdf.js -%%WWWDIR%%/client/30.fc8accdc6a62059dabdf.js.map -%%WWWDIR%%/client/31.548f8b24596f228f6eb3.js -%%WWWDIR%%/client/31.548f8b24596f228f6eb3.js.map -%%WWWDIR%%/client/32.2f42c401533ae1b93d6d.js -%%WWWDIR%%/client/32.2f42c401533ae1b93d6d.js.map -%%WWWDIR%%/client/33.63db1efa6f081775ab75.js -%%WWWDIR%%/client/33.63db1efa6f081775ab75.js.map -%%WWWDIR%%/client/34.cd5eacf15fde4001c2e9.js -%%WWWDIR%%/client/34.cd5eacf15fde4001c2e9.js.map -%%WWWDIR%%/client/35.5546d572b666d8d61600.js -%%WWWDIR%%/client/35.5546d572b666d8d61600.js.map -%%WWWDIR%%/client/4.9060600fc9374fd6712e.js -%%WWWDIR%%/client/4.9060600fc9374fd6712e.js.map +%%WWWDIR%%/client/0.ffe0652b4502a7414fe4.js +%%WWWDIR%%/client/0.ffe0652b4502a7414fe4.js.map +%%WWWDIR%%/client/1.62b2710f4499d34a847d.js +%%WWWDIR%%/client/1.62b2710f4499d34a847d.js.map +%%WWWDIR%%/client/10.870b24262bfd39a702da.js +%%WWWDIR%%/client/10.870b24262bfd39a702da.js.map +%%WWWDIR%%/client/11.e54d7c25f9ffe31d0dda.js +%%WWWDIR%%/client/11.e54d7c25f9ffe31d0dda.js.map +%%WWWDIR%%/client/12.b537ece182ffe026d57a.js +%%WWWDIR%%/client/12.b537ece182ffe026d57a.js.map +%%WWWDIR%%/client/13.7c8762ed1551ff13a761.js +%%WWWDIR%%/client/13.7c8762ed1551ff13a761.js.map +%%WWWDIR%%/client/14.46e87ba4d90428c0fb31.js +%%WWWDIR%%/client/14.46e87ba4d90428c0fb31.js.map +%%WWWDIR%%/client/15.6d361885470f8c744865.js +%%WWWDIR%%/client/15.6d361885470f8c744865.js.map +%%WWWDIR%%/client/16.31e7e6e8e96d93cfb743.js +%%WWWDIR%%/client/16.31e7e6e8e96d93cfb743.js.map +%%WWWDIR%%/client/17.510578400f767d30bfb0.js +%%WWWDIR%%/client/17.510578400f767d30bfb0.js.map +%%WWWDIR%%/client/18.6df7dfd996f8e5545bb4.js +%%WWWDIR%%/client/18.6df7dfd996f8e5545bb4.js.map +%%WWWDIR%%/client/19.5654b3dae6177e473da0.js +%%WWWDIR%%/client/19.5654b3dae6177e473da0.js.map +%%WWWDIR%%/client/2.28a33ee53ee6610f8727.js +%%WWWDIR%%/client/2.28a33ee53ee6610f8727.js.map +%%WWWDIR%%/client/20.0c8061b73b79858b24cb.js +%%WWWDIR%%/client/20.0c8061b73b79858b24cb.js.map +%%WWWDIR%%/client/21.9af0a808753fa1a85842.js +%%WWWDIR%%/client/21.9af0a808753fa1a85842.js.map +%%WWWDIR%%/client/22.8a75d40a99382ad3f244.js +%%WWWDIR%%/client/22.8a75d40a99382ad3f244.js.map +%%WWWDIR%%/client/23.65d46b73057a92634ab5.js +%%WWWDIR%%/client/23.65d46b73057a92634ab5.js.map +%%WWWDIR%%/client/24.7d77315433701ba00ebb.js +%%WWWDIR%%/client/24.7d77315433701ba00ebb.js.map +%%WWWDIR%%/client/25.fa811ebe57eeb9435f36.js +%%WWWDIR%%/client/25.fa811ebe57eeb9435f36.js.map +%%WWWDIR%%/client/26.62089d8a91a408638098.js +%%WWWDIR%%/client/26.62089d8a91a408638098.js.map +%%WWWDIR%%/client/27.f606687f8c7a0e72791e.js +%%WWWDIR%%/client/27.f606687f8c7a0e72791e.js.map +%%WWWDIR%%/client/28.7db4763363c022575354.js +%%WWWDIR%%/client/28.7db4763363c022575354.js.map +%%WWWDIR%%/client/29.d9f0e24f7d8fc053bafc.js +%%WWWDIR%%/client/29.d9f0e24f7d8fc053bafc.js.map +%%WWWDIR%%/client/30.f0cc2af79693c428407a.js +%%WWWDIR%%/client/30.f0cc2af79693c428407a.js.map +%%WWWDIR%%/client/31.d894757750dfc035da2f.js +%%WWWDIR%%/client/31.d894757750dfc035da2f.js.map +%%WWWDIR%%/client/32.ce238c11d05d6e11e216.js +%%WWWDIR%%/client/32.ce238c11d05d6e11e216.js.map +%%WWWDIR%%/client/33.0bf9ea84ac02dc14e65b.js +%%WWWDIR%%/client/33.0bf9ea84ac02dc14e65b.js.map +%%WWWDIR%%/client/34.f6f0496832c6aca93d12.js +%%WWWDIR%%/client/34.f6f0496832c6aca93d12.js.map +%%WWWDIR%%/client/35.492827d71d599ed97737.js +%%WWWDIR%%/client/35.492827d71d599ed97737.js.map %%WWWDIR%%/client/4.aa07f589b8b4b537cd5a.css %%WWWDIR%%/client/4.aa07f589b8b4b537cd5a.css.map -%%WWWDIR%%/client/5.4382dc491d4a3e0a471d.css -%%WWWDIR%%/client/5.4382dc491d4a3e0a471d.css.map -%%WWWDIR%%/client/5.8a3e3866035f7488ad83.js -%%WWWDIR%%/client/5.8a3e3866035f7488ad83.js.map -%%WWWDIR%%/client/6.efe84d947d8a03b210a5.js -%%WWWDIR%%/client/6.efe84d947d8a03b210a5.js.map -%%WWWDIR%%/client/7.62ae4520329bd6d30350.js -%%WWWDIR%%/client/7.62ae4520329bd6d30350.js.map -%%WWWDIR%%/client/8.6c3bad1d959752130bcb.js -%%WWWDIR%%/client/8.6c3bad1d959752130bcb.js.map -%%WWWDIR%%/client/9.602bf55c9e3601db778c.js -%%WWWDIR%%/client/9.602bf55c9e3601db778c.js.map +%%WWWDIR%%/client/4.c7a39dc30389e2409633.js +%%WWWDIR%%/client/4.c7a39dc30389e2409633.js.map +%%WWWDIR%%/client/5.25fa8218bdc69d20e096.js +%%WWWDIR%%/client/5.25fa8218bdc69d20e096.js.map +%%WWWDIR%%/client/5.847eca9c096af3e7be01.css +%%WWWDIR%%/client/5.847eca9c096af3e7be01.css.map +%%WWWDIR%%/client/6.fe9f40cc259c212ca096.js +%%WWWDIR%%/client/6.fe9f40cc259c212ca096.js.map +%%WWWDIR%%/client/7.1c6f23c6794bb455c419.js +%%WWWDIR%%/client/7.1c6f23c6794bb455c419.js.map +%%WWWDIR%%/client/8.6450db29940fb1731a5e.js +%%WWWDIR%%/client/8.6450db29940fb1731a5e.js.map +%%WWWDIR%%/client/9.2e9468e5bb8b1755748d.js +%%WWWDIR%%/client/9.2e9468e5bb8b1755748d.js.map %%WWWDIR%%/client/emoji/0023-fe0f-20e3.png %%WWWDIR%%/client/emoji/002a-fe0f-20e3.png %%WWWDIR%%/client/emoji/0030-fe0f-20e3.png @@ -2314,6 +2314,7 @@ %%WWWDIR%%/client/files/b570a3ed3711134624ba9e1b4a62e64b.png %%WWWDIR%%/client/files/b583d1f1222c9560bb72a688d5f081c7.woff2 %%WWWDIR%%/client/files/b91d0c9cfeeece180e10cbfd2349ef36.svg +%%WWWDIR%%/client/files/b96d9389dbf73d7c1584084920ee7c03.png %%WWWDIR%%/client/files/baa8d5a222f536918842ca30f49d68aa.png %%WWWDIR%%/client/files/bae342e85347989ffe3407d5d286abc0.woff2 %%WWWDIR%%/client/files/bc88207f15e3ebef713405135d94f372.png @@ -2377,21 +2378,21 @@ %%WWWDIR%%/client/files/fd69f7891f867c2aa14011da92b728ac.jpg %%WWWDIR%%/client/files/fee66e712a8a08eef5805a46892932ad.woff %%WWWDIR%%/client/files/ff75463a7fa586585fd3586e79000d36.woff -%%WWWDIR%%/client/i18n/de.4b310c7688048555d694c5afca7bbbf0.json -%%WWWDIR%%/client/i18n/es.64ca859b5dfeadb826141b5bb2b28ce4.json -%%WWWDIR%%/client/i18n/fr.30d24c7851e4f711e9c6a6ef991999e3.json -%%WWWDIR%%/client/i18n/it.d6212071a9abadd118f2823af80d4157.json -%%WWWDIR%%/client/i18n/ja.02d95c22e289d8d9deabdb5acc9d2b02.json -%%WWWDIR%%/client/i18n/ko.fe45957db5c18f5760991a55ba11d465.json -%%WWWDIR%%/client/i18n/nl.eb54a7a7f61cdfbe3cd27538b7e136b5.json -%%WWWDIR%%/client/i18n/pl.e5d63d4964831ed7fb159a7484ca9023.json -%%WWWDIR%%/client/i18n/pt-BR.3d5c8b97eca19bb59b3ff0f49a7493da.json -%%WWWDIR%%/client/i18n/ro.5112e2240994e47322af8874767c8e91.json -%%WWWDIR%%/client/i18n/ru.008e867242c06cca9ae2c76c6334bd9d.json -%%WWWDIR%%/client/i18n/tr.e1516d7b65ea28f62a4d87eacc1ebc55.json -%%WWWDIR%%/client/i18n/uk.15a258dafc1b2a5a1bcf76f20e1b46f4.json -%%WWWDIR%%/client/i18n/zh-CN.a530f328129353e05b7acba757c82c9e.json -%%WWWDIR%%/client/i18n/zh-TW.5e2bfa8bf9f86afac2cf26979a370b57.json +%%WWWDIR%%/client/i18n/de.a814f47f0188fddc7cf7353d6bc7df54.json +%%WWWDIR%%/client/i18n/es.6d68438f0e799c67a068861018678bc9.json +%%WWWDIR%%/client/i18n/fr.4063c0d83762c70cdc502c1666237405.json +%%WWWDIR%%/client/i18n/it.66dead0129f5958a804167efbb81fb10.json +%%WWWDIR%%/client/i18n/ja.82a45f454c852d0460d54edb8474af76.json +%%WWWDIR%%/client/i18n/ko.b4b64dfd6c5c5ac2ea7dd5c7cffee5cd.json +%%WWWDIR%%/client/i18n/nl.4ccaede5a827071459ebd715d24af5b3.json +%%WWWDIR%%/client/i18n/pl.80cb285c983958ec890a7084e1b2ffc5.json +%%WWWDIR%%/client/i18n/pt-BR.dea216cfc77fa37941c059a05c01ae29.json +%%WWWDIR%%/client/i18n/ro.36b52ba7c1a4c0f8728df9337d818bcd.json +%%WWWDIR%%/client/i18n/ru.7b5fafdfaba89b12cda957606f9e2614.json +%%WWWDIR%%/client/i18n/tr.9d1f31785354971f1005f3efcfbc4b6f.json +%%WWWDIR%%/client/i18n/uk.ce7652bca0aa031ed9681404eb49013e.json +%%WWWDIR%%/client/i18n/zh-CN.941ee39e456d791d2c75a813c2ad45cc.json +%%WWWDIR%%/client/i18n/zh-TW.07f1ca1b6fa5cbde963e3b1d86502ddc.json %%WWWDIR%%/client/icon_120x120.png %%WWWDIR%%/client/icon_144x144.png %%WWWDIR%%/client/icon_152x152.png @@ -2420,10 +2421,10 @@ %%WWWDIR%%/client/images/img_trans.gif %%WWWDIR%%/client/images/logo-email.png %%WWWDIR%%/client/images/warning.png -%%WWWDIR%%/client/main.bbac1af4f005bdbe6df8.js -%%WWWDIR%%/client/main.bbac1af4f005bdbe6df8.js.map -%%WWWDIR%%/client/main.df65983f956e86f92cfe.css -%%WWWDIR%%/client/main.df65983f956e86f92cfe.css.map +%%WWWDIR%%/client/main.884a3efe2e1abd9ba347.js +%%WWWDIR%%/client/main.884a3efe2e1abd9ba347.js.map +%%WWWDIR%%/client/main.bd8862ee317fc1184e08.css +%%WWWDIR%%/client/main.bd8862ee317fc1184e08.css.map %%WWWDIR%%/client/manifest.json %%WWWDIR%%/client/root.html @owner %%MATTERMOSTD_USER%% From owner-svn-ports-all@freebsd.org Tue Jun 18 10:48:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3179215B5679; Tue, 18 Jun 2019 10:48:35 +0000 (UTC) (envelope-from tijl@freebsd.org) Received: from mailrelay116.isp.belgacom.be (mailrelay116.isp.belgacom.be [195.238.20.143]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "relay.skynet.be", Issuer "GlobalSign Organization Validation CA - SHA256 - G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 60B176EBE0; Tue, 18 Jun 2019 10:48:34 +0000 (UTC) (envelope-from tijl@freebsd.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2BVAACywAhd/1H1sVtmHAEBAQQBAQc?= =?us-ascii?q?EAQGBUQcBAQsBghBZEVEBIBIUFIQWiBxfiXwBAYIMNQGHbIIejiQUgWcJAQE?= =?us-ascii?q?CAQEBAQErDAEBhEACgk8kNAkOAQMBAQUBAQEBBG0cDIVKAQEBAQIBIzMjBQs?= =?us-ascii?q?LDgYEAgIFIQICD0gGE4MjgXsTC6kYgTGEMgELAYRfgQoGgQwoAYt0gX+EIz6?= =?us-ascii?q?ELAsNgwqCWASMHp1CCYIShkiMfyeXNIQNkDSROziBWE0wCDuCbIsThUE9AzC?= =?us-ascii?q?NJ4JQAQE?= X-IPAS-Result: =?us-ascii?q?A2BVAACywAhd/1H1sVtmHAEBAQQBAQcEAQGBUQcBAQsBg?= =?us-ascii?q?hBZEVEBIBIUFIQWiBxfiXwBAYIMNQGHbIIejiQUgWcJAQECAQEBAQErDAEBh?= =?us-ascii?q?EACgk8kNAkOAQMBAQUBAQEBBG0cDIVKAQEBAQIBIzMjBQsLDgYEAgIFIQICD?= =?us-ascii?q?0gGE4MjgXsTC6kYgTGEMgELAYRfgQoGgQwoAYt0gX+EIz6ELAsNgwqCWASMH?= =?us-ascii?q?p1CCYIShkiMfyeXNIQNkDSROziBWE0wCDuCbIsThUE9AzCNJ4JQAQE?= Received: from 81.245-177-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.177.245.81]) by relay.skynet.be with ESMTP; 18 Jun 2019 12:48:33 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.15.2/8.15.2) with ESMTP id x5IAmW0n065454; Tue, 18 Jun 2019 12:48:32 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Date: Tue, 18 Jun 2019 12:48:32 +0200 From: =?UTF-8?B?VMSzbA==?= Coosemans To: Baptiste Daroussin Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r503385 - head/Mk/Scripts Message-ID: <20190618124823.753dd639@kalimero.tijl.coosemans.org> In-Reply-To: <20190618103203.n3v4qcghpqe5holn@ivaldir.net> References: <201906031257.x53Cvi9P092541@repo.freebsd.org> <20190615170158.489616a4@kalimero.tijl.coosemans.org> <20190618122504.791b3fcd@kalimero.tijl.coosemans.org> <20190618103203.n3v4qcghpqe5holn@ivaldir.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 60B176EBE0 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 10:48:35 -0000 On Tue, 18 Jun 2019 12:32:03 +0200 Baptiste Daroussin wrote: > On Tue, Jun 18, 2019 at 12:25:04PM +0200, T=C4=B3l Coosemans wrote: >> On Sat, 15 Jun 2019 17:01:58 +0200 T=C4=B3l Coosemans >> wrote: =20 >>> On Mon, 3 Jun 2019 12:57:44 +0000 (UTC) Mathieu Arnold >>> wrote: =20 >>>> Author: mat >>>> Date: Mon Jun 3 12:57:44 2019 >>>> New Revision: 503385 >>>> URL: https://svnweb.freebsd.org/changeset/ports/503385 >>>>=20 >>>> Log: >>>> Use UCL for pkg-message >>>> =20 >>>> Remain backward compatible but use ucl for the pkg-messages, which a= llows to: >>>> - append messages one after the other >>>> - only print message on delete, install, upgrade from a version to a= nother >>>> =20 >>>> If pkg-message starts with a [ we consider it should be a valid ucl = file >>>> =20 >>>> The format is the following: >>>> [ >>>> { message: "Always print" }, >>>> { message: "package being removed", type: remove }, >>>> { message: "package being installed", type: install }, >>>> { message: "package is being upgraded", type: upgrade }, >>>> { message: "Upgrading from lower than 1.0", maximum_version: "1.0", = type: upgrade }, >>>> { message: "Upgrading from higher than 1.0", minimum_version: "1.0",= type: upgrade }, >>>> { message: "Upgrading from >1.0 < 3.0", maximum_version: "3.0", mini= mum_version: "1.0", >>>> ] >>>> =20 >>>> Because it is ucl one can use some sugar like: >>>> [ >>>> { message =3D <>>> formatted >>>> message 'with fancy things' >>>> EOD >>>> }, >>>> } =20 >>>=20 >>> Can this be extended to include these fields: >>> opsys: >>> osversion: >>> arch: >>> options: =20 >>=20 >> Or should pkg-message just be created dynamically at package build time >> in these cases? =20 >=20 > For now it is pretty simple on how it works. >=20 > Yes we could imagine those extension easily, I will see what I can do. > but in the mean time one can create pkg-message based on the option. No need to rush. It's just something that popped into my head when I saw the firefox pkg-message. > The only non easy one for me to add is the one based on options. I'm not familiar with the syntax of UCL, but I imagine it would look similar to the options section in the output of "pkg info -f firefox"? From owner-svn-ports-all@freebsd.org Tue Jun 18 10:51:07 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8220815B5842; Tue, 18 Jun 2019 10:51:07 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1DEEE6EE1B; Tue, 18 Jun 2019 10:51:07 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from ivaldir.etoilebsd.net (etoilebsd.net [178.32.217.76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: bapt) by smtp.freebsd.org (Postfix) with ESMTPSA id C19CECD2A; Tue, 18 Jun 2019 10:51:06 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: by ivaldir.etoilebsd.net (Postfix, from userid 1001) id F361DB4A39; Tue, 18 Jun 2019 12:51:05 +0200 (CEST) Date: Tue, 18 Jun 2019 12:51:05 +0200 From: Baptiste Daroussin To: =?utf-8?Q?T=C4=B3l?= Coosemans Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r503385 - head/Mk/Scripts Message-ID: <20190618105105.tnzwuw75e4biwv6f@ivaldir.net> References: <201906031257.x53Cvi9P092541@repo.freebsd.org> <20190615170158.489616a4@kalimero.tijl.coosemans.org> <20190618122504.791b3fcd@kalimero.tijl.coosemans.org> <20190618103203.n3v4qcghpqe5holn@ivaldir.net> <20190618124823.753dd639@kalimero.tijl.coosemans.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="3ur6xxs5ytioza53" Content-Disposition: inline In-Reply-To: <20190618124823.753dd639@kalimero.tijl.coosemans.org> User-Agent: NeoMutt/20180716 X-Rspamd-Queue-Id: 1DEEE6EE1B X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.99)[-0.987,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 10:51:07 -0000 --3ur6xxs5ytioza53 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jun 18, 2019 at 12:48:32PM +0200, T=C4=B3l Coosemans wrote: > On Tue, 18 Jun 2019 12:32:03 +0200 Baptiste Daroussin > wrote: > > On Tue, Jun 18, 2019 at 12:25:04PM +0200, T=C4=B3l Coosemans wrote: > >> On Sat, 15 Jun 2019 17:01:58 +0200 T=C4=B3l Coosemans > >> wrote: =20 > >>> On Mon, 3 Jun 2019 12:57:44 +0000 (UTC) Mathieu Arnold > >>> wrote: =20 > >>>> Author: mat > >>>> Date: Mon Jun 3 12:57:44 2019 > >>>> New Revision: 503385 > >>>> URL: https://svnweb.freebsd.org/changeset/ports/503385 > >>>>=20 > >>>> Log: > >>>> Use UCL for pkg-message > >>>> =20 > >>>> Remain backward compatible but use ucl for the pkg-messages, which= allows to: > >>>> - append messages one after the other > >>>> - only print message on delete, install, upgrade from a version to= another > >>>> =20 > >>>> If pkg-message starts with a [ we consider it should be a valid uc= l file > >>>> =20 > >>>> The format is the following: > >>>> [ > >>>> { message: "Always print" }, > >>>> { message: "package being removed", type: remove }, > >>>> { message: "package being installed", type: install }, > >>>> { message: "package is being upgraded", type: upgrade }, > >>>> { message: "Upgrading from lower than 1.0", maximum_version: "1.0"= , type: upgrade }, > >>>> { message: "Upgrading from higher than 1.0", minimum_version: "1.0= ", type: upgrade }, > >>>> { message: "Upgrading from >1.0 < 3.0", maximum_version: "3.0", mi= nimum_version: "1.0", > >>>> ] > >>>> =20 > >>>> Because it is ucl one can use some sugar like: > >>>> [ > >>>> { message =3D < >>>> formatted > >>>> message 'with fancy things' > >>>> EOD > >>>> }, > >>>> } =20 > >>>=20 > >>> Can this be extended to include these fields: > >>> opsys: > >>> osversion: > >>> arch: > >>> options: =20 > >>=20 > >> Or should pkg-message just be created dynamically at package build time > >> in these cases? =20 > >=20 > > For now it is pretty simple on how it works. > >=20 > > Yes we could imagine those extension easily, I will see what I can do. > > but in the mean time one can create pkg-message based on the option. >=20 > No need to rush. It's just something that popped into my head when I > saw the firefox pkg-message. >=20 > > The only non easy one for me to add is the one based on options. >=20 > I'm not familiar with the syntax of UCL, but I imagine it would look > similar to the options section in the output of "pkg info -f firefox"? Yes I planned to use firefox as a guinea pig ;) Best regards, Bapt --3ur6xxs5ytioza53 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEgOTj3suS2urGXVU3Y4mL3PG3PloFAl0IwhkACgkQY4mL3PG3 PloUcRAAii2+13sgc/UjZukZM7hbJLukINuZZKegFyjxOX6JYZY0RHPL1Y4JeByT atTOle1P5hdZMzRwfYa9dMZ/IXhiGGe9PjaiTmx4dF9bhENOgW9pPFwAzPZpE7lP hdvvMCZdtomaV5BasbvxSXzWo3wHNvArquWV0cE595Xs1v9UDSIEWKsBgdNib6rM goXQ4h6t+Bc5fkJd62k4wJ7ng7rTdISnxWAKvY4z4jTKXaYb+BKI/s9pAk5mY8it s5BZ5q8jLtojKndn6s4h6k7Sg7/Di6EHw9b56XAmdM1PKihYbGAZGAP+sy+Boxhl AP4emTOWa9wN6fncdc77i24fvv5NW83EEkpggcRVlcYWLUc12GW/etCgHxOSWWy6 VzhL0OEa8YDu6KvYdYEXeD9x3KLIskErYpdgh5SGPCPDEXARQNMYXjwI0YY7V7Yh XWg6Bt9Hm0+V/j5mhbTPhqtm7RCZSpwL95AZV0DX8XzKQEQ7v9G08tDSraFAonhk y/tIzG7ms3Fao5xcqWq5gURd9I0/RVexjvp3HPJPPYDvxuP1BM8MjZyw7yE47Ybr zztpLh/QB8gxqx2kKIyAc+pkRfsvnyZLCydsMHcNEGeoIX1/jaRH9HNyOGsRD6BP rCO9ByicJvyqPxoOlQ4G+zMueGQzlBbL1HlJvX4jKxWAYnsbJAk= =ylgm -----END PGP SIGNATURE----- --3ur6xxs5ytioza53-- From owner-svn-ports-all@freebsd.org Tue Jun 18 11:04:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9979115B5E42; Tue, 18 Jun 2019 11:04:18 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3A6756F65D; Tue, 18 Jun 2019 11:04:18 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mail.j.mat.cc (owncloud.cube.mat.cc [79.143.240.228]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.mat.cc", Issuer "Let's Encrypt Authority X3" (verified OK)) (Authenticated sender: mat/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id D469CCF8D; Tue, 18 Jun 2019 11:04:17 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from ogg.in.absolight.net (ogg.in.absolight.net [IPv6:2a01:678:ab:50::42:42]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: mat@mat.cc) by mail.j.mat.cc (Postfix) with ESMTPSA id 487C7943466; Tue, 18 Jun 2019 11:04:15 +0000 (UTC) Date: Tue, 18 Jun 2019 13:04:14 +0200 From: Mathieu Arnold To: =?utf-8?Q?T=C4=B3l?= Coosemans Cc: Mathieu Arnold , bapt@FreeBSD.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r503385 - head/Mk/Scripts Message-ID: <20190618110414.ngqcgv4gydfkmk6z@ogg.in.absolight.net> References: <201906031257.x53Cvi9P092541@repo.freebsd.org> <20190615170158.489616a4@kalimero.tijl.coosemans.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="qzmheo4mipeqazyc" Content-Disposition: inline In-Reply-To: <20190615170158.489616a4@kalimero.tijl.coosemans.org> User-Agent: NeoMutt/20180622 X-Rspamd-Queue-Id: 3A6756F65D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.984,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 11:04:18 -0000 --qzmheo4mipeqazyc Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jun 15, 2019 at 05:01:58PM +0200, T=C4=B3l Coosemans wrote: > On Mon, 3 Jun 2019 12:57:44 +0000 (UTC) Mathieu Arnold > wrote: > > Author: mat > > Date: Mon Jun 3 12:57:44 2019 > > New Revision: 503385 > > URL: https://svnweb.freebsd.org/changeset/ports/503385 > >=20 > > Log: > > Use UCL for pkg-message > > =20 > > Remain backward compatible but use ucl for the pkg-messages, which al= lows to: > > - append messages one after the other > > - only print message on delete, install, upgrade from a version to an= other > > =20 > > If pkg-message starts with a [ we consider it should be a valid ucl f= ile > > =20 > > The format is the following: > > [ > > { message: "Always print" }, > > { message: "package being removed", type: remove }, > > { message: "package being installed", type: install }, > > { message: "package is being upgraded", type: upgrade }, > > { message: "Upgrading from lower than 1.0", maximum_version: "1.0", t= ype: upgrade }, > > { message: "Upgrading from higher than 1.0", minimum_version: "1.0", = type: upgrade }, > > { message: "Upgrading from >1.0 < 3.0", maximum_version: "3.0", minim= um_version: "1.0", > > ] > > =20 > > Because it is ucl one can use some sugar like: > > [ > > { message =3D < > formatted > > message 'with fancy things' > > EOD > > }, > > } >=20 > Can this be extended to include these fields: > opsys: > osversion: > arch: > options: I am not sure adding more fields is a good idea. It should remain simple, otherwise there is a risk of the pkg-message syntax getting bloated, and it is bound to be misused, especially as the use case would be very rare. It would probably be better to add files to _PKGMESSAGES when the case you want to handle presents itself. --=20 Mathieu Arnold --qzmheo4mipeqazyc Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQKTBAABCgB9FiEEOraXidLtEhBkQLpbOkUW81GDzkgFAl0IxS1fFIAAAAAALgAo aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDNB QjY5Nzg5RDJFRDEyMTA2NDQwQkE1QjNBNDUxNkYzNTE4M0NFNDgACgkQOkUW81GD zkhJ3xAAmvvcZnoEG1nTSBavb7oN9f5sDB324W6TZhH0dO+GQMYA0LJ+KzERAKES s5TzUE5PK4BhwWhgiJOsQsY3+qUe1+RjsFdDf6RG4IoufNFvD5NNmDR5Jq2s0JF+ Gxmi0VFNtvdSAgb5WpYHxhn4qfflD5sxsGf60rJs4wIq1AJpI+oXmU9ILqExYmtK q2kkQM2DXP7zLGge+25UHyDak9GTGoYsEzakPjgJVjquG8PgmJcpCTNx0bGcrfW/ yvIMAjO7b3JGHCso7I/Lj69kTiQKzsUAmnQPFmuPMvoXI07Nfkr006kC5NVhQLMr wCzgyNxuws37paIPTJj8v3TMv52K2TdkMu5lMylW8Yc5ji5CJL1eIi3yY053v7f7 AcAQlSNQ1mUXk4qTLrgv6x7ie1NfULsTFlJoibzCmsoqnfj0KBTgkzbEds4R9u7B bmUhwWaaBmYd/dbZ4wXZbw8bJXvsFM6HNwt+uW9sOpaL/CpivJoksUBVn0IROQpq 2BfyoBntgOxj3QW9IxnmRMkO4Er5a1ZKtYV0a0lIPQew4EQDaBz480DPBjmkwwMr k4VXAP0ERJV37NMcepsqa2qZDB+pD1d+/FJGZmD1enOZtjAUiyLXEd01zQPZNR6A prtvmXbn8c5eoBoXKiw/FnMcKLVDKIdKtCQz+awF8wgY9jNw2Do= =APjW -----END PGP SIGNATURE----- --qzmheo4mipeqazyc-- From owner-svn-ports-all@freebsd.org Tue Jun 18 12:03:06 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6A9015B88AF; Tue, 18 Jun 2019 12:03:06 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4A4DB7107F; Tue, 18 Jun 2019 12:03:06 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 25BBBCEE9; Tue, 18 Jun 2019 12:03:06 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IC358b006629; Tue, 18 Jun 2019 12:03:05 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IC35o2006624; Tue, 18 Jun 2019 12:03:05 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906181203.x5IC35o2006624@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Tue, 18 Jun 2019 12:03:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504477 - in head/www: . p5-Catalyst-View-vCard X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/www: . p5-Catalyst-View-vCard X-SVN-Commit-Revision: 504477 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4A4DB7107F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 12:03:07 -0000 Author: danfe Date: Tue Jun 18 12:03:04 2019 New Revision: 504477 URL: https://svnweb.freebsd.org/changeset/ports/504477 Log: Catalyst::View::vCard is a Catalyst View handler that returns stash data in vCard format. Submitted by: Zeus Panchenko Added: head/www/p5-Catalyst-View-vCard/ head/www/p5-Catalyst-View-vCard/Makefile (contents, props changed) head/www/p5-Catalyst-View-vCard/distinfo (contents, props changed) head/www/p5-Catalyst-View-vCard/pkg-descr (contents, props changed) head/www/p5-Catalyst-View-vCard/pkg-plist (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Jun 18 10:34:37 2019 (r504476) +++ head/www/Makefile Tue Jun 18 12:03:04 2019 (r504477) @@ -739,6 +739,7 @@ SUBDIR += p5-Catalyst-View-XML-Feed SUBDIR += p5-Catalyst-View-XML-Simple SUBDIR += p5-Catalyst-View-XSLT + SUBDIR += p5-Catalyst-View-vCard SUBDIR += p5-CatalystX-AppBuilder SUBDIR += p5-CatalystX-Component-Traits SUBDIR += p5-CatalystX-InjectComponent Added: head/www/p5-Catalyst-View-vCard/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Catalyst-View-vCard/Makefile Tue Jun 18 12:03:04 2019 (r504477) @@ -0,0 +1,17 @@ +# $FreeBSD$ + +PORTNAME= Catalyst-View-vCard +PORTVERSION= 0.04 +CATEGORIES= www perl5 +MASTER_SITES= CPAN +PKGNAMEPREFIX= p5- + +MAINTAINER= perl@FreeBSD.org +COMMENT= vCard view class for Catalyst + +RUN_DEPENDS= p5-Text-vCard>0:textproc/p5-Text-vCard + +USES= perl5 +USE_PERL5= configure + +.include Added: head/www/p5-Catalyst-View-vCard/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Catalyst-View-vCard/distinfo Tue Jun 18 12:03:04 2019 (r504477) @@ -0,0 +1,3 @@ +TIMESTAMP = 1258659716 +SHA256 (Catalyst-View-vCard-0.04.tar.gz) = 5930b3ecd5527859b6957407d219e853eb7fe41d70e0a0a84e97d01b1646ed19 +SIZE (Catalyst-View-vCard-0.04.tar.gz) = 15872 Added: head/www/p5-Catalyst-View-vCard/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Catalyst-View-vCard/pkg-descr Tue Jun 18 12:03:04 2019 (r504477) @@ -0,0 +1,4 @@ +Catalyst::View::vCard is a Catalyst View handler that returns stash +data in vCard format. + +WWW: https://metacpan.org/release/Catalyst-View-vCard Added: head/www/p5-Catalyst-View-vCard/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/p5-Catalyst-View-vCard/pkg-plist Tue Jun 18 12:03:04 2019 (r504477) @@ -0,0 +1,2 @@ +%%SITE_PERL%%/Catalyst/View/vCard.pm +%%PERL5_MAN3%%/Catalyst::View::vCard.3.gz From owner-svn-ports-all@freebsd.org Tue Jun 18 12:34:21 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C14CB15BA1CB; Tue, 18 Jun 2019 12:34:21 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6431D7252A; Tue, 18 Jun 2019 12:34:21 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 331ADD3DE; Tue, 18 Jun 2019 12:34:21 +0000 (UTC) (envelope-from gahr@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5ICYLMx022427; Tue, 18 Jun 2019 12:34:21 GMT (envelope-from gahr@FreeBSD.org) Received: (from gahr@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5ICYKcq022426; Tue, 18 Jun 2019 12:34:20 GMT (envelope-from gahr@FreeBSD.org) Message-Id: <201906181234.x5ICYKcq022426@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gahr set sender to gahr@FreeBSD.org using -f From: Pietro Cerutti Date: Tue, 18 Jun 2019 12:34:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504478 - head/devel/catch X-SVN-Group: ports-head X-SVN-Commit-Author: gahr X-SVN-Commit-Paths: head/devel/catch X-SVN-Commit-Revision: 504478 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6431D7252A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 12:34:21 -0000 Author: gahr Date: Tue Jun 18 12:34:20 2019 New Revision: 504478 URL: https://svnweb.freebsd.org/changeset/ports/504478 Log: devel/catch: update to 2.9.1 Release notes: https://github.com/catchorg/Catch2/releases/tag/v2.9.0 Release notes: https://github.com/catchorg/Catch2/releases/tag/v2.9.1 Modified: head/devel/catch/Makefile head/devel/catch/distinfo Modified: head/devel/catch/Makefile ============================================================================== --- head/devel/catch/Makefile Tue Jun 18 12:03:04 2019 (r504477) +++ head/devel/catch/Makefile Tue Jun 18 12:34:20 2019 (r504478) @@ -3,7 +3,7 @@ PORTNAME= catch DISTVERSIONPREFIX= v -DISTVERSION= 2.8.0 +DISTVERSION= 2.9.1 PORTREVISION= 0 CATEGORIES= devel Modified: head/devel/catch/distinfo ============================================================================== --- head/devel/catch/distinfo Tue Jun 18 12:03:04 2019 (r504477) +++ head/devel/catch/distinfo Tue Jun 18 12:34:20 2019 (r504478) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559040162 -SHA256 (catchorg-Catch2-v2.8.0_GH0.tar.gz) = b567c37446cd22c8550bfeb7e2fe3f981b8f3ab8b2148499a522e7f61b8a481d -SIZE (catchorg-Catch2-v2.8.0_GH0.tar.gz) = 591118 +TIMESTAMP = 1560847117 +SHA256 (catchorg-Catch2-v2.9.1_GH0.tar.gz) = 0b36488aca6265e7be14da2c2d0c748b4ddb9c70a1ea4da75736699c629f14ac +SIZE (catchorg-Catch2-v2.9.1_GH0.tar.gz) = 626539 From owner-svn-ports-all@freebsd.org Tue Jun 18 12:36:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2C0315BA3E3; Tue, 18 Jun 2019 12:36:59 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 757127275E; Tue, 18 Jun 2019 12:36:59 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 64BD5D3DF; Tue, 18 Jun 2019 12:36:59 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5ICaxiA022659; Tue, 18 Jun 2019 12:36:59 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5ICawbl022657; Tue, 18 Jun 2019 12:36:58 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201906181236.x5ICawbl022657@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Tue, 18 Jun 2019 12:36:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504479 - head/lang/erlang-runtime21 X-SVN-Group: ports-head X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: head/lang/erlang-runtime21 X-SVN-Commit-Revision: 504479 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 757127275E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 12:37:00 -0000 Author: olgeni Date: Tue Jun 18 12:36:58 2019 New Revision: 504479 URL: https://svnweb.freebsd.org/changeset/ports/504479 Log: Update lang/erlang-runtime21 to version 21.3.8.4. Modified: head/lang/erlang-runtime21/Makefile head/lang/erlang-runtime21/distinfo Modified: head/lang/erlang-runtime21/Makefile ============================================================================== --- head/lang/erlang-runtime21/Makefile Tue Jun 18 12:34:20 2019 (r504478) +++ head/lang/erlang-runtime21/Makefile Tue Jun 18 12:36:58 2019 (r504479) @@ -3,7 +3,7 @@ PORTNAME= erlang DISTVERSIONPREFIX= OTP- -DISTVERSION= 21.3.8.3 +DISTVERSION= 21.3.8.4 # NB when bumping OTP versions also bump PORTREVISION in databases/couchdb2 CATEGORIES= lang parallel java PKGNAMESUFFIX= -runtime21 Modified: head/lang/erlang-runtime21/distinfo ============================================================================== --- head/lang/erlang-runtime21/distinfo Tue Jun 18 12:34:20 2019 (r504478) +++ head/lang/erlang-runtime21/distinfo Tue Jun 18 12:36:58 2019 (r504479) @@ -1,5 +1,5 @@ -TIMESTAMP = 1559634969 -SHA256 (erlang/erlang-otp-OTP-21.3.8.3_GH0.tar.gz) = 58e6e823ce0aa06a36d3dc0caa8b1df6475dc051a6e19f465924ae41a8c3e594 -SIZE (erlang/erlang-otp-OTP-21.3.8.3_GH0.tar.gz) = 54046761 +TIMESTAMP = 1560845601 +SHA256 (erlang/erlang-otp-OTP-21.3.8.4_GH0.tar.gz) = a5d558cb189e026cd45114ffa9bb52752945e7e450c6e7e396b2e626e5fffcc8 +SIZE (erlang/erlang-otp-OTP-21.3.8.4_GH0.tar.gz) = 54057465 SHA256 (erlang/erlang-corba-4.5.2_GH0.tar.gz) = 36f397e6aef97eebda629badb0570cb4ddc979a6d1557bc487a9e13671facf8f SIZE (erlang/erlang-corba-4.5.2_GH0.tar.gz) = 1422685 From owner-svn-ports-all@freebsd.org Tue Jun 18 12:37:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63E4115BA422; Tue, 18 Jun 2019 12:37:11 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 03B1B7284B; Tue, 18 Jun 2019 12:37:11 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9156FD3E0; Tue, 18 Jun 2019 12:37:10 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5ICbAA6022791; Tue, 18 Jun 2019 12:37:10 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5ICbALe022789; Tue, 18 Jun 2019 12:37:10 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201906181237.x5ICbALe022789@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Tue, 18 Jun 2019 12:37:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504480 - head/lang/erlang-runtime22 X-SVN-Group: ports-head X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: head/lang/erlang-runtime22 X-SVN-Commit-Revision: 504480 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 03B1B7284B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 12:37:11 -0000 Author: olgeni Date: Tue Jun 18 12:37:09 2019 New Revision: 504480 URL: https://svnweb.freebsd.org/changeset/ports/504480 Log: Update lang/erlang-runtime22 to version 22.0.4. Modified: head/lang/erlang-runtime22/Makefile head/lang/erlang-runtime22/distinfo Modified: head/lang/erlang-runtime22/Makefile ============================================================================== --- head/lang/erlang-runtime22/Makefile Tue Jun 18 12:36:58 2019 (r504479) +++ head/lang/erlang-runtime22/Makefile Tue Jun 18 12:37:09 2019 (r504480) @@ -3,8 +3,7 @@ PORTNAME= erlang DISTVERSIONPREFIX= OTP- -DISTVERSION= 22.0.3 -PORTREVISION= 1 +DISTVERSION= 22.0.4 CATEGORIES= lang parallel java PKGNAMESUFFIX= -runtime22 DIST_SUBDIR= erlang Modified: head/lang/erlang-runtime22/distinfo ============================================================================== --- head/lang/erlang-runtime22/distinfo Tue Jun 18 12:36:58 2019 (r504479) +++ head/lang/erlang-runtime22/distinfo Tue Jun 18 12:37:09 2019 (r504480) @@ -1,5 +1,5 @@ -TIMESTAMP = 1560416352 -SHA256 (erlang/erlang-otp-OTP-22.0.3_GH0.tar.gz) = b8594588992ef44b141a17f7fe621872d211ce3c083dabfcc65eb4585d3dab38 -SIZE (erlang/erlang-otp-OTP-22.0.3_GH0.tar.gz) = 54803084 +TIMESTAMP = 1560846092 +SHA256 (erlang/erlang-otp-OTP-22.0.4_GH0.tar.gz) = 71b2fe49ed5ac386ebc189dd2e5f4b95b11b4427936be0e3c5695a903ea9ffcd +SIZE (erlang/erlang-otp-OTP-22.0.4_GH0.tar.gz) = 54802321 SHA256 (erlang/erlang-corba-4.5.2_GH0.tar.gz) = 36f397e6aef97eebda629badb0570cb4ddc979a6d1557bc487a9e13671facf8f SIZE (erlang/erlang-corba-4.5.2_GH0.tar.gz) = 1422685 From owner-svn-ports-all@freebsd.org Tue Jun 18 12:40:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DAE2C15BA658; Tue, 18 Jun 2019 12:40:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 79D5F72A31; Tue, 18 Jun 2019 12:40:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4CD7DD3E4; Tue, 18 Jun 2019 12:40:15 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5ICeFxo023059; Tue, 18 Jun 2019 12:40:15 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5ICeFXf023058; Tue, 18 Jun 2019 12:40:15 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906181240.x5ICeFXf023058@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 18 Jun 2019 12:40:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504481 - head/devel/py-flake8 X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/devel/py-flake8 X-SVN-Commit-Revision: 504481 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 79D5F72A31 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 12:40:16 -0000 Author: amdmi3 Date: Tue Jun 18 12:40:14 2019 New Revision: 504481 URL: https://svnweb.freebsd.org/changeset/ports/504481 Log: - Add missing depend for ancient python versions PR: 238503 Submitted by: john@saltant.com MFH: 2019Q2 Modified: head/devel/py-flake8/Makefile Modified: head/devel/py-flake8/Makefile ============================================================================== --- head/devel/py-flake8/Makefile Tue Jun 18 12:37:09 2019 (r504480) +++ head/devel/py-flake8/Makefile Tue Jun 18 12:40:14 2019 (r504481) @@ -3,7 +3,7 @@ PORTNAME= flake8 PORTVERSION= 3.7.7 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -28,7 +28,12 @@ NO_ARCH= yes .include .if ${PYTHON_REL} < 3200 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}configparser>0:devel/py-configparser@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}configparser>0:devel/py-configparser@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}functools32>0:devel/py-functools32@${PY_FLAVOR} +.endif + +.if ${PYTHON_REL} < 3400 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing>0:devel/py-typing@${PY_FLAVOR} .endif .include From owner-svn-ports-all@freebsd.org Tue Jun 18 12:42:06 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFD3C15BA777; Tue, 18 Jun 2019 12:42:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6451A72DDB; Tue, 18 Jun 2019 12:42:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3EB9ED570; Tue, 18 Jun 2019 12:42:06 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5ICg6YP028258; Tue, 18 Jun 2019 12:42:06 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5ICg6xb028257; Tue, 18 Jun 2019 12:42:06 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906181242.x5ICg6xb028257@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Tue, 18 Jun 2019 12:42:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504482 - branches/2019Q2/devel/py-flake8 X-SVN-Group: ports-branches X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: branches/2019Q2/devel/py-flake8 X-SVN-Commit-Revision: 504482 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6451A72DDB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 12:42:06 -0000 Author: amdmi3 Date: Tue Jun 18 12:42:05 2019 New Revision: 504482 URL: https://svnweb.freebsd.org/changeset/ports/504482 Log: MFH: r504481 - Add missing depend for ancient python versions PR: 238503 Submitted by: john@saltant.com Approved by: ports-secteam (with hat) Modified: branches/2019Q2/devel/py-flake8/Makefile Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/devel/py-flake8/Makefile ============================================================================== --- branches/2019Q2/devel/py-flake8/Makefile Tue Jun 18 12:40:14 2019 (r504481) +++ branches/2019Q2/devel/py-flake8/Makefile Tue Jun 18 12:42:05 2019 (r504482) @@ -3,6 +3,7 @@ PORTNAME= flake8 PORTVERSION= 3.7.7 +PORTREVISION= 2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -27,7 +28,12 @@ NO_ARCH= yes .include .if ${PYTHON_REL} < 3200 -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}configparser>0:devel/py-configparser@${PY_FLAVOR} +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}configparser>0:devel/py-configparser@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}functools32>0:devel/py-functools32@${PY_FLAVOR} +.endif + +.if ${PYTHON_REL} < 3400 +RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}typing>0:devel/py-typing@${PY_FLAVOR} .endif .include From owner-svn-ports-all@freebsd.org Tue Jun 18 12:46:07 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CED015BA9C7; Tue, 18 Jun 2019 12:46:07 +0000 (UTC) (envelope-from tijl@freebsd.org) Received: from mailrelay108.isp.belgacom.be (mailrelay108.isp.belgacom.be [195.238.20.135]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "relay.skynet.be", Issuer "GlobalSign Organization Validation CA - SHA256 - G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 454C272F77; Tue, 18 Jun 2019 12:46:06 +0000 (UTC) (envelope-from tijl@freebsd.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2BVAABx2whd/1H1sVtmHAEBAQQBAQc?= =?us-ascii?q?EAQGBUQcBAQsBgWEvWRFRASASFBSEFogcX4l8AQGCDDUBh2yCHo4kFIFnCQE?= =?us-ascii?q?BAgEBAQEBKwwBAYRAAoJQJDQJDgEDAQEFAQEBAQRtHAyFSwEFIzMjEAsOBgQ?= =?us-ascii?q?CAgUhAgIPSAYTgyOCDgupMoExhDIBCwGEX4EKBoEMKAGLdIF/hCM+hCwLDYM?= =?us-ascii?q?KglgEi2o0nUIJghKGSIx/J5c0hA2QNJE7OIFYTTAIO4JsixOFQT0DMI0nglA?= =?us-ascii?q?BAQ?= X-IPAS-Result: =?us-ascii?q?A2BVAABx2whd/1H1sVtmHAEBAQQBAQcEAQGBUQcBAQsBg?= =?us-ascii?q?WEvWRFRASASFBSEFogcX4l8AQGCDDUBh2yCHo4kFIFnCQEBAgEBAQEBKwwBA?= =?us-ascii?q?YRAAoJQJDQJDgEDAQEFAQEBAQRtHAyFSwEFIzMjEAsOBgQCAgUhAgIPSAYTg?= =?us-ascii?q?yOCDgupMoExhDIBCwGEX4EKBoEMKAGLdIF/hCM+hCwLDYMKglgEi2o0nUIJg?= =?us-ascii?q?hKGSIx/J5c0hA2QNJE7OIFYTTAIO4JsixOFQT0DMI0nglABAQ?= Received: from 81.245-177-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.177.245.81]) by relay.skynet.be with ESMTP; 18 Jun 2019 14:44:55 +0200 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.15.2/8.15.2) with ESMTP id x5ICiskU065912; Tue, 18 Jun 2019 14:44:55 +0200 (CEST) (envelope-from tijl@FreeBSD.org) Date: Tue, 18 Jun 2019 14:44:53 +0200 From: =?UTF-8?B?VMSzbA==?= Coosemans To: Mathieu Arnold Cc: bapt@FreeBSD.org, ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r503385 - head/Mk/Scripts Message-ID: <20190618144446.29662c8f@kalimero.tijl.coosemans.org> In-Reply-To: <20190618110414.ngqcgv4gydfkmk6z@ogg.in.absolight.net> References: <201906031257.x53Cvi9P092541@repo.freebsd.org> <20190615170158.489616a4@kalimero.tijl.coosemans.org> <20190618110414.ngqcgv4gydfkmk6z@ogg.in.absolight.net> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Rspamd-Queue-Id: 454C272F77 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.97 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.97)[-0.968,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 12:46:07 -0000 On Tue, 18 Jun 2019 13:04:14 +0200 Mathieu Arnold wrote: > On Sat, Jun 15, 2019 at 05:01:58PM +0200, T=C4=B3l Coosemans wrote: >> On Mon, 3 Jun 2019 12:57:44 +0000 (UTC) Mathieu Arnold >> wrote: >>> Author: mat >>> Date: Mon Jun 3 12:57:44 2019 >>> New Revision: 503385 >>> URL: https://svnweb.freebsd.org/changeset/ports/503385 >>>=20 >>> Log: >>> Use UCL for pkg-message >>> =20 >>> Remain backward compatible but use ucl for the pkg-messages, which al= lows to: >>> - append messages one after the other >>> - only print message on delete, install, upgrade from a version to an= other >>> =20 >>> If pkg-message starts with a [ we consider it should be a valid ucl f= ile >>> =20 >>> The format is the following: >>> [ >>> { message: "Always print" }, >>> { message: "package being removed", type: remove }, >>> { message: "package being installed", type: install }, >>> { message: "package is being upgraded", type: upgrade }, >>> { message: "Upgrading from lower than 1.0", maximum_version: "1.0", t= ype: upgrade }, >>> { message: "Upgrading from higher than 1.0", minimum_version: "1.0", = type: upgrade }, >>> { message: "Upgrading from >1.0 < 3.0", maximum_version: "3.0", minim= um_version: "1.0", >>> ] >>> =20 >>> Because it is ucl one can use some sugar like: >>> [ >>> { message =3D <>> formatted >>> message 'with fancy things' >>> EOD >>> }, >>> } =20 >>=20 >> Can this be extended to include these fields: >> opsys: >> osversion: >> arch: >> options: =20 >=20 > I am not sure adding more fields is a good idea. > It should remain simple, otherwise there is a risk of the pkg-message > syntax getting bloated, and it is bound to be misused, especially as the > use case would be very rare. > It would probably be better to add files to _PKGMESSAGES when the case > you want to handle presents itself. I agree with that actually, but I guess it depends on whether you see pkg-message as the final version that goes into the package or whether it's part of the ports tree and still needs to be processed before a package is created. What I'd like to see is that messages that apply to a certain range of FreeBSD versions are clearly documented as such. The Firefox message contains something for FreeBSD < 11.3 but the problem has been fixed already in stable/11. It would also make it easier to remove the messages when the FreeBSD versions go EoL. Similarly for the options, the firefox message contains something about a Gvfs/GIO option but there is no such option. It doesn't really matter to me whether this is done in the Makefile or in pkg-message. I'm all for putting everything (except files/ maybe) in the Makefile (all those tiny files in the ports tree significantly slow down subversion and other file system operations like grep). From owner-svn-ports-all@freebsd.org Tue Jun 18 12:53:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 943A115BAE3D; Tue, 18 Jun 2019 12:53:27 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3A2FE73516; Tue, 18 Jun 2019 12:53:27 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from ivaldir.etoilebsd.net (etoilebsd.net [178.32.217.76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: bapt) by smtp.freebsd.org (Postfix) with ESMTPSA id C65DFDC6E; Tue, 18 Jun 2019 12:53:26 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: by ivaldir.etoilebsd.net (Postfix, from userid 1001) id BF290B4A8E; Tue, 18 Jun 2019 14:53:25 +0200 (CEST) Date: Tue, 18 Jun 2019 14:53:25 +0200 From: Baptiste Daroussin To: =?utf-8?Q?T=C4=B3l?= Coosemans Cc: Mathieu Arnold , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r503385 - head/Mk/Scripts Message-ID: <20190618125325.7hydq4cjfakia4ap@ivaldir.net> References: <201906031257.x53Cvi9P092541@repo.freebsd.org> <20190615170158.489616a4@kalimero.tijl.coosemans.org> <20190618110414.ngqcgv4gydfkmk6z@ogg.in.absolight.net> <20190618144446.29662c8f@kalimero.tijl.coosemans.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="j6s4okisacot57kl" Content-Disposition: inline In-Reply-To: <20190618144446.29662c8f@kalimero.tijl.coosemans.org> User-Agent: NeoMutt/20180716 X-Rspamd-Queue-Id: 3A2FE73516 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.99)[-0.988,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 12:53:27 -0000 --j6s4okisacot57kl Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Jun 18, 2019 at 02:44:53PM +0200, T=C4=B3l Coosemans wrote: > On Tue, 18 Jun 2019 13:04:14 +0200 Mathieu Arnold > wrote: > > On Sat, Jun 15, 2019 at 05:01:58PM +0200, T=C4=B3l Coosemans wrote: > >> On Mon, 3 Jun 2019 12:57:44 +0000 (UTC) Mathieu Arnold > >> wrote: > >>> Author: mat > >>> Date: Mon Jun 3 12:57:44 2019 > >>> New Revision: 503385 > >>> URL: https://svnweb.freebsd.org/changeset/ports/503385 > >>>=20 > >>> Log: > >>> Use UCL for pkg-message > >>> =20 > >>> Remain backward compatible but use ucl for the pkg-messages, which = allows to: > >>> - append messages one after the other > >>> - only print message on delete, install, upgrade from a version to = another > >>> =20 > >>> If pkg-message starts with a [ we consider it should be a valid ucl= file > >>> =20 > >>> The format is the following: > >>> [ > >>> { message: "Always print" }, > >>> { message: "package being removed", type: remove }, > >>> { message: "package being installed", type: install }, > >>> { message: "package is being upgraded", type: upgrade }, > >>> { message: "Upgrading from lower than 1.0", maximum_version: "1.0",= type: upgrade }, > >>> { message: "Upgrading from higher than 1.0", minimum_version: "1.0"= , type: upgrade }, > >>> { message: "Upgrading from >1.0 < 3.0", maximum_version: "3.0", min= imum_version: "1.0", > >>> ] > >>> =20 > >>> Because it is ucl one can use some sugar like: > >>> [ > >>> { message =3D < >>> formatted > >>> message 'with fancy things' > >>> EOD > >>> }, > >>> } =20 > >>=20 > >> Can this be extended to include these fields: > >> opsys: > >> osversion: > >> arch: > >> options: =20 > >=20 > > I am not sure adding more fields is a good idea. > > It should remain simple, otherwise there is a risk of the pkg-message > > syntax getting bloated, and it is bound to be misused, especially as the > > use case would be very rare. > > It would probably be better to add files to _PKGMESSAGES when the case > > you want to handle presents itself. >=20 > I agree with that actually, but I guess it depends on whether you see > pkg-message as the final version that goes into the package or whether > it's part of the ports tree and still needs to be processed before a > package is created. >=20 > What I'd like to see is that messages that apply to a certain > range of FreeBSD versions are clearly documented as such. The Firefox > message contains something for FreeBSD < 11.3 but the problem has been > fixed already in stable/11. It would also make it easier to remove the > messages when the FreeBSD versions go EoL. Similarly for the options, > the firefox message contains something about a Gvfs/GIO option but there > is no such option. It doesn't really matter to me whether this is done > in the Makefile or in pkg-message. I'm all for putting everything > (except files/ maybe) in the Makefile (all those tiny files in the ports > tree significantly slow down subversion and other file system operations > like grep). I made my thought About the OS version this should be done at the framework level in the ports tee: This information does not need to be within the package, because packages a= re built for a given version. Same goes for the architecture (maybe with the exception of the noarch pack= ages) I don't think those specific build time information should remain within the generated package. That said, the way it has been done, in the framework so far should allow e= asily to do what you do propose, because things are made so we can append message= s to existing pkg-messages. Meaning we can easily extend it. I will soon send pa= tches to review in that direction. Best regards, Bapt --j6s4okisacot57kl Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEgOTj3suS2urGXVU3Y4mL3PG3PloFAl0I3sMACgkQY4mL3PG3 PlrtThAAkkRjtBmxK5DUGZaifu01w2HOUTFxapvIY13P7pIyc+tmbH/LwvMTq/Qa bgcRaJhzq6yTmM54NVXYhZnE4YxJ2RSM62eOnMPrF3eBkSxIG4qTPtT4SGx1rS4X YhB52JYfdrQ7rvrbAWVNznc/jdyQ/8UwIdYBIE9gygVzezgFiiVHGTQEfsZBMguE vUGx0RIZnu8B7n/0h+deqs2FSWS+5rY6dmWATyK38kevmlmUTEZZVV6CWf301nZ8 v5ZgTZ4/Ywgz58t2qZgC1jZwlz4MEzJw1ylIQNbxH5ZuURYBkJL0kssSGDaXAKOk 0hXSeOhNAGSzOlbQycfPnUx8q7vX5LvHsFx3D4KFJ0KfBYKtjfYvNjaN6wEF69OD htYou3SesZ2zhvU3xxalEoOJ3Kj/rDvP4Lgxi/lUIluiZ/l2KGxTnHHqUdfG2mOp sq+SRyRrYC7CbeAgMUUI+V6bVKkQXFlseWTopVIehjwfp4TJqvJjFu8SvArAwrC5 qcTMQIiy4JKvRpHjsQt27Oia3fbuGF2eTBxPdY9b8cfaEtNab1MlDAmjpBu9k28t ectUqnAUJ8Klwphz897ia+fmLyGiagR4QNqeLDlBlp4lCbeFd4bC2OA3mUctxuBu B1aycnxqS9eTbQnLlIKNNbiOxuHqSccixpC5kkYdbx8wLEUe6j4= =1AZp -----END PGP SIGNATURE----- --j6s4okisacot57kl-- From owner-svn-ports-all@freebsd.org Tue Jun 18 13:04:58 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C16F115BB208; Tue, 18 Jun 2019 13:04:58 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 66B8973AE1; Tue, 18 Jun 2019 13:04:58 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 38C59D8DD; Tue, 18 Jun 2019 13:04:58 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5ID4waI038827; Tue, 18 Jun 2019 13:04:58 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5ID4wFi038826; Tue, 18 Jun 2019 13:04:58 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201906181304.x5ID4wFi038826@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Tue, 18 Jun 2019 13:04:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504483 - head/math/R X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/math/R X-SVN-Commit-Revision: 504483 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 66B8973AE1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 13:04:58 -0000 Author: pkubaj Date: Tue Jun 18 13:04:57 2019 New Revision: 504483 URL: https://svnweb.freebsd.org/changeset/ports/504483 Log: math/R: force new compiler on GCC architectures This is to fix build of textproc/R-cran-stringi. Approved by: mentors (implicite approval) Modified: head/math/R/Makefile Modified: head/math/R/Makefile ============================================================================== --- head/math/R/Makefile Tue Jun 18 12:42:05 2019 (r504482) +++ head/math/R/Makefile Tue Jun 18 13:04:57 2019 (r504483) @@ -25,7 +25,8 @@ RUN_DEPENDS= gmake:devel/gmake # R packages may requir # - Create ports for each of the recommended packages # - Create a meta-port for the recommended packages -USES= gmake iconv libtool localbase pathfix perl5 readline:port +USES= compiler:c++11-lang gmake iconv libtool localbase pathfix \ + perl5 readline:port USE_LDCONFIG= ${PREFIX}/lib/R/lib USE_PERL5= build From owner-svn-ports-all@freebsd.org Tue Jun 18 13:20:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77D3115BBD94; Tue, 18 Jun 2019 13:20:05 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E31AD74B11; Tue, 18 Jun 2019 13:20:04 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D1122DA81; Tue, 18 Jun 2019 13:20:04 +0000 (UTC) (envelope-from koobs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IDK4I2044703; Tue, 18 Jun 2019 13:20:04 GMT (envelope-from koobs@FreeBSD.org) Received: (from koobs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IDK3BT044698; Tue, 18 Jun 2019 13:20:03 GMT (envelope-from koobs@FreeBSD.org) Message-Id: <201906181320.x5IDK3BT044698@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: koobs set sender to koobs@FreeBSD.org using -f From: Kubilay Kocak Date: Tue, 18 Jun 2019 13:20:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504484 - in head/devel: . py-pytest-relaxed py-pytest-relaxed/files X-SVN-Group: ports-head X-SVN-Commit-Author: koobs X-SVN-Commit-Paths: in head/devel: . py-pytest-relaxed py-pytest-relaxed/files X-SVN-Commit-Revision: 504484 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E31AD74B11 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 13:20:05 -0000 Author: koobs Date: Tue Jun 18 13:20:03 2019 New Revision: 504484 URL: https://svnweb.freebsd.org/changeset/ports/504484 Log: [NEW] devel/pytest-relaxed: Relaxed test discovery/organization for pytest This pytest plugin takes a page from the rest of Python, where you don't have to explicitly note public module/class members, but only need to hint as to which ones are private. By default, all files and objects pytest is told to scan will be considered tests; to mark something as not-a-test, simply prefix it with an underscore. WWW: https://pytest-relaxed.readthedocs.io/ Added: head/devel/py-pytest-relaxed/ head/devel/py-pytest-relaxed/Makefile (contents, props changed) head/devel/py-pytest-relaxed/distinfo (contents, props changed) head/devel/py-pytest-relaxed/files/ head/devel/py-pytest-relaxed/files/patch-tests_test__display.py (contents, props changed) head/devel/py-pytest-relaxed/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Jun 18 13:04:57 2019 (r504483) +++ head/devel/Makefile Tue Jun 18 13:20:03 2019 (r504484) @@ -4849,6 +4849,7 @@ SUBDIR += py-python-jenkins SUBDIR += py-python-magic SUBDIR += py-python-pcre + SUBDIR += py-pytest-relaxed SUBDIR += py-python-socketio SUBDIR += py-python-statsd SUBDIR += py-python-subunit Added: head/devel/py-pytest-relaxed/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-relaxed/Makefile Tue Jun 18 13:20:03 2019 (r504484) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= pytest-relaxed +PORTVERSION= 1.1.5 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= koobs@FreeBSD.org +COMMENT= Relaxed test discovery/organization for pytest + +LICENSE= BSD2CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=3,<5:devel/py-pytest@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=1,<2:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}decorator>=4,<5:devel/py-decorator@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +do-test: + @cd ${WRKSRC} && ${PYTHON_CMD} -m pytest -v -rs + +.include Added: head/devel/py-pytest-relaxed/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-relaxed/distinfo Tue Jun 18 13:20:03 2019 (r504484) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560858639 +SHA256 (pytest-relaxed-1.1.5.tar.gz) = e39a7e5b14e14dfff0de0ad720dfffa740c128d599ab14cfac13f4deb34164a6 +SIZE (pytest-relaxed-1.1.5.tar.gz) = 26786 Added: head/devel/py-pytest-relaxed/files/patch-tests_test__display.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-relaxed/files/patch-tests_test__display.py Tue Jun 18 13:20:03 2019 (r504484) @@ -0,0 +1,32 @@ +# Two tests fail when warnings are present in the test run +# https://github.com/bitprophet/pytest-relaxed/issues/7 + +--- tests/test_display.py.orig 2019-06-14 18:05:29 UTC ++++ tests/test_display.py +@@ -18,7 +18,7 @@ def _expect_regular_output(testdir): + assert "== FAILURES ==" in output + assert "AssertionError" in output + # Summary +- assert "== 1 failed, 4 passed, 1 skipped in " in output ++ assert "== 1 failed, 4 passed, 1 skipped" in output + + + class TestRegularFunctions: +@@ -170,7 +170,7 @@ OtherBehaviors + assert "== FAILURES ==" in output + assert "AssertionError" in output + # Summary +- assert "== 1 failed, 4 passed, 1 skipped in " in output ++ assert "== 1 failed, 4 passed, 1 skipped" in output + + def test_tests_are_colorized_by_test_result( # noqa: F811,E501 + self, testdir, environ +@@ -225,7 +225,7 @@ OtherBehaviors + assert "== FAILURES ==" in output + assert "AssertionError" in output + # Summary +- assert "== 1 failed, 4 passed, 1 skipped in " in output ++ assert "== 1 failed, 4 passed, 1 skipped" in output + + def test_nests_many_levels_deep_no_problem(self, testdir): + testdir.makepyfile( Added: head/devel/py-pytest-relaxed/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pytest-relaxed/pkg-descr Tue Jun 18 13:20:03 2019 (r504484) @@ -0,0 +1,8 @@ +This pytest plugin takes a page from the rest of Python, where you don't +have to explicitly note public module/class members, but only need to +hint as to which ones are private. + +By default, all files and objects pytest is told to scan will be considered +tests; to mark something as not-a-test, simply prefix it with an underscore. + +WWW: https://pytest-relaxed.readthedocs.io/ From owner-svn-ports-all@freebsd.org Tue Jun 18 13:51:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 56F8115BCA78; Tue, 18 Jun 2019 13:51:18 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E9F9275CDE; Tue, 18 Jun 2019 13:51:17 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C69CEDFA8; Tue, 18 Jun 2019 13:51:17 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IDpHuh062562; Tue, 18 Jun 2019 13:51:17 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IDpHr1062561; Tue, 18 Jun 2019 13:51:17 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201906181351.x5IDpHr1062561@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Tue, 18 Jun 2019 13:51:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504485 - head/mail/dma X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: head/mail/dma X-SVN-Commit-Revision: 504485 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E9F9275CDE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 13:51:18 -0000 Author: garga Date: Tue Jun 18 13:51:17 2019 New Revision: 504485 URL: https://svnweb.freebsd.org/changeset/ports/504485 Log: Take maintainership Modified: head/mail/dma/Makefile Modified: head/mail/dma/Makefile ============================================================================== --- head/mail/dma/Makefile Tue Jun 18 13:20:03 2019 (r504484) +++ head/mail/dma/Makefile Tue Jun 18 13:51:17 2019 (r504485) @@ -3,12 +3,12 @@ PORTNAME= dma PORTVERSION= 0.11 -PORTREVISION= 1 DISTVERSIONPREFIX= v +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= mail ipv6 -MAINTAINER= ports@FreeBSD.org +MAINTAINER= garga@FreeBSD.org COMMENT= DragonFly Mail Agent, a small MTA for local/outbound mail LICENSE= BSD3CLAUSE From owner-svn-ports-all@freebsd.org Tue Jun 18 14:34:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0AE7615BEC2A; Tue, 18 Jun 2019 14:34:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F6ED80150; Tue, 18 Jun 2019 14:34:07 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 26495E801; Tue, 18 Jun 2019 14:34:07 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IEY6Kg086007; Tue, 18 Jun 2019 14:34:06 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IEY6Hi086005; Tue, 18 Jun 2019 14:34:06 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906181434.x5IEY6Hi086005@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Tue, 18 Jun 2019 14:34:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504486 - head/audio/aqualung X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/audio/aqualung X-SVN-Commit-Revision: 504486 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9F6ED80150 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 14:34:08 -0000 Author: linimon Date: Tue Jun 18 14:34:06 2019 New Revision: 504486 URL: https://svnweb.freebsd.org/changeset/ports/504486 Log: Add compiler:c++11-lang to USES to unbreak on GCC-based systems: libicuuc.so: undefined reference to __cxa_throw_bad_array_new_length Approved by: portmgr (tier-2 blanket) Modified: head/audio/aqualung/Makefile Modified: head/audio/aqualung/Makefile ============================================================================== --- head/audio/aqualung/Makefile Tue Jun 18 13:51:17 2019 (r504485) +++ head/audio/aqualung/Makefile Tue Jun 18 14:34:06 2019 (r504486) @@ -30,9 +30,7 @@ LIB_DEPENDS= libFLAC.so:audio/flac \ libcdio_paranoia.so:sysutils/libcdio-paranoia \ liblrdf.so:textproc/liblrdf -BROKEN_powerpc64= fails to link: libicuuc.so: undefined reference to __cxa_throw_bad_array_new_length - -USES= gettext localbase lua pkgconfig +USES= compiler:c++11-lang gettext localbase lua pkgconfig USE_GNOME= gtk20 libxml2 libxslt GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-ifp=no From owner-svn-ports-all@freebsd.org Tue Jun 18 15:26:02 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42D3E15C0C4A; Tue, 18 Jun 2019 15:26:02 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DC5928259F; Tue, 18 Jun 2019 15:26:01 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B84BBF0B0; Tue, 18 Jun 2019 15:26:01 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IFQ1ij012239; Tue, 18 Jun 2019 15:26:01 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IFQ0No012234; Tue, 18 Jun 2019 15:26:00 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201906181526.x5IFQ0No012234@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Tue, 18 Jun 2019 15:26:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504487 - in head/security: . openfortivpn X-SVN-Group: ports-head X-SVN-Commit-Author: lifanov X-SVN-Commit-Paths: in head/security: . openfortivpn X-SVN-Commit-Revision: 504487 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DC5928259F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 15:26:02 -0000 Author: lifanov Date: Tue Jun 18 15:26:00 2019 New Revision: 504487 URL: https://svnweb.freebsd.org/changeset/ports/504487 Log: new port: security/openfortivpn This is a client for PPP+SSL VPN tunnel services. It works with Fortinet VPN. Added: head/security/openfortivpn/ head/security/openfortivpn/Makefile (contents, props changed) head/security/openfortivpn/distinfo (contents, props changed) head/security/openfortivpn/pkg-descr (contents, props changed) head/security/openfortivpn/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Jun 18 14:34:06 2019 (r504486) +++ head/security/Makefile Tue Jun 18 15:26:00 2019 (r504487) @@ -409,6 +409,7 @@ SUBDIR += openconnect-gui SUBDIR += opencryptoki SUBDIR += openct + SUBDIR += openfortivpn SUBDIR += openiked SUBDIR += opensaml SUBDIR += opensc Added: head/security/openfortivpn/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/openfortivpn/Makefile Tue Jun 18 15:26:00 2019 (r504487) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= openfortivpn +PORTVERSION= 1.10.0 +DISTVERSIONPREFIX=v +CATEGORIES= security + +MAINTAINER= lifanov@FreeBSD.org +COMMENT= Client for PPP+SSL VPN tunnel services + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= autoreconf pkgconfig ssl +USE_GITHUB= yes +GH_ACCOUNT= adrienverge + +GNU_CONFIGURE= yes +CONFIGURE_ENV= OPENSSL_LIBS="-lssl -lcrypto" OPENSSL_CFLAGS=${OPENSSLINC} + +.include Added: head/security/openfortivpn/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/openfortivpn/distinfo Tue Jun 18 15:26:00 2019 (r504487) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560867376 +SHA256 (adrienverge-openfortivpn-v1.10.0_GH0.tar.gz) = d6ea0c84c0cf811530073fa19865334bb42ab10a780157fe95c4efb3476ad58d +SIZE (adrienverge-openfortivpn-v1.10.0_GH0.tar.gz) = 74872 Added: head/security/openfortivpn/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/openfortivpn/pkg-descr Tue Jun 18 15:26:00 2019 (r504487) @@ -0,0 +1,5 @@ +Openfortivpn is a client for PPP+SSL VPN tunnel services. +It spawns a pppd process and operates the communication between +the gateway and the process. It is compatible with Fortinet VPNs. + +WWW: https://github.com/adrienverge/openfortivpn Added: head/security/openfortivpn/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/openfortivpn/pkg-plist Tue Jun 18 15:26:00 2019 (r504487) @@ -0,0 +1,4 @@ +bin/openfortivpn +man/man1/openfortivpn.1.gz +@dir %%ETCDIR%% +@sample %%DATADIR%%/config.template %%ETCDIR%%/config From owner-svn-ports-all@freebsd.org Tue Jun 18 15:57:12 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4BF5715C1A82; Tue, 18 Jun 2019 15:57:12 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E1D3483784; Tue, 18 Jun 2019 15:57:11 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BAB92F5DC; Tue, 18 Jun 2019 15:57:11 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IFvBFd028274; Tue, 18 Jun 2019 15:57:11 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IFvA5S028268; Tue, 18 Jun 2019 15:57:10 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906181557.x5IFvA5S028268@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Tue, 18 Jun 2019 15:57:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504488 - in head/sysutils: . eclat eclat/files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/sysutils: . eclat eclat/files X-SVN-Commit-Revision: 504488 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E1D3483784 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 15:57:12 -0000 Author: danfe Date: Tue Jun 18 15:57:10 2019 New Revision: 504488 URL: https://svnweb.freebsd.org/changeset/ports/504488 Log: Add a port of Eclat (EC2 Command Line Administrator Tool). Requested by: Zeus Panchenko (maintainer) Added: head/sysutils/eclat/ head/sysutils/eclat/Makefile (contents, props changed) head/sysutils/eclat/distinfo (contents, props changed) head/sysutils/eclat/files/ head/sysutils/eclat/files/patch-lib_ldapmap.c (contents, props changed) head/sysutils/eclat/pkg-descr (contents, props changed) head/sysutils/eclat/pkg-plist (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Jun 18 15:26:00 2019 (r504487) +++ head/sysutils/Makefile Tue Jun 18 15:57:10 2019 (r504488) @@ -294,6 +294,7 @@ SUBDIR += dwatch-pwsnoop SUBDIR += e2fsprogs SUBDIR += ec2-scripts + SUBDIR += eclat SUBDIR += edid-decode SUBDIR += eject SUBDIR += eksctl Added: head/sysutils/eclat/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/eclat/Makefile Tue Jun 18 15:57:10 2019 (r504488) @@ -0,0 +1,37 @@ +# Created by: Alexey Dokuchaev +# $FreeBSD$ + +PORTNAME= eclat +PORTVERSION= 2.0 +CATEGORIES= sysutils +MASTER_SITES= http://download.gnu.org.ua/pub/release/${PORTNAME}/ \ + http://download.gnu.org.ua/pub/alpha/${PORTNAME}/ + +MAINTAINER= zeus@gnu.org.ua +COMMENT= EC2 command line administration tool + +LICENSE= GPLv3 + +LIB_DEPENDS= libcurl.so:ftp/curl \ + libexpat.so:textproc/expat2 + +USES= localbase tar:xz +GNU_CONFIGURE= yes +MAKE_JOBS_UNSAFE= yes + +PORTDOCS= AUTHORS ChangeLog NEWS README THANKS TODO + +OPTIONS_DEFINE= DOCS GDBM LDAP +OPTIONS_DEFAULT= GDBM + +GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm +GDBM_CONFIGURE_WITH= gdbm + +LDAP_USE= OPENLDAP=yes +LDAP_CONFIGURE_WITH= ldap + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} + +.include Added: head/sysutils/eclat/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/eclat/distinfo Tue Jun 18 15:57:10 2019 (r504488) @@ -0,0 +1,3 @@ +TIMESTAMP = 1521176820 +SHA256 (eclat-2.0.tar.xz) = 72ce20a15adc624917fa2ed989da7f60fea73bd1f46fb118c3917105b12dc8b2 +SIZE (eclat-2.0.tar.xz) = 408832 Added: head/sysutils/eclat/files/patch-lib_ldapmap.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/eclat/files/patch-lib_ldapmap.c Tue Jun 18 15:57:10 2019 (r504488) @@ -0,0 +1,56 @@ +--- lib/ldapmap.c.orig 2018-03-16 04:58:17 UTC ++++ lib/ldapmap.c +@@ -201,7 +201,7 @@ ldap_map_free(int dbg, void *data) + } + + +-static void ldap_unbind(LDAP *ld); ++static void eclat_ldap_unbind(LDAP *ld); + + static void + dns2txtacc(struct grecs_txtacc *acc, LDAPURLDesc *lud) +@@ -353,7 +353,7 @@ ldap_connect(int dbg, struct ldap_map *map) + ldap_memfree(msg); + + if (map->tls == tls_only) { +- ldap_unbind(ld); ++ eclat_ldap_unbind(ld); + return NULL; + } + /* try to continue anyway */ +@@ -365,7 +365,7 @@ ldap_connect(int dbg, struct ldap_map *map) + } + + static int +-ldap_bind(int dbg, struct ldap_map *map) ++eclat_ldap_bind(int dbg, struct ldap_map *map) + { + int msgid, ec, rc; + LDAPMessage *result; +@@ -441,7 +441,7 @@ ldap_bind(int dbg, struct ldap_map *map) + } + + static void +-ldap_unbind(LDAP *ld) ++eclat_ldap_unbind(LDAP *ld) + { + if (ld) { + ldap_set_option(ld, LDAP_OPT_SERVER_CONTROLS, NULL); +@@ -515,7 +515,7 @@ ldap_map_open(int dbg, void *data) + map->ld = ldap_connect(dbg, map); + if (!map->ld) + return eclat_map_failure; +- if (ldap_bind(dbg, map)) ++ if (eclat_ldap_bind(dbg, map)) + return eclat_map_failure; + return eclat_map_ok; + } +@@ -524,7 +524,7 @@ static int + ldap_map_close(int dbg, void *data) + { + struct ldap_map *map = data; +- ldap_unbind(map->ld); ++ eclat_ldap_unbind(map->ld); + return 0; + } + Added: head/sysutils/eclat/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/eclat/pkg-descr Tue Jun 18 15:57:10 2019 (r504488) @@ -0,0 +1,7 @@ +Eclat stands for EC2 Command Line Administrator Tool. It allows you to +manage Amazon EC2 services from the command line, fast and easy. It does +not require resource-consuming libraries. It is written in plain C, +depends only on libraries which are always installed on any decent system, +and has low resource requirements. + +WWW: http://puszcza.gnu.org.ua/software/eclat/ Added: head/sysutils/eclat/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/eclat/pkg-plist Tue Jun 18 15:57:10 2019 (r504488) @@ -0,0 +1,49 @@ +bin/eclat +bin/ispeek +etc/eclat.conf +man/man1/eclat-assocaddr.1.gz +man/man1/eclat-atvol.1.gz +man/man1/eclat-clrsattr.1.gz +man/man1/eclat-cpimg.1.gz +man/man1/eclat-cpsnap.1.gz +man/man1/eclat-deimg.1.gz +man/man1/eclat-devol.1.gz +man/man1/eclat-disasaddr.1.gz +man/man1/eclat-dmesg.1.gz +man/man1/eclat-lsaattr.1.gz +man/man1/eclat-lsaddr.1.gz +man/man1/eclat-lsiattr.1.gz +man/man1/eclat-lsimg.1.gz +man/man1/eclat-lsinst.1.gz +man/man1/eclat-lsistat.1.gz +man/man1/eclat-lsreg.1.gz +man/man1/eclat-lssattr.1.gz +man/man1/eclat-lssg.1.gz +man/man1/eclat-lssnap.1.gz +man/man1/eclat-lstag.1.gz +man/man1/eclat-lsvol.1.gz +man/man1/eclat-lszon.1.gz +man/man1/eclat-mkaddr.1.gz +man/man1/eclat-mkimg.1.gz +man/man1/eclat-mkinst.1.gz +man/man1/eclat-mksg.1.gz +man/man1/eclat-mksnap.1.gz +man/man1/eclat-mktag.1.gz +man/man1/eclat-mkvol.1.gz +man/man1/eclat-mkvpc.1.gz +man/man1/eclat-reboot.1.gz +man/man1/eclat-rmaddr.1.gz +man/man1/eclat-rmsg.1.gz +man/man1/eclat-rmsnap.1.gz +man/man1/eclat-rmtag.1.gz +man/man1/eclat-setaattr.1.gz +man/man1/eclat-setiattr.1.gz +man/man1/eclat-setsattr.1.gz +man/man1/eclat-sg.1.gz +man/man1/eclat-start.1.gz +man/man1/eclat-stop.1.gz +man/man1/eclat.1.gz +man/man1/ispeek.1.gz +man/man5/eclat.conf.5.gz +%%DATADIR%%/compl.sh +%%DATADIR%%/eclat.forlan From owner-svn-ports-all@freebsd.org Tue Jun 18 17:46:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 59AB315C3E36; Tue, 18 Jun 2019 17:46:43 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F13F886FD3; Tue, 18 Jun 2019 17:46:42 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A61271889F; Tue, 18 Jun 2019 17:46:42 +0000 (UTC) (envelope-from brooks@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IHkgs7085689; Tue, 18 Jun 2019 17:46:42 GMT (envelope-from brooks@FreeBSD.org) Received: (from brooks@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IHkgpx085687; Tue, 18 Jun 2019 17:46:42 GMT (envelope-from brooks@FreeBSD.org) Message-Id: <201906181746.x5IHkgpx085687@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brooks set sender to brooks@FreeBSD.org using -f From: Brooks Davis Date: Tue, 18 Jun 2019 17:46:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504489 - branches/2019Q2/devel/llvm80 X-SVN-Group: ports-branches X-SVN-Commit-Author: brooks X-SVN-Commit-Paths: branches/2019Q2/devel/llvm80 X-SVN-Commit-Revision: 504489 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F13F886FD3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 17:46:43 -0000 Author: brooks Date: Tue Jun 18 17:46:41 2019 New Revision: 504489 URL: https://svnweb.freebsd.org/changeset/ports/504489 Log: MFH: r504435 r504436 Fix a bug when ${PREFIX} != /usr/local.[0] As of LLVM 8.0.1, pre-releases have moved to github. Chase this change. PR: 238603 [0] Submitted by: mi [0] Revert accidental update to distinfo. Reported by: Christoph Moench-Tegeder Approved by: portmgr (blanket fixes) Modified: branches/2019Q2/devel/llvm80/Makefile branches/2019Q2/devel/llvm80/distinfo Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/devel/llvm80/Makefile ============================================================================== --- branches/2019Q2/devel/llvm80/Makefile Tue Jun 18 15:57:10 2019 (r504488) +++ branches/2019Q2/devel/llvm80/Makefile Tue Jun 18 17:46:41 2019 (r504489) @@ -4,7 +4,11 @@ PORTNAME= llvm DISTVERSION= 8.0.0 PORTREVISION= 0 CATEGORIES= devel lang -MASTER_SITES= http://${PRE_}releases.llvm.org/${LLVM_RELEASE}/${RCDIR} +.if ${DISTVERSION:M*rc*} +MASTER_SITES= https://github.com/llvm/llvm-project/releases/download/llvmorg-${LLVM_RELEASE}-${DISTVERSION:S/${LLVM_RELEASE}//}/ +.else +MASTER_SITES= http://releases.llvm.org/${LLVM_RELEASE}/ +.endif PKGNAMESUFFIX= ${LLVM_SUFFIX} DISTNAME= ${PORTNAME}-${DISTVERSION}.src DISTFILES= ${PORTNAME}-${DISTVERSION}.src${EXTRACT_SUFX} @@ -16,8 +20,6 @@ COMMENT= LLVM and Clang LLVM_RELEASE= ${DISTVERSION:C/rc.*//} LLVM_MAJOR= ${LLVM_RELEASE:C/\.[0-9]\.[0-9]$//} -RCDIR= ${DISTVERSION:S/${LLVM_RELEASE}//:C|(rc.*)|\1/|} -PRE_= ${DISTVERSION:C/.*rc.*/pre/:N*[0-9]*} LLVM_SUFFIX= ${LLVM_RELEASE:C/\.[0-9]$//:C/\.//} LLVM_PREFIX= ${PREFIX}/llvm${LLVM_SUFFIX} @@ -416,7 +418,7 @@ post-build-COMPILER_RT-on: post-install: ${RM} -r ${STAGEDIR}${LLVM_PREFIX}/include/llvm/MC/MCAnalysis - ${RMDIR} ${STAGEDIR}/usr/local/llvm80/include/llvm/TextAPI/MachO + ${RMDIR} ${STAGEDIR}/${PREFIX}/llvm80/include/llvm/TextAPI/MachO ${INSTALL_SCRIPT} ${WRKDIR}/llvm-wrapper.sh \ ${STAGEDIR}${PREFIX}/bin/${FIRST_COMMAND}${LLVM_SUFFIX} .for command in ${COMMANDS:C/^/XXXX/1:NXXXX*} Modified: branches/2019Q2/devel/llvm80/distinfo ============================================================================== --- branches/2019Q2/devel/llvm80/distinfo Tue Jun 18 15:57:10 2019 (r504488) +++ branches/2019Q2/devel/llvm80/distinfo Tue Jun 18 17:46:41 2019 (r504489) @@ -1,4 +1,4 @@ -TIMESTAMP = 1553104154 +TIMESTAMP = 1560807021 SHA256 (llvm-8.0.0.src.tar.xz) = 8872be1b12c61450cacc82b3d153eab02be2546ef34fa3580ed14137bb26224c SIZE (llvm-8.0.0.src.tar.xz) = 30503732 SHA256 (cfe-8.0.0.src.tar.xz) = 084c115aab0084e63b23eee8c233abb6739c399e29966eaeccfc6e088e0b736b From owner-svn-ports-all@freebsd.org Tue Jun 18 18:02:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE19815C464A; Tue, 18 Jun 2019 18:02:28 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 944AB87C9A; Tue, 18 Jun 2019 18:02:28 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6F43D18C14; Tue, 18 Jun 2019 18:02:28 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5II2SiT096517; Tue, 18 Jun 2019 18:02:28 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5II2Swu096515; Tue, 18 Jun 2019 18:02:28 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201906181802.x5II2Swu096515@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Tue, 18 Jun 2019 18:02:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504490 - head/lang/erlang X-SVN-Group: ports-head X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: head/lang/erlang X-SVN-Commit-Revision: 504490 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 944AB87C9A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 18:02:29 -0000 Author: olgeni Date: Tue Jun 18 18:02:27 2019 New Revision: 504490 URL: https://svnweb.freebsd.org/changeset/ports/504490 Log: Update lang/erlang to version 21.3.8.4. Modified: head/lang/erlang/Makefile head/lang/erlang/distinfo Modified: head/lang/erlang/Makefile ============================================================================== --- head/lang/erlang/Makefile Tue Jun 18 17:46:41 2019 (r504489) +++ head/lang/erlang/Makefile Tue Jun 18 18:02:27 2019 (r504490) @@ -3,7 +3,7 @@ PORTNAME= erlang DISTVERSIONPREFIX= OTP- -DISTVERSION= 21.3.8.3 +DISTVERSION= 21.3.8.4 PORTEPOCH= 4 CATEGORIES= lang parallel java DIST_SUBDIR= erlang Modified: head/lang/erlang/distinfo ============================================================================== --- head/lang/erlang/distinfo Tue Jun 18 17:46:41 2019 (r504489) +++ head/lang/erlang/distinfo Tue Jun 18 18:02:27 2019 (r504490) @@ -1,5 +1,5 @@ -TIMESTAMP = 1559635765 -SHA256 (erlang/erlang-otp-OTP-21.3.8.3_GH0.tar.gz) = 58e6e823ce0aa06a36d3dc0caa8b1df6475dc051a6e19f465924ae41a8c3e594 -SIZE (erlang/erlang-otp-OTP-21.3.8.3_GH0.tar.gz) = 54046761 +TIMESTAMP = 1560846630 +SHA256 (erlang/erlang-otp-OTP-21.3.8.4_GH0.tar.gz) = a5d558cb189e026cd45114ffa9bb52752945e7e450c6e7e396b2e626e5fffcc8 +SIZE (erlang/erlang-otp-OTP-21.3.8.4_GH0.tar.gz) = 54057465 SHA256 (erlang/erlang-corba-4.5.2_GH0.tar.gz) = 36f397e6aef97eebda629badb0570cb4ddc979a6d1557bc487a9e13671facf8f SIZE (erlang/erlang-corba-4.5.2_GH0.tar.gz) = 1422685 From owner-svn-ports-all@freebsd.org Tue Jun 18 18:02:41 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85C2515C4671; Tue, 18 Jun 2019 18:02:41 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1B1F287DDA; Tue, 18 Jun 2019 18:02:41 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EB82518C1D; Tue, 18 Jun 2019 18:02:40 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5II2eYu096648; Tue, 18 Jun 2019 18:02:40 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5II2eVg096647; Tue, 18 Jun 2019 18:02:40 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201906181802.x5II2eVg096647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Tue, 18 Jun 2019 18:02:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504491 - head/lang/erlang-java X-SVN-Group: ports-head X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: head/lang/erlang-java X-SVN-Commit-Revision: 504491 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1B1F287DDA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 18:02:41 -0000 Author: olgeni Date: Tue Jun 18 18:02:40 2019 New Revision: 504491 URL: https://svnweb.freebsd.org/changeset/ports/504491 Log: Update lang/erlang-java to version 21.3.8.4. Modified: head/lang/erlang-java/Makefile head/lang/erlang-java/distinfo Modified: head/lang/erlang-java/Makefile ============================================================================== --- head/lang/erlang-java/Makefile Tue Jun 18 18:02:27 2019 (r504490) +++ head/lang/erlang-java/Makefile Tue Jun 18 18:02:40 2019 (r504491) @@ -2,7 +2,7 @@ PORTNAME= erlang DISTVERSIONPREFIX= OTP- -DISTVERSION= 21.3.8.3 +DISTVERSION= 21.3.8.4 PORTEPOCH= 1 CATEGORIES= lang parallel java PKGNAMESUFFIX= -java Modified: head/lang/erlang-java/distinfo ============================================================================== --- head/lang/erlang-java/distinfo Tue Jun 18 18:02:27 2019 (r504490) +++ head/lang/erlang-java/distinfo Tue Jun 18 18:02:40 2019 (r504491) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559635774 -SHA256 (erlang/erlang-otp-OTP-21.3.8.3_GH0.tar.gz) = 58e6e823ce0aa06a36d3dc0caa8b1df6475dc051a6e19f465924ae41a8c3e594 -SIZE (erlang/erlang-otp-OTP-21.3.8.3_GH0.tar.gz) = 54046761 +TIMESTAMP = 1560846640 +SHA256 (erlang/erlang-otp-OTP-21.3.8.4_GH0.tar.gz) = a5d558cb189e026cd45114ffa9bb52752945e7e450c6e7e396b2e626e5fffcc8 +SIZE (erlang/erlang-otp-OTP-21.3.8.4_GH0.tar.gz) = 54057465 From owner-svn-ports-all@freebsd.org Tue Jun 18 18:02:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A74E615C46A4; Tue, 18 Jun 2019 18:02:51 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4E1C387EB4; Tue, 18 Jun 2019 18:02:51 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F309518C1E; Tue, 18 Jun 2019 18:02:50 +0000 (UTC) (envelope-from olgeni@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5II2oO5096773; Tue, 18 Jun 2019 18:02:50 GMT (envelope-from olgeni@FreeBSD.org) Received: (from olgeni@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5II2oQo096772; Tue, 18 Jun 2019 18:02:50 GMT (envelope-from olgeni@FreeBSD.org) Message-Id: <201906181802.x5II2oQo096772@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: olgeni set sender to olgeni@FreeBSD.org using -f From: Jimmy Olgeni Date: Tue, 18 Jun 2019 18:02:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504492 - head/lang/erlang-wx X-SVN-Group: ports-head X-SVN-Commit-Author: olgeni X-SVN-Commit-Paths: head/lang/erlang-wx X-SVN-Commit-Revision: 504492 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4E1C387EB4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 18:02:51 -0000 Author: olgeni Date: Tue Jun 18 18:02:50 2019 New Revision: 504492 URL: https://svnweb.freebsd.org/changeset/ports/504492 Log: Update lang/erlang-wx to version 21.3.8.4. Modified: head/lang/erlang-wx/Makefile head/lang/erlang-wx/distinfo Modified: head/lang/erlang-wx/Makefile ============================================================================== --- head/lang/erlang-wx/Makefile Tue Jun 18 18:02:40 2019 (r504491) +++ head/lang/erlang-wx/Makefile Tue Jun 18 18:02:50 2019 (r504492) @@ -2,7 +2,7 @@ PORTNAME= erlang DISTVERSIONPREFIX= OTP- -DISTVERSION= 21.3.8.3 +DISTVERSION= 21.3.8.4 PORTEPOCH= 1 CATEGORIES= lang parallel PKGNAMESUFFIX= -wx Modified: head/lang/erlang-wx/distinfo ============================================================================== --- head/lang/erlang-wx/distinfo Tue Jun 18 18:02:40 2019 (r504491) +++ head/lang/erlang-wx/distinfo Tue Jun 18 18:02:50 2019 (r504492) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559635771 -SHA256 (erlang/erlang-otp-OTP-21.3.8.3_GH0.tar.gz) = 58e6e823ce0aa06a36d3dc0caa8b1df6475dc051a6e19f465924ae41a8c3e594 -SIZE (erlang/erlang-otp-OTP-21.3.8.3_GH0.tar.gz) = 54046761 +TIMESTAMP = 1560846650 +SHA256 (erlang/erlang-otp-OTP-21.3.8.4_GH0.tar.gz) = a5d558cb189e026cd45114ffa9bb52752945e7e450c6e7e396b2e626e5fffcc8 +SIZE (erlang/erlang-otp-OTP-21.3.8.4_GH0.tar.gz) = 54057465 From owner-svn-ports-all@freebsd.org Tue Jun 18 18:28:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 209AF15C4E86; Tue, 18 Jun 2019 18:28:33 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BAF3288A44; Tue, 18 Jun 2019 18:28:32 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 927FB18F7C; Tue, 18 Jun 2019 18:28:32 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IISWlb007524; Tue, 18 Jun 2019 18:28:32 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IISWSN007522; Tue, 18 Jun 2019 18:28:32 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201906181828.x5IISWSN007522@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Tue, 18 Jun 2019 18:28:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504493 - head/databases/pg_citus X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: head/databases/pg_citus X-SVN-Commit-Revision: 504493 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BAF3288A44 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.93)[-0.930,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 18:28:33 -0000 Author: matthew Date: Tue Jun 18 18:28:31 2019 New Revision: 504493 URL: https://svnweb.freebsd.org/changeset/ports/504493 Log: Upgrade to 8.2.2 ChangeLog: https://github.com/citusdata/citus/blob/master/CHANGELOG.md Modified: head/databases/pg_citus/Makefile head/databases/pg_citus/distinfo Modified: head/databases/pg_citus/Makefile ============================================================================== --- head/databases/pg_citus/Makefile Tue Jun 18 18:02:50 2019 (r504492) +++ head/databases/pg_citus/Makefile Tue Jun 18 18:28:31 2019 (r504493) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= citus -PORTVERSION= 8.2.1 +PORTVERSION= 8.2.2 DISTVERSIONPREFIX= v -PORTREVISION= 1 CATEGORIES= databases PKGNAMEPREFIX= pg_ Modified: head/databases/pg_citus/distinfo ============================================================================== --- head/databases/pg_citus/distinfo Tue Jun 18 18:02:50 2019 (r504492) +++ head/databases/pg_citus/distinfo Tue Jun 18 18:28:31 2019 (r504493) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554402328 -SHA256 (citusdata-citus-v8.2.1_GH0.tar.gz) = 1872de7d516634ab434783dcaec1329192fd8d08dfead776b41022aa38bac196 -SIZE (citusdata-citus-v8.2.1_GH0.tar.gz) = 2781014 +TIMESTAMP = 1560838263 +SHA256 (citusdata-citus-v8.2.2_GH0.tar.gz) = e0b8dfc7477f34730d32fd90c7023ad3159da796e036540130fab28e06c70795 +SIZE (citusdata-citus-v8.2.2_GH0.tar.gz) = 2781504 From owner-svn-ports-all@freebsd.org Tue Jun 18 18:32:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ECE3715C5087; Tue, 18 Jun 2019 18:32:42 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8E00D88DE9; Tue, 18 Jun 2019 18:32:42 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 66DF31911D; Tue, 18 Jun 2019 18:32:42 +0000 (UTC) (envelope-from matthew@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IIWgDV012897; Tue, 18 Jun 2019 18:32:42 GMT (envelope-from matthew@FreeBSD.org) Received: (from matthew@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IIWgex012896; Tue, 18 Jun 2019 18:32:42 GMT (envelope-from matthew@FreeBSD.org) Message-Id: <201906181832.x5IIWgex012896@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: matthew set sender to matthew@FreeBSD.org using -f From: Matthew Seaman Date: Tue, 18 Jun 2019 18:32:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504494 - head/databases/pg_citus X-SVN-Group: ports-head X-SVN-Commit-Author: matthew X-SVN-Commit-Paths: head/databases/pg_citus X-SVN-Commit-Revision: 504494 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8E00D88DE9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.93)[-0.930,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 18:32:43 -0000 Author: matthew Date: Tue Jun 18 18:32:41 2019 New Revision: 504494 URL: https://svnweb.freebsd.org/changeset/ports/504494 Log: Take off the BROKEN_i386 tag, as this now builds correctly on i386. Modified: head/databases/pg_citus/Makefile Modified: head/databases/pg_citus/Makefile ============================================================================== --- head/databases/pg_citus/Makefile Tue Jun 18 18:28:31 2019 (r504493) +++ head/databases/pg_citus/Makefile Tue Jun 18 18:32:41 2019 (r504494) @@ -12,8 +12,6 @@ COMMENT= Horizontally scale Postgresql using sharding LICENSE= AGPLv3 -BROKEN_i386= fails to compile: transaction/backend_data.c:727:2: error: unknown type name 'pg_atomic_uint64'; did you mean 'pg_atomic_uint32'? - USES= gmake pgsql:10+ autoreconf readline WANT_PGSQL= lib server GNU_CONFIGURE= yes From owner-svn-ports-all@freebsd.org Tue Jun 18 18:35:21 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9427315C50E8; Tue, 18 Jun 2019 18:35:21 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 39F0188F2A; Tue, 18 Jun 2019 18:35:21 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E6B9A1911E; Tue, 18 Jun 2019 18:35:20 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IIZKDZ013212; Tue, 18 Jun 2019 18:35:20 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IIZJcd013207; Tue, 18 Jun 2019 18:35:19 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201906181835.x5IIZJcd013207@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Tue, 18 Jun 2019 18:35:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504495 - in head/databases: mariadb102-client/files mariadb102-server mariadb102-server/files X-SVN-Group: ports-head X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: in head/databases: mariadb102-client/files mariadb102-server mariadb102-server/files X-SVN-Commit-Revision: 504495 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 39F0188F2A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.93)[-0.929,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 18:35:21 -0000 Author: brnrd Date: Tue Jun 18 18:35:19 2019 New Revision: 504495 URL: https://svnweb.freebsd.org/changeset/ports/504495 Log: databases/mariadb102-server: Bugfix update to 10.2.25 Modified: head/databases/mariadb102-client/files/patch-CMakeLists.txt head/databases/mariadb102-server/Makefile head/databases/mariadb102-server/distinfo head/databases/mariadb102-server/files/patch-CMakeLists.txt head/databases/mariadb102-server/files/patch-plugin_auth__ed25519_CMakeLists.txt Modified: head/databases/mariadb102-client/files/patch-CMakeLists.txt ============================================================================== --- head/databases/mariadb102-client/files/patch-CMakeLists.txt Tue Jun 18 18:32:41 2019 (r504494) +++ head/databases/mariadb102-client/files/patch-CMakeLists.txt Tue Jun 18 18:35:19 2019 (r504495) @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2017-04-04 19:11:32 UTC +--- CMakeLists.txt.orig 2019-06-14 18:29:40 UTC +++ CMakeLists.txt -@@ -170,6 +170,8 @@ IF(DISABLE_SHARED) +@@ -172,6 +172,8 @@ IF(DISABLE_SHARED) ENDIF() OPTION(ENABLED_PROFILING "Enable profiling" ON) OPTION(WITHOUT_SERVER "Build only the client library and clients" OFF) @@ -9,19 +9,19 @@ IF(UNIX) OPTION(WITH_VALGRIND "Valgrind instrumentation" OFF) ENDIF() -@@ -454,6 +456,7 @@ ADD_CUSTOM_TARGET(INFO_BIN ALL +@@ -472,6 +474,7 @@ ADD_CUSTOM_TARGET(INFO_BIN ALL WORKING_DIRECTORY ${CMAKE_BINARY_DIR} ) +IF(NOT WITHOUT_DOCS) - INSTALL_DOCUMENTATION(README.md CREDITS COPYING COPYING.thirdparty + INSTALL_DOCUMENTATION(README.md CREDITS COPYING THIRDPARTY EXCEPTIONS-CLIENT COMPONENT Readme) -@@ -465,6 +468,7 @@ IF(UNIX) - INSTALL_DOCUMENTATION(Docs/INSTALL-BINARY COMPONENT Readme) +@@ -481,6 +484,7 @@ INSTALL_DOCUMENTATION(README.md CREDITS COPYING THIRDP + + IF(UNIX) INSTALL_DOCUMENTATION(Docs/INSTALL-BINARY Docs/README-wsrep COMPONENT Readme) - ENDIF() +ENDIF() + ENDIF() - INCLUDE(CPack) - + INCLUDE(build_depends) Modified: head/databases/mariadb102-server/Makefile ============================================================================== --- head/databases/mariadb102-server/Makefile Tue Jun 18 18:32:41 2019 (r504494) +++ head/databases/mariadb102-server/Makefile Tue Jun 18 18:35:19 2019 (r504495) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME?= mariadb -PORTVERSION= 10.2.24 +PORTVERSION= 10.2.25 PORTREVISION?= 0 CATEGORIES= databases ipv6 MASTER_SITES= http://mirrors.supportex.net/${SITESDIR}/ \ Modified: head/databases/mariadb102-server/distinfo ============================================================================== --- head/databases/mariadb102-server/distinfo Tue Jun 18 18:32:41 2019 (r504494) +++ head/databases/mariadb102-server/distinfo Tue Jun 18 18:35:19 2019 (r504495) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557489019 -SHA256 (mariadb-10.2.24.tar.gz) = 97f4d924e69f77abb2f650116785c2f5ef356230442534ebcbaadb51d9bb8bc4 -SIZE (mariadb-10.2.24.tar.gz) = 71965656 +TIMESTAMP = 1560710508 +SHA256 (mariadb-10.2.25.tar.gz) = face0818bb51b7dc20712ae225489c85a477d505cb6c2f6a6f6cf7d51ecfecc9 +SIZE (mariadb-10.2.25.tar.gz) = 71997847 Modified: head/databases/mariadb102-server/files/patch-CMakeLists.txt ============================================================================== --- head/databases/mariadb102-server/files/patch-CMakeLists.txt Tue Jun 18 18:32:41 2019 (r504494) +++ head/databases/mariadb102-server/files/patch-CMakeLists.txt Tue Jun 18 18:35:19 2019 (r504495) @@ -1,6 +1,6 @@ ---- CMakeLists.txt.orig 2017-05-14 23:13:15 UTC +--- CMakeLists.txt.orig 2019-06-14 18:29:40 UTC +++ CMakeLists.txt -@@ -170,6 +170,8 @@ IF(DISABLE_SHARED) +@@ -172,6 +172,8 @@ IF(DISABLE_SHARED) ENDIF() OPTION(ENABLED_PROFILING "Enable profiling" ON) OPTION(WITHOUT_SERVER "Build only the client library and clients" OFF) @@ -9,19 +9,19 @@ IF(UNIX) OPTION(WITH_VALGRIND "Valgrind instrumentation" OFF) ENDIF() -@@ -452,6 +454,7 @@ ADD_CUSTOM_TARGET(INFO_BIN ALL +@@ -472,6 +474,7 @@ ADD_CUSTOM_TARGET(INFO_BIN ALL WORKING_DIRECTORY ${CMAKE_BINARY_DIR} ) +IF(NOT WITHOUT_DOCS) - INSTALL_DOCUMENTATION(README.md CREDITS COPYING COPYING.thirdparty + INSTALL_DOCUMENTATION(README.md CREDITS COPYING THIRDPARTY EXCEPTIONS-CLIENT COMPONENT Readme) -@@ -463,6 +466,7 @@ IF(UNIX) - INSTALL_DOCUMENTATION(Docs/INSTALL-BINARY COMPONENT Readme) +@@ -481,6 +484,7 @@ INSTALL_DOCUMENTATION(README.md CREDITS COPYING THIRDP + + IF(UNIX) INSTALL_DOCUMENTATION(Docs/INSTALL-BINARY Docs/README-wsrep COMPONENT Readme) - ENDIF() +ENDIF() + ENDIF() - INCLUDE(CPack) - + INCLUDE(build_depends) Modified: head/databases/mariadb102-server/files/patch-plugin_auth__ed25519_CMakeLists.txt ============================================================================== --- head/databases/mariadb102-server/files/patch-plugin_auth__ed25519_CMakeLists.txt Tue Jun 18 18:32:41 2019 (r504494) +++ head/databases/mariadb102-server/files/patch-plugin_auth__ed25519_CMakeLists.txt Tue Jun 18 18:35:19 2019 (r504495) @@ -1,14 +1,14 @@ ---- plugin/auth_ed25519/CMakeLists.txt.orig 2017-05-14 23:13:17 UTC +--- plugin/auth_ed25519/CMakeLists.txt.orig 2019-06-14 18:29:42 UTC +++ plugin/auth_ed25519/CMakeLists.txt -@@ -23,9 +24,11 @@ ENDIF() +@@ -23,9 +23,11 @@ ENDIF() # compiled with MYSQL_DYNAMIC_PLUGIN MYSQL_ADD_PLUGIN(auth_ed25519 server_ed25519.c ${REF10_SOURCES} MODULE_ONLY) +IF(NOT WITHOUT_CLIENT) # client plugin and unit test ed25519-t can use the library MYSQL_ADD_PLUGIN(client_ed25519 client_ed25519.c MODULE_ONLY - CLIENT LINK_LIBRARIES mysys_ssl ref10 COMPONENT ClientPlugins) + CLIENT LINK_LIBRARIES ref10 mysys_ssl COMPONENT ClientPlugins) +ENDIF() IF(WITH_UNIT_TESTS) - MY_ADD_TESTS(ed25519 LINK_LIBRARIES mysys ref10) + MY_ADD_TESTS(ed25519 LINK_LIBRARIES ref10 mysys_ssl) From owner-svn-ports-all@freebsd.org Tue Jun 18 19:00:56 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 741D515C5992; Tue, 18 Jun 2019 19:00:56 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 17FF489F67; Tue, 18 Jun 2019 19:00:56 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E8740194D0; Tue, 18 Jun 2019 19:00:55 +0000 (UTC) (envelope-from jwb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IJ0tkr025344; Tue, 18 Jun 2019 19:00:55 GMT (envelope-from jwb@FreeBSD.org) Received: (from jwb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IJ0tsl025343; Tue, 18 Jun 2019 19:00:55 GMT (envelope-from jwb@FreeBSD.org) Message-Id: <201906181900.x5IJ0tsl025343@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jwb set sender to jwb@FreeBSD.org using -f From: "Jason W. Bacon" Date: Tue, 18 Jun 2019 19:00:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504496 - in head/science/afni: . files X-SVN-Group: ports-head X-SVN-Commit-Author: jwb X-SVN-Commit-Paths: in head/science/afni: . files X-SVN-Commit-Revision: 504496 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 17FF489F67 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.93)[-0.930,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 19:00:56 -0000 Author: jwb Date: Tue Jun 18 19:00:55 2019 New Revision: 504496 URL: https://svnweb.freebsd.org/changeset/ports/504496 Log: science/afni: Upgrade to 19.1.20 Upstreamed FreeBSD patches, other minor fixes and enhancements Reported by: portscout, Rick Reynolds (NIH) Deleted: head/science/afni/files/patch-nifti_cifti_afni__xml.h head/science/afni/files/patch-prf__common__circular.c head/science/afni/files/patch-ptaylor_Makefile.ptaylor.INCLUDE Modified: head/science/afni/Makefile head/science/afni/distinfo Modified: head/science/afni/Makefile ============================================================================== --- head/science/afni/Makefile Tue Jun 18 18:35:19 2019 (r504495) +++ head/science/afni/Makefile Tue Jun 18 19:00:55 2019 (r504496) @@ -2,7 +2,7 @@ PORTNAME= afni DISTVERSIONPREFIX= AFNI_ -DISTVERSION= 19.1.18 +DISTVERSION= 19.1.20 CATEGORIES= science biology graphics perl5 python MAINTAINER= jwb@FreeBSD.org Modified: head/science/afni/distinfo ============================================================================== --- head/science/afni/distinfo Tue Jun 18 18:35:19 2019 (r504495) +++ head/science/afni/distinfo Tue Jun 18 19:00:55 2019 (r504496) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559998284 -SHA256 (afni-afni-AFNI_19.1.18_GH0.tar.gz) = 73be9fa066ba3da3f035c9935612c6f4254257be4f8b99df29437cdd0ca31b07 -SIZE (afni-afni-AFNI_19.1.18_GH0.tar.gz) = 38927911 +TIMESTAMP = 1560861068 +SHA256 (afni-afni-AFNI_19.1.20_GH0.tar.gz) = d9d63e3c8f4d38b28c4ceb71ee5537e66f400a6f2b2e0443fa58f2cf7a112007 +SIZE (afni-afni-AFNI_19.1.20_GH0.tar.gz) = 38939294 From owner-svn-ports-all@freebsd.org Tue Jun 18 19:16:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E16815C5F67; Tue, 18 Jun 2019 19:16:42 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 309A58A675; Tue, 18 Jun 2019 19:16:42 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 02151197FA; Tue, 18 Jun 2019 19:16:42 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IJGfOf034329; Tue, 18 Jun 2019 19:16:41 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IJGfAG034327; Tue, 18 Jun 2019 19:16:41 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906181916.x5IJGfAG034327@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Tue, 18 Jun 2019 19:16:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504497 - head/net/shmux X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/net/shmux X-SVN-Commit-Revision: 504497 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 309A58A675 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 19:16:42 -0000 Author: kai Date: Tue Jun 18 19:16:41 2019 New Revision: 504497 URL: https://svnweb.freebsd.org/changeset/ports/504497 Log: net/shmux: Update to 1.0.3 While I'm here: * Switch to GitHub and update the WWW field to avoid redirects. * Modernize the option knobs. * Update the license that has changed with the new release. * Add "localbase" to USES to fix a bug that has been there a long time if the PCRE option was enabled. Before that the configure script was able to find libpcre but used bogus paths for the -I and -L compiler flags which produced a binary that was never linked against libpcre. PR: 238618 Submitted by: Thomas Merkel Approved by: portmgr (blanket, unmaintained port) Modified: head/net/shmux/Makefile head/net/shmux/distinfo head/net/shmux/pkg-descr Modified: head/net/shmux/Makefile ============================================================================== --- head/net/shmux/Makefile Tue Jun 18 19:00:55 2019 (r504496) +++ head/net/shmux/Makefile Tue Jun 18 19:16:41 2019 (r504497) @@ -2,18 +2,19 @@ # $FreeBSD$ PORTNAME= shmux -DISTVERSION= 1.0.2 -PORTREVISION= 3 +DISTVERSIONPREFIX= v +DISTVERSION= 1.0.3 CATEGORIES= net -MASTER_SITES= http://web.taranis.org/shmux/dist/ MAINTAINER= ports@FreeBSD.org COMMENT= Utility to run commands on multiple hosts using shell commands -LICENSE= BSD4CLAUSE +LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= ncurses tar:tgz +USES= localbase ncurses +USE_GITHUB= yes + GNU_CONFIGURE= yes CONFIGURE_ARGS= --datadir=${PREFIX}/share/examples @@ -23,18 +24,9 @@ OPTIONS_DEFINE= FPING PCRE OPTIONS_DEFAULT= FPING FPING_DESC= Use fping utility -.include - -.if ${PORT_OPTIONS:MFPING} -RUN_DEPENDS+= fping:net/fping -.endif - -.if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= libpcre.so:devel/pcre -CONFIGURE_ARGS+= --with-pcre=${LOCALBASE}/lib -.else -CONFIGURE_ARGS+= --with-pcre=no -.endif +FPING_RUN_DEPENDS= fping:net/fping +PCRE_LIB_DEPENDS= libpcre.so:devel/pcre +PCRE_CONFIGURE_WITH= pcre=${LOCALBASE}/lib post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} Modified: head/net/shmux/distinfo ============================================================================== --- head/net/shmux/distinfo Tue Jun 18 19:00:55 2019 (r504496) +++ head/net/shmux/distinfo Tue Jun 18 19:16:41 2019 (r504497) @@ -1,2 +1,3 @@ -SHA256 (shmux-1.0.2.tgz) = 0886aaca4936926d526988d85df403fa1679a60c355f1be8432bb4bc1e36580f -SIZE (shmux-1.0.2.tgz) = 110473 +TIMESTAMP = 1560860410 +SHA256 (shmux-shmux-v1.0.3_GH0.tar.gz) = c9f8863e2550e23e633cf5fc7a9c4c52d287059f424ef78aba6ecd98390fb9ab +SIZE (shmux-shmux-v1.0.3_GH0.tar.gz) = 116613 Modified: head/net/shmux/pkg-descr ============================================================================== --- head/net/shmux/pkg-descr Tue Jun 18 19:00:55 2019 (r504496) +++ head/net/shmux/pkg-descr Tue Jun 18 19:16:41 2019 (r504497) @@ -5,4 +5,4 @@ the children is received by shmux and either (optional user using an easy to read format, or written to files for later processing making it well suited for use in scripts. -WWW: http://web.taranis.org/shmux/ +WWW: https://github.com/shmux/shmux From owner-svn-ports-all@freebsd.org Tue Jun 18 19:24:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7D42E15C653E; Tue, 18 Jun 2019 19:24:53 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EECB98AC66; Tue, 18 Jun 2019 19:24:52 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C3455199B3; Tue, 18 Jun 2019 19:24:52 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IJOq1L051257; Tue, 18 Jun 2019 19:24:52 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IJOhCI051210; Tue, 18 Jun 2019 19:24:43 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201906181924.x5IJOhCI051210@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Tue, 18 Jun 2019 19:24:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504498 - in head/www/iridium: . files X-SVN-Group: ports-head X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: in head/www/iridium: . files X-SVN-Commit-Revision: 504498 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EECB98AC66 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.948,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 19:24:54 -0000 Author: cpm Date: Tue Jun 18 19:24:43 2019 New Revision: 504498 URL: https://svnweb.freebsd.org/changeset/ports/504498 Log: www/iridium: Update to 2019.04.73 Submitted by: Matthias Wolf Added: head/www/iridium/files/patch-base_allocator_partition__allocator_page__allocator.cc (contents, props changed) head/www/iridium/files/patch-base_allocator_partition__allocator_page__allocator__internals__posix.h (contents, props changed) head/www/iridium/files/patch-base_debug_elf__reader__linux.cc (contents, props changed) head/www/iridium/files/patch-base_debug_stack__trace.cc (contents, props changed) head/www/iridium/files/patch-base_files_file__path__watcher__unittest.cc (contents, props changed) head/www/iridium/files/patch-base_files_file__util__posix.cc (contents, props changed) head/www/iridium/files/patch-base_files_memory__mapped__file__posix.cc (contents, props changed) head/www/iridium/files/patch-base_native__library__unittest.cc (contents, props changed) head/www/iridium/files/patch-base_numerics_safe__math__shared__impl.h (contents, props changed) head/www/iridium/files/patch-base_posix_can__lower__nice__to.cc (contents, props changed) head/www/iridium/files/patch-base_process_kill__posix.cc (contents, props changed) head/www/iridium/files/patch-base_process_process__linux.cc (contents, props changed) head/www/iridium/files/patch-base_process_process__unittest.cc (contents, props changed) head/www/iridium/files/patch-base_system_sys__info__freebsd.cc (contents, props changed) head/www/iridium/files/patch-base_system_sys__info__posix.cc (contents, props changed) head/www/iridium/files/patch-base_task_task__scheduler_scheduler__single__thread__task__runner__manager__unittest.cc (contents, props changed) head/www/iridium/files/patch-base_test_generate__fontconfig__caches.cc (contents, props changed) head/www/iridium/files/patch-base_trace__event_malloc__dump__provider.cc (contents, props changed) head/www/iridium/files/patch-build_config_freetype_freetype.gni (contents, props changed) head/www/iridium/files/patch-build_config_gclient__args.gni (contents, props changed) head/www/iridium/files/patch-build_config_sysroot.gni (contents, props changed) head/www/iridium/files/patch-build_gn__run__binary.py (contents, props changed) head/www/iridium/files/patch-build_linux_unbundle_replace__gn__files.py (contents, props changed) head/www/iridium/files/patch-build_toolchain_gcc__toolchain.gni (contents, props changed) head/www/iridium/files/patch-chrome_app_theme_chrome__unscaled__resources.grd (contents, props changed) head/www/iridium/files/patch-chrome_browser_apps_platform__apps_api_music__manager__private_device__id__linux.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_autocomplete_chrome__autocomplete__scheme__classifier.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_background_background__mode__optimizer.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_custom__handlers_protocol__handler__registry.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_devtools_devtools__eye__dropper.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_download_download__item__model.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_extensions_api_image__writer__private_removable__storage__provider.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_extensions_install__signer.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_media_router_discovery_discovery__network__list__posix.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_media_router_discovery_discovery__network__list__wifi__linux.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_media_router_providers_wired__display_wired__display__media__route__provider.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_media_webrtc_webrtc__event__log__uploader.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_media_webrtc_webrtc__logging__handler__host.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_media_webrtc_webrtc__logging__handler__host.h (contents, props changed) head/www/iridium/files/patch-chrome_browser_metrics_bluetooth__available__utility.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_net_system__network__context__manager.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_password__manager_password__store__factory.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_policy_configuration__policy__handler__list__factory.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_policy_machine__level__user__cloud__policy__controller.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_prefs_browser__prefs.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_prefs_pref__service__incognito__whitelist.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_profiles_chrome__browser__main__extra__parts__profiles.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_profiles_profile__attributes__entry.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_resources_settings_appearance__page_appearance__browser__proxy.js (contents, props changed) head/www/iridium/files/patch-chrome_browser_resources_settings_appearance__page_appearance__page.js (contents, props changed) head/www/iridium/files/patch-chrome_browser_signin_signin__util.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_ssl_ssl__error__controller__client.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_ui_browser__view__prefs.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_ui_browser__window.h (contents, props changed) head/www/iridium/files/patch-chrome_browser_ui_sad__tab.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_ui_views_frame_browser__non__client__frame__view__factory__views.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_ui_views_frame_browser__view.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_ui_views_frame_browser__view.h (contents, props changed) head/www/iridium/files/patch-chrome_browser_ui_views_hung__renderer__view.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_ui_views_tabs_new__tab__button.cc (contents, props changed) head/www/iridium/files/patch-chrome_browser_web__applications_extensions_web__app__extension__shortcut.cc (contents, props changed) head/www/iridium/files/patch-chrome_common_extensions_api_api__sources.gni (contents, props changed) head/www/iridium/files/patch-chrome_common_webui__url__constants.cc (contents, props changed) head/www/iridium/files/patch-chrome_common_webui__url__constants.h (contents, props changed) head/www/iridium/files/patch-chrome_renderer_chrome__content__renderer__client.cc (contents, props changed) head/www/iridium/files/patch-chrome_test_BUILD.gn (contents, props changed) head/www/iridium/files/patch-chromecast_browser_cast__browser__main__parts.cc (contents, props changed) head/www/iridium/files/patch-chromecast_browser_tts_tts__controller__impl.cc (contents, props changed) head/www/iridium/files/patch-chromecast_media_cma_backend_media__pipeline__backend__for__mixer.cc (contents, props changed) head/www/iridium/files/patch-components_autofill__strings.grdp (contents, props changed) head/www/iridium/files/patch-components_autofill_core_browser_autofill__experiments.h (contents, props changed) head/www/iridium/files/patch-components_autofill_core_common_autofill__util.cc (contents, props changed) head/www/iridium/files/patch-components_download_internal_common_base__file.cc (contents, props changed) head/www/iridium/files/patch-components_download_quarantine_quarantine__linux.cc (contents, props changed) head/www/iridium/files/patch-components_download_quarantine_test__support__linux.cc (contents, props changed) head/www/iridium/files/patch-components_feature__engagement_public_event__constants.cc (contents, props changed) head/www/iridium/files/patch-components_feature__engagement_public_event__constants.h (contents, props changed) head/www/iridium/files/patch-components_metrics_metrics__log.cc (contents, props changed) head/www/iridium/files/patch-components_network__session__configurator_browser_network__session__configurator.cc (contents, props changed) head/www/iridium/files/patch-components_new__or__sad__tab__strings.grdp (contents, props changed) head/www/iridium/files/patch-components_policy_core_common_cloud_cloud__policy__util.cc (contents, props changed) head/www/iridium/files/patch-components_previews_core_previews__features.cc (contents, props changed) head/www/iridium/files/patch-components_services_filesystem_file__system__app.cc (contents, props changed) head/www/iridium/files/patch-components_services_font_font__service__app.cc (contents, props changed) head/www/iridium/files/patch-components_startup__metric__utils_browser_startup__metric__utils.cc (contents, props changed) head/www/iridium/files/patch-components_storage__monitor_removable__device__constants.cc (contents, props changed) head/www/iridium/files/patch-components_storage__monitor_removable__device__constants.h (contents, props changed) head/www/iridium/files/patch-components_sync_device__info_local__device__info__provider__impl.cc (contents, props changed) head/www/iridium/files/patch-content_app_content__main__runner__impl.cc (contents, props changed) head/www/iridium/files/patch-content_browser_memory_swap__metrics__driver__impl__linux.cc (contents, props changed) head/www/iridium/files/patch-content_browser_renderer__host_input_input__device__change__observer.cc (contents, props changed) head/www/iridium/files/patch-content_browser_scheduler_responsiveness_native__event__observer.cc (contents, props changed) head/www/iridium/files/patch-content_browser_scheduler_responsiveness_native__event__observer.h (contents, props changed) head/www/iridium/files/patch-content_browser_service__manager_service__manager__context.cc (contents, props changed) head/www/iridium/files/patch-content_browser_storage__partition__impl.cc (contents, props changed) head/www/iridium/files/patch-content_browser_storage__partition__impl__map.cc (contents, props changed) head/www/iridium/files/patch-content_browser_webui_shared__resources__data__source.cc (contents, props changed) head/www/iridium/files/patch-content_common_common__sandbox__support__linux.cc (contents, props changed) head/www/iridium/files/patch-content_common_user__agent.cc (contents, props changed) head/www/iridium/files/patch-content_gpu_gpu__sandbox__hook__linux.cc (contents, props changed) head/www/iridium/files/patch-content_ppapi__plugin_ppapi__blink__platform__impl.cc (contents, props changed) head/www/iridium/files/patch-content_ppapi__plugin_ppapi__blink__platform__impl.h (contents, props changed) head/www/iridium/files/patch-content_public_app_content__packaged__services__manifest.cc (contents, props changed) head/www/iridium/files/patch-content_public_app_v8__snapshot__overlay__manifest.cc (contents, props changed) head/www/iridium/files/patch-content_public_common_common__param__traits__macros.h (contents, props changed) head/www/iridium/files/patch-content_public_common_content__features.cc (contents, props changed) head/www/iridium/files/patch-content_public_common_use__zoom__for__dsf__policy.cc (contents, props changed) head/www/iridium/files/patch-content_public_test_mock__render__thread.cc (contents, props changed) head/www/iridium/files/patch-content_renderer_media_audio_audio__device__factory.cc (contents, props changed) head/www/iridium/files/patch-content_renderer_media_webrtc_webrtc__audio__renderer__unittest.cc (contents, props changed) head/www/iridium/files/patch-content_shell_BUILD.gn (contents, props changed) head/www/iridium/files/patch-content_shell_test__runner_test__runner.cc (contents, props changed) head/www/iridium/files/patch-content_test_content__test__suite.cc (contents, props changed) head/www/iridium/files/patch-content_utility_utility__blink__platform__with__sandbox__support__impl.cc (contents, props changed) head/www/iridium/files/patch-content_utility_utility__blink__platform__with__sandbox__support__impl.h (contents, props changed) head/www/iridium/files/patch-extensions_browser_api_messaging_message__service.cc (contents, props changed) head/www/iridium/files/patch-extensions_browser_api_networking__private_networking__private__delegate__factory.cc (contents, props changed) head/www/iridium/files/patch-extensions_browser_browser__context__keyed__service__factories.cc (contents, props changed) head/www/iridium/files/patch-extensions_common_api___permission__features.json (contents, props changed) head/www/iridium/files/patch-extensions_common_feature__switch.cc (contents, props changed) head/www/iridium/files/patch-extensions_renderer_bindings_api__binding__util.cc (contents, props changed) head/www/iridium/files/patch-extensions_shell_app_shell__main__delegate.cc (contents, props changed) head/www/iridium/files/patch-gpu_command__buffer_common_gpu__memory__buffer__support.cc (contents, props changed) head/www/iridium/files/patch-gpu_command__buffer_tests_gl__copy__texture__CHROMIUM__unittest.cc (contents, props changed) head/www/iridium/files/patch-gpu_command__buffer_tests_gl__test__utils.cc (contents, props changed) head/www/iridium/files/patch-gpu_command__buffer_tests_gl__test__utils.h (contents, props changed) head/www/iridium/files/patch-gpu_ipc_common_gpu__memory__buffer__support.cc (contents, props changed) head/www/iridium/files/patch-gpu_ipc_common_gpu__memory__buffer__support.h (contents, props changed) head/www/iridium/files/patch-gpu_ipc_service_gpu__memory__buffer__factory.cc (contents, props changed) head/www/iridium/files/patch-gpu_ipc_service_gpu__watchdog__thread.cc (contents, props changed) head/www/iridium/files/patch-gpu_ipc_service_gpu__watchdog__thread.h (contents, props changed) head/www/iridium/files/patch-headless_lib_browser_headless__request__context__manager.cc (contents, props changed) head/www/iridium/files/patch-headless_lib_browser_headless__request__context__manager.h (contents, props changed) head/www/iridium/files/patch-ipc_ipc__channel__common.cc (contents, props changed) head/www/iridium/files/patch-ipc_ipc__channel__mojo.cc (contents, props changed) head/www/iridium/files/patch-media_audio_alsa_audio__manager__alsa.cc (contents, props changed) head/www/iridium/files/patch-media_audio_audio__input__device.cc (contents, props changed) head/www/iridium/files/patch-media_base_scopedfd__helper.h (contents, props changed) head/www/iridium/files/patch-media_capture_video_create__video__capture__device__factory.cc (contents, props changed) head/www/iridium/files/patch-media_capture_video_linux_video__capture__device__factory__linux.cc (contents, props changed) head/www/iridium/files/patch-media_capture_video_mock__gpu__memory__buffer__manager.cc (contents, props changed) head/www/iridium/files/patch-media_capture_video_shared__memory__handle__provider.cc (contents, props changed) head/www/iridium/files/patch-media_capture_video_shared__memory__handle__provider.h (contents, props changed) head/www/iridium/files/patch-media_media__options.gni (contents, props changed) head/www/iridium/files/patch-media_mojo_services_gpu__mojo__media__client.cc (contents, props changed) head/www/iridium/files/patch-media_video_gpu__memory__buffer__video__frame__pool.cc (contents, props changed) head/www/iridium/files/patch-mojo_public_js_mojo__bindings__resources.grd (contents, props changed) head/www/iridium/files/patch-net_nqe_network__quality__estimator.cc (contents, props changed) head/www/iridium/files/patch-net_nqe_network__quality__estimator__unittest.cc (contents, props changed) head/www/iridium/files/patch-net_proxy__resolution_proxy__config__service__linux.cc (contents, props changed) head/www/iridium/files/patch-net_proxy__resolution_proxy__resolution__service.cc (contents, props changed) head/www/iridium/files/patch-net_socket_socket__posix.cc (contents, props changed) head/www/iridium/files/patch-net_socket_tcp__socket__posix.cc (contents, props changed) head/www/iridium/files/patch-net_third__party_quic_platform_impl_quic__ip__address__impl.cc (contents, props changed) head/www/iridium/files/patch-net_tools_cert__verify__tool_cert__verify__tool.cc (contents, props changed) head/www/iridium/files/patch-net_tools_quic_quic__http__proxy__backend.cc (contents, props changed) head/www/iridium/files/patch-printing_backend_print__backend__cups.h (contents, props changed) head/www/iridium/files/patch-remoting_base_chromoting__event.cc (contents, props changed) head/www/iridium/files/patch-remoting_client_display_sys__opengl.h (contents, props changed) head/www/iridium/files/patch-remoting_host_evaluate__capability.cc (contents, props changed) head/www/iridium/files/patch-remoting_host_host__attributes.cc (contents, props changed) head/www/iridium/files/patch-remoting_host_it2me_it2me__native__messaging__host__main.cc (contents, props changed) head/www/iridium/files/patch-remoting_host_me2me__desktop__environment.cc (contents, props changed) head/www/iridium/files/patch-remoting_host_remoting__me2me__host.cc (contents, props changed) head/www/iridium/files/patch-sandbox_linux_services_init__process__reaper.cc (contents, props changed) head/www/iridium/files/patch-sandbox_linux_services_libc__interceptor.cc (contents, props changed) head/www/iridium/files/patch-services_audio_BUILD.gn (contents, props changed) head/www/iridium/files/patch-services_content_simple__browser_simple__browser__service.h (contents, props changed) head/www/iridium/files/patch-services_device_device__service.h (contents, props changed) head/www/iridium/files/patch-services_device_geolocation_location__arbitrator.cc (contents, props changed) head/www/iridium/files/patch-services_device_serial_BUILD.gn (contents, props changed) head/www/iridium/files/patch-services_device_serial_serial__io__handler__posix.cc (contents, props changed) head/www/iridium/files/patch-services_device_time__zone__monitor_time__zone__monitor__linux.cc (contents, props changed) head/www/iridium/files/patch-services_network_network__context.cc (contents, props changed) head/www/iridium/files/patch-services_network_network__sandbox__hook__linux.cc (contents, props changed) head/www/iridium/files/patch-services_network_network__service.cc (contents, props changed) head/www/iridium/files/patch-services_network_network__service.h (contents, props changed) head/www/iridium/files/patch-services_resource__coordinator_public_cpp_memory__instrumentation_os__metrics.h (contents, props changed) head/www/iridium/files/patch-services_resource__coordinator_public_cpp_memory__instrumentation_os__metrics__linux.cc (contents, props changed) head/www/iridium/files/patch-services_service__manager_embedder_main.cc (contents, props changed) head/www/iridium/files/patch-services_service__manager_public_cpp_service__executable_BUILD.gn (contents, props changed) head/www/iridium/files/patch-services_service__manager_sandbox_sandbox__type.cc (contents, props changed) head/www/iridium/files/patch-services_service__manager_zygote_common_zygote__features.gni (contents, props changed) head/www/iridium/files/patch-services_service__manager_zygote_host_zygote__host__impl__linux.cc (contents, props changed) head/www/iridium/files/patch-services_service__manager_zygote_host_zygote__host__impl__linux.h (contents, props changed) head/www/iridium/files/patch-services_service__manager_zygote_zygote__host__linux.h (contents, props changed) head/www/iridium/files/patch-services_service__manager_zygote_zygote__linux.cc (contents, props changed) head/www/iridium/files/patch-services_service__manager_zygote_zygote__main__linux.cc (contents, props changed) head/www/iridium/files/patch-third__party_angle_src_gpu__info__util_SystemInfo__internal.h (contents, props changed) head/www/iridium/files/patch-third__party_angle_src_gpu__info__util_SystemInfo__libpci.cpp (contents, props changed) head/www/iridium/files/patch-third__party_angle_src_gpu__info__util_SystemInfo__linux.cpp (contents, props changed) head/www/iridium/files/patch-third__party_angle_src_gpu__info__util_SystemInfo__x11.cpp (contents, props changed) head/www/iridium/files/patch-third__party_angle_src_libANGLE_renderer_driver__utils.h (contents, props changed) head/www/iridium/files/patch-third__party_angle_third__party_vulkan-loader_src_loader_loader.c (contents, props changed) head/www/iridium/files/patch-third__party_angle_third__party_vulkan-loader_src_loader_vk__loader__platform.h (contents, props changed) head/www/iridium/files/patch-third__party_angle_third__party_vulkan-validation-layers_src_layers_vk__loader__platform.h (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_core_editing_editing__behavior.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_core_html_canvas_canvas__async__blob__creator.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_core_html_forms_internal__popup__menu.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_core_inspector_inspector__memory__agent.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_core_layout_layout__view.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_core_paint_paint__layer.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_core_scroll_scrollbar__theme__aura.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_BUILD.gn (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_fonts_font__cache.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_fonts_font__cache.h (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_fonts_font__description.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_fonts_font__metrics.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_fonts_font__unique__name__lookup.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_fonts_skia_font__cache__skia.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_heap_stack__frame__depth.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_wtf_BUILD.gn (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_wtf_assertions.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_wtf_container__annotations.h (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_wtf_stack__util.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_wtf_threading.cc (contents, props changed) head/www/iridium/files/patch-third__party_blink_renderer_platform_wtf_threading__pthreads.cc (contents, props changed) head/www/iridium/files/patch-third__party_breakpad_breakpad_src_common_simple__string__dictionary.h (contents, props changed) head/www/iridium/files/patch-third__party_crashpad_crashpad_build_crashpad__buildconfig.gni (contents, props changed) head/www/iridium/files/patch-third__party_crashpad_crashpad_client_BUILD.gn (contents, props changed) head/www/iridium/files/patch-third__party_crashpad_crashpad_client_crashpad__client__posix.cc (contents, props changed) head/www/iridium/files/patch-third__party_crashpad_crashpad_util_misc_address__types.h (contents, props changed) head/www/iridium/files/patch-third__party_crashpad_crashpad_util_misc_capture__context.h (contents, props changed) head/www/iridium/files/patch-third__party_crashpad_crashpad_util_misc_metrics.cc (contents, props changed) head/www/iridium/files/patch-third__party_crashpad_crashpad_util_misc_uuid.cc (contents, props changed) head/www/iridium/files/patch-third__party_crashpad_crashpad_util_posix_close__multiple.cc (contents, props changed) head/www/iridium/files/patch-third__party_crashpad_crashpad_util_posix_drop__privileges.cc (contents, props changed) head/www/iridium/files/patch-third__party_crashpad_crashpad_util_posix_signals.cc (contents, props changed) head/www/iridium/files/patch-third__party_crashpad_crashpad_util_posix_symbolic__constants__posix.cc (contents, props changed) head/www/iridium/files/patch-third__party_crc32c_src_src_crc32c__arm64__linux__check.h (contents, props changed) head/www/iridium/files/patch-third__party_googletest_src_googletest_include_gtest_internal_gtest-port.h (contents, props changed) head/www/iridium/files/patch-third__party_googletest_src_googletest_src_gtest-port.cc (contents, props changed) head/www/iridium/files/patch-third__party_googletest_src_googletest_src_gtest.cc (contents, props changed) head/www/iridium/files/patch-third__party_googletest_src_googletest_test_googletest-port-test.cc (contents, props changed) head/www/iridium/files/patch-third__party_pdfium_core_fxge_fx__ge__linux.cpp (contents, props changed) head/www/iridium/files/patch-third__party_pdfium_fxjs_cjs__publicmethods.cpp (contents, props changed) head/www/iridium/files/patch-third__party_pdfium_fxjs_fx__date__helpers.cpp (contents, props changed) head/www/iridium/files/patch-third__party_pdfium_xfa_fgas_font_cfx__fontsourceenum__file.cpp (contents, props changed) head/www/iridium/files/patch-third__party_perfetto_include_perfetto_base_build__config.h (contents, props changed) head/www/iridium/files/patch-third__party_perfetto_include_perfetto_base_event.h (contents, props changed) head/www/iridium/files/patch-third__party_perfetto_include_perfetto_base_time.h (contents, props changed) head/www/iridium/files/patch-third__party_perfetto_include_perfetto_base_watchdog__posix.h (contents, props changed) head/www/iridium/files/patch-third__party_perfetto_src_base_unix__socket.cc (contents, props changed) head/www/iridium/files/patch-third__party_perfetto_src_tracing_core_tracing__service__impl.cc (contents, props changed) head/www/iridium/files/patch-third__party_protobuf_src_google_protobuf_stubs_platform__macros.h (contents, props changed) head/www/iridium/files/patch-third__party_skia_src_opts_SkRasterPipeline__opts.h (contents, props changed) head/www/iridium/files/patch-third__party_skia_src_ports_SkFontHost__FreeType.cpp (contents, props changed) head/www/iridium/files/patch-third__party_skia_src_ports_SkOSFile__stdio.cpp (contents, props changed) head/www/iridium/files/patch-third__party_skia_third__party_vulkanmemoryallocator_include_vk__mem__alloc.h (contents, props changed) head/www/iridium/files/patch-third__party_swiftshader_src_OpenGL_libGLES__CM_libGLES__CM.hpp (contents, props changed) head/www/iridium/files/patch-third__party_swiftshader_third__party_llvm-subzero_build_Linux_include_llvm_Config_config.h (contents, props changed) head/www/iridium/files/patch-third__party_swiftshader_third__party_llvm-subzero_lib_Support_Unix_Process.inc (contents, props changed) head/www/iridium/files/patch-third__party_webrtc_rtc__base_BUILD.gn (contents, props changed) head/www/iridium/files/patch-third__party_webrtc_rtc__base_byte__order.h (contents, props changed) head/www/iridium/files/patch-third__party_webrtc_rtc__base_ifaddrs__converter.h (contents, props changed) head/www/iridium/files/patch-third__party_webrtc_rtc__base_ip__address.cc (contents, props changed) head/www/iridium/files/patch-third__party_webrtc_rtc__base_ip__address.h (contents, props changed) head/www/iridium/files/patch-third__party_webrtc_rtc__base_network.cc (contents, props changed) head/www/iridium/files/patch-third__party_webrtc_rtc__base_network.h (contents, props changed) head/www/iridium/files/patch-third__party_webrtc_rtc__base_physical__socket__server.cc (contents, props changed) head/www/iridium/files/patch-third__party_webrtc_rtc__base_physical__socket__server.h (contents, props changed) head/www/iridium/files/patch-third__party_webrtc_rtc__base_platform__thread__types.cc (contents, props changed) head/www/iridium/files/patch-third__party_webrtc_rtc__base_string__utils.h (contents, props changed) head/www/iridium/files/patch-third__party_yasm_yasm__assemble.gni (contents, props changed) head/www/iridium/files/patch-third__party_zlib_arm__features.c (contents, props changed) head/www/iridium/files/patch-tools_gn_base_files_file__posix.cc (contents, props changed) head/www/iridium/files/patch-tools_gn_build_gen.py (contents, props changed) head/www/iridium/files/patch-tools_gn_tools_gn_exec__process.cc (contents, props changed) head/www/iridium/files/patch-tools_json__schema__compiler_feature__compiler.py (contents, props changed) head/www/iridium/files/patch-tools_json__schema__compiler_model.py (contents, props changed) head/www/iridium/files/patch-ui_base_ui__base__features.cc (contents, props changed) head/www/iridium/files/patch-ui_base_ui__base__features.h (contents, props changed) head/www/iridium/files/patch-ui_gfx_BUILD.gn (contents, props changed) head/www/iridium/files/patch-ui_gfx_codec_jpeg__codec.cc (contents, props changed) head/www/iridium/files/patch-ui_gfx_gpu__memory__buffer.h (contents, props changed) head/www/iridium/files/patch-ui_gfx_ipc_gfx__param__traits__macros.h (contents, props changed) head/www/iridium/files/patch-ui_gfx_linux_client__native__pixmap__dmabuf.cc (contents, props changed) head/www/iridium/files/patch-ui_gfx_mojo_buffer__types__struct__traits.cc (contents, props changed) head/www/iridium/files/patch-ui_gfx_mojo_buffer__types__struct__traits.h (contents, props changed) head/www/iridium/files/patch-ui_gfx_native__pixmap__handle.cc (contents, props changed) head/www/iridium/files/patch-ui_gfx_native__pixmap__handle.h (contents, props changed) head/www/iridium/files/patch-ui_gl_generate__bindings.py (contents, props changed) head/www/iridium/files/patch-ui_gl_gl__bindings__api__autogen__glx.h (contents, props changed) head/www/iridium/files/patch-ui_gl_gl__bindings__autogen__glx.cc (contents, props changed) head/www/iridium/files/patch-ui_gl_gl__bindings__autogen__glx.h (contents, props changed) head/www/iridium/files/patch-ui_gl_gl__fence.cc (contents, props changed) head/www/iridium/files/patch-ui_message__center_public_cpp_message__center__constants.h (contents, props changed) head/www/iridium/files/patch-ui_message__center_views_message__popup__view.cc (contents, props changed) head/www/iridium/files/patch-ui_native__theme_native__theme.h (contents, props changed) head/www/iridium/files/patch-ui_native__theme_native__theme__base.cc (contents, props changed) head/www/iridium/files/patch-ui_strings_app__locale__settings.grd (contents, props changed) head/www/iridium/files/patch-ui_views_bubble_bubble__dialog__delegate__view.cc (contents, props changed) head/www/iridium/files/patch-ui_views_widget_desktop__aura_desktop__window__tree__host__platform.cc (contents, props changed) head/www/iridium/files/patch-ui_views_widget_desktop__aura_desktop__window__tree__host__platform.h (contents, props changed) head/www/iridium/files/patch-ui_views_window_frame__background.cc (contents, props changed) head/www/iridium/files/patch-v8_src_api.cc (contents, props changed) head/www/iridium/files/patch-v8_src_external-reference-table.cc (contents, props changed) head/www/iridium/files/patch-v8_src_trap-handler_handler-inside-posix.cc (contents, props changed) head/www/iridium/files/patch-v8_src_trap-handler_handler-inside-posix.h (contents, props changed) head/www/iridium/files/patch-v8_src_trap-handler_trap-handler.h (contents, props changed) Deleted: head/www/iridium/files/patch-base_debug_thread__heap__usage__tracker.cc head/www/iridium/files/patch-base_files_memory_mapped_file_posix.cc head/www/iridium/files/patch-base_process_kill_posix.cc head/www/iridium/files/patch-base_process_process__info__linux.cc head/www/iridium/files/patch-base_process_process__posix.cc head/www/iridium/files/patch-base_sys__info__freebsd.cc head/www/iridium/files/patch-base_sys__info__posix.cc head/www/iridium/files/patch-base_trace__event_malloc_dump_provider.cc head/www/iridium/files/patch-build_gn_run_binary.py head/www/iridium/files/patch-build_linux_unbundle_ffmpeg.gn head/www/iridium/files/patch-build_linux_unbundle_libwebp.gn head/www/iridium/files/patch-build_linux_unbundle_replace_gn_files.py head/www/iridium/files/patch-build_toolchain_gcc_toolchain.gni head/www/iridium/files/patch-chrome_app_theme_chrome_unscaled_resources.grd head/www/iridium/files/patch-chrome_browser_background_background_mode_optimizer.cc head/www/iridium/files/patch-chrome_browser_browser__process__impl.cc head/www/iridium/files/patch-chrome_browser_browser__process__impl.h head/www/iridium/files/patch-chrome_browser_devtools_devtools_eye_dropper.cc head/www/iridium/files/patch-chrome_browser_extensions_api_image_writer_private_removable_storage_provider.cc head/www/iridium/files/patch-chrome_browser_extensions_api_music__manager__private_device__id__linux.cc head/www/iridium/files/patch-chrome_browser_media_router_discovery_discovery_network_list_posix.cc head/www/iridium/files/patch-chrome_browser_media_router_discovery_discovery_network_list_wifi_linux.cc head/www/iridium/files/patch-chrome_browser_media_router_providers_wired_display_wired_display_media_route_provider.cc head/www/iridium/files/patch-chrome_browser_media_webrtc_webrtc_event_log_uploader.cc head/www/iridium/files/patch-chrome_browser_notifications_message__center__notification__manager.cc head/www/iridium/files/patch-chrome_browser_speech_tts__controller__impl.cc head/www/iridium/files/patch-chrome_browser_ssl_ssl_error_controller_client.cc head/www/iridium/files/patch-chrome_browser_ui_libgtkui_nav_button_provider_gtk3.h head/www/iridium/files/patch-chrome_browser_ui_sad_tab.cc head/www/iridium/files/patch-chrome_browser_ui_views_apps_chrome__native__app__window__views__aura.cc head/www/iridium/files/patch-chrome_browser_ui_views_frame_browser_non_client_frame_view_factory_views.cc head/www/iridium/files/patch-chrome_browser_ui_views_frame_opaque__browser__frame__view__layout.cc head/www/iridium/files/patch-chrome_browser_ui_views_profiles_avatar_button.cc head/www/iridium/files/patch-chrome_browser_ui_views_tabs_new_tab_button.cc head/www/iridium/files/patch-chrome_browser_ui_webui_extensions_extension_loader_handler.cc head/www/iridium/files/patch-chrome_browser_web__applications_web__app.cc head/www/iridium/files/patch-chrome_browser_web__applications_web__app.h head/www/iridium/files/patch-chrome_common_extensions_api_BUILD.gn head/www/iridium/files/patch-chrome_common_extensions_chrome__extensions__client.cc head/www/iridium/files/patch-chrome_common_webui_url_constants.cc head/www/iridium/files/patch-chrome_common_webui_url_constants.h head/www/iridium/files/patch-components_autofill_strings.grdp head/www/iridium/files/patch-components_download_quarantine_quarantine_linux.cc head/www/iridium/files/patch-components_drive_drive__api__util.cc head/www/iridium/files/patch-components_feature_engagement_public_event_constants.cc head/www/iridium/files/patch-components_feature_engagement_public_event_constants.h head/www/iridium/files/patch-components_json__schema_json__schema__validator.cc head/www/iridium/files/patch-components_network_session_configurator_browser_network_session_configurator.cc head/www/iridium/files/patch-components_new_or_sad_tab_strings.grdp head/www/iridium/files/patch-components_password__manager_core_browser_import_csv__reader.cc head/www/iridium/files/patch-components_password__manager_core_browser_password_reuse_defines.h head/www/iridium/files/patch-components_services_filesystem_file_system_app.cc head/www/iridium/files/patch-content_app_content_main_runner.cc head/www/iridium/files/patch-content_browser_memory_swap_metrics_driver_impl_linux.cc head/www/iridium/files/patch-content_browser_webui_web_ui_data_source_impl.cc head/www/iridium/files/patch-content_browser_webui_web_ui_data_source_impl.h head/www/iridium/files/patch-content_browser_webui_web_ui_impl.cc head/www/iridium/files/patch-content_browser_webui_web_ui_impl.h head/www/iridium/files/patch-content_browser_zygote_host_zygote_host_impl_linux.cc head/www/iridium/files/patch-content_browser_zygote_host_zygote_host_impl_linux.h head/www/iridium/files/patch-content_common_common_sandbox_support_linux.cc head/www/iridium/files/patch-content_common_user_agent.cc head/www/iridium/files/patch-content_common_view__messages.h head/www/iridium/files/patch-content_gpu_gpu_sandbox_hook_linux.cc head/www/iridium/files/patch-content_ppapi_plugin_ppapi_plugin_main.cc head/www/iridium/files/patch-content_public_browser_web_ui.h head/www/iridium/files/patch-content_public_browser_web_ui_data_source.h head/www/iridium/files/patch-content_public_browser_zygote_host_linux.h head/www/iridium/files/patch-content_public_common_zygote_features.gni head/www/iridium/files/patch-content_renderer_renderer_main.cc head/www/iridium/files/patch-content_renderer_webscrollbarbehavior__impl__aura.cc head/www/iridium/files/patch-content_test_content_test_suite.cc head/www/iridium/files/patch-content_utility_utility_main.cc head/www/iridium/files/patch-content_zygote_zygote_linux.cc head/www/iridium/files/patch-content_zygote_zygote_main_linux.cc head/www/iridium/files/patch-device_geolocation_location__arbitrator.cc head/www/iridium/files/patch-device_serial_BUILD.gn head/www/iridium/files/patch-device_serial_serial__io__handler__posix.cc head/www/iridium/files/patch-extensions_browser_api_messaging_message_service.cc head/www/iridium/files/patch-extensions_browser_api_networking__private_networking__private__event__router__factory.cc head/www/iridium/files/patch-extensions_browser_api_networking__private_networking__private_delegate_factory.cc head/www/iridium/files/patch-extensions_common_api__permission_features.json head/www/iridium/files/patch-extensions_common_feature_switch.cc head/www/iridium/files/patch-gpu_config_gpu__info__collector__linux.cc head/www/iridium/files/patch-gpu_ipc_common_gpu_memory_buffer_support.cc head/www/iridium/files/patch-gpu_ipc_common_gpu_memory_buffer_support.h head/www/iridium/files/patch-gpu_ipc_service_gpu__memory_buffer_factory.cc head/www/iridium/files/patch-ipc_ipc__channel_common.cc head/www/iridium/files/patch-ipc_ipc__channel_mojo.cc head/www/iridium/files/patch-media_audio_alsa_audio_manager_alsa.cc head/www/iridium/files/patch-media_capture_video_video__capture__device__factory.cc head/www/iridium/files/patch-media_ffmpeg_ffmpeg_common.h head/www/iridium/files/patch-media_filters_ffmpeg_demuxer.cc head/www/iridium/files/patch-media_filters_ffmpeg_demuxer_unittest.cc head/www/iridium/files/patch-media_media_options.gni head/www/iridium/files/patch-mojo_edk_system_options__validation__unittest.cc head/www/iridium/files/patch-mojo_public_c_system_buffer.h head/www/iridium/files/patch-mojo_public_c_system_data__pipe.h head/www/iridium/files/patch-mojo_public_c_system_message__pipe.h head/www/iridium/files/patch-mojo_public_c_system_tests_macros__unittest.cc head/www/iridium/files/patch-net_base_network__interfaces__freebsd.cc head/www/iridium/files/patch-net_base_network__interfaces__freebsd.h head/www/iridium/files/patch-net_proxy_resolution_proxy_config_service_linux.cc head/www/iridium/files/patch-net_proxy_resolution_proxy_resolution_service.cc head/www/iridium/files/patch-net_quic_platform_impl_quic_ip_address_impl.cc head/www/iridium/files/patch-net_tools_cert_verify_tool_cert_verify_tool.cc head/www/iridium/files/patch-printing_backend_print_backend_cups.h head/www/iridium/files/patch-remoting_base_chromoting_event.cc head/www/iridium/files/patch-remoting_client_display_sys_opengl.h head/www/iridium/files/patch-remoting_host_it2me_it2me_native_messaging_host_main.cc head/www/iridium/files/patch-remoting_host_me2me_desktop_environment.cc head/www/iridium/files/patch-remoting_host_remoting_me2me_host.cc head/www/iridium/files/patch-sandbox_BUILD.gn head/www/iridium/files/patch-sandbox_linux_services_init_process_reaper.cc head/www/iridium/files/patch-sandbox_linux_services_libc_interceptor.cc head/www/iridium/files/patch-services_catalog_public_cpp_manifest__parsing__util.cc head/www/iridium/files/patch-services_network_network_sandbox_hook_linux.cc head/www/iridium/files/patch-services_network_public_cpp_cors_cors_legacy.cc head/www/iridium/files/patch-services_network_public_cpp_cors_cors_legacy.h head/www/iridium/files/patch-services_resource_coordinator_public_cpp_memory_instrumentation_os_metrics.h head/www/iridium/files/patch-services_resource_coordinator_public_cpp_memory_instrumentation_os_metrics_linux.cc head/www/iridium/files/patch-services_service__manager_public_cpp_standalone__service_BUILD.gn head/www/iridium/files/patch-services_service__manager_public_cpp_standalone__service_standalone__service.cc head/www/iridium/files/patch-third__party_angle_src_gpu_info_util_SystemInfo_internal.h head/www/iridium/files/patch-third__party_angle_src_gpu_info_util_SystemInfo_libpci.cpp head/www/iridium/files/patch-third__party_angle_src_gpu_info_util_SystemInfo_linux.cpp head/www/iridium/files/patch-third__party_angle_src_gpu_info_util_SystemInfo_x11.cpp head/www/iridium/files/patch-third__party_angle_src_libANGLE_renderer_gl_renderergl_utils.cpp head/www/iridium/files/patch-third__party_angle_third_party_vulkan-validation-layers_src_loader_loader.c head/www/iridium/files/patch-third__party_angle_third_party_vulkan-validation-layers_src_loader_vk_loader_platform.h head/www/iridium/files/patch-third__party_boringssl_src_crypto_cpu-aarch64-linux.c head/www/iridium/files/patch-third__party_breakpad_breakpad_src_common_simple_string_dictionary.h head/www/iridium/files/patch-third__party_ffmpeg_BUILD.gn head/www/iridium/files/patch-third__party_mesa_BUILD.gn head/www/iridium/files/patch-third__party_pdfium_core_fxge_fx_ge_linux.cpp head/www/iridium/files/patch-third__party_pdfium_fxjs_JS_Define.cpp head/www/iridium/files/patch-third__party_pdfium_fxjs_cjs_publicmethods.cpp head/www/iridium/files/patch-third__party_pdfium_third__party_base_logging.h head/www/iridium/files/patch-third__party_pdfium_xfa_fgas_font_cfgas_fontmgr.cpp head/www/iridium/files/patch-third__party_skia_src_opts_SkRasterPipeline_opts.h head/www/iridium/files/patch-third__party_skia_src_ports_SkFontHost_Freetype.cpp head/www/iridium/files/patch-third__party_skia_src_ports_SkOSFile_stdio.cpp head/www/iridium/files/patch-third__party_swiftshader_src_OpenGL_libGLES_CM_libGLES_CM.hpp head/www/iridium/files/patch-third__party_swiftshader_third_party_llvm-subzero_build_Linux_include_llvm_Config_config.h head/www/iridium/files/patch-third__party_swiftshader_third_party_llvm-subzero_lib_Support_Unix_Process.inc head/www/iridium/files/patch-third__party_webrtc_rtc_base_BUILD.gn head/www/iridium/files/patch-third__party_webrtc_rtc_base_byteorder.h head/www/iridium/files/patch-third__party_webrtc_rtc_base_httpcommon.cc head/www/iridium/files/patch-third__party_webrtc_rtc_base_ifaddrs__converter.h head/www/iridium/files/patch-third__party_webrtc_rtc_base_ipaddress.h head/www/iridium/files/patch-third__party_webrtc_rtc_base_network.cc head/www/iridium/files/patch-third__party_webrtc_rtc_base_network.h head/www/iridium/files/patch-third__party_webrtc_rtc_base_physicalsocketserver.cc head/www/iridium/files/patch-third__party_webrtc_rtc_base_physicalsocketserver.h head/www/iridium/files/patch-third__party_webrtc_rtc_base_platform_thread.cc head/www/iridium/files/patch-third__party_webrtc_rtc_base_platform_thread_types.cc head/www/iridium/files/patch-third__party_webrtc_rtc_base_stringutils.h head/www/iridium/files/patch-third__party_webrtc_webrtc.gni head/www/iridium/files/patch-third__party_yasm_BUILD.gn head/www/iridium/files/patch-third__party_zlib_BUILD.gn head/www/iridium/files/patch-third_party_blink_renderer_bindings_core_v8_v8_script_runner.cc head/www/iridium/files/patch-third_party_blink_renderer_core_editing_editing_behavior.cc head/www/iridium/files/patch-third_party_blink_renderer_core_html_canvas_canvas_async_blob_creator.cc head/www/iridium/files/patch-third_party_blink_renderer_core_html_forms_internal_popup_menu.cc head/www/iridium/files/patch-third_party_blink_renderer_core_xml_parser_xml_document_parser.cc head/www/iridium/files/patch-third_party_blink_renderer_platform_BUILD.gn head/www/iridium/files/patch-third_party_blink_renderer_platform_fonts_font_cache.cc head/www/iridium/files/patch-third_party_blink_renderer_platform_fonts_font_cache.h head/www/iridium/files/patch-third_party_blink_renderer_platform_fonts_font_metrics.cc head/www/iridium/files/patch-third_party_blink_renderer_platform_fonts_skia_font_cache_skia.cc head/www/iridium/files/patch-third_party_blink_renderer_platform_heap_stack_frame_depth.cc head/www/iridium/files/patch-third_party_blink_renderer_platform_image-decoders_jpeg_jpeg_image_decoder.cc head/www/iridium/files/patch-third_party_blink_renderer_platform_image-encoders_image_encoder.cc head/www/iridium/files/patch-third_party_blink_renderer_platform_wtf_BUILD.gn head/www/iridium/files/patch-third_party_blink_renderer_platform_wtf_assertions.cc head/www/iridium/files/patch-third_party_blink_renderer_platform_wtf_atomics.h head/www/iridium/files/patch-third_party_blink_renderer_platform_wtf_byte_swap.h head/www/iridium/files/patch-third_party_blink_renderer_platform_wtf_compiler.h head/www/iridium/files/patch-third_party_blink_renderer_platform_wtf_container_annotations.h head/www/iridium/files/patch-third_party_blink_renderer_platform_wtf_stack_util.cc head/www/iridium/files/patch-third_party_blink_renderer_platform_wtf_threading_pthreads.cc head/www/iridium/files/patch-third_party_crashpad_crashpad_build_crashpad_buildconfig.gni head/www/iridium/files/patch-third_party_crashpad_crashpad_util_misc_capture_context.h head/www/iridium/files/patch-third_party_crashpad_crashpad_util_misc_metrics.cc head/www/iridium/files/patch-third_party_crashpad_crashpad_util_misc_uuid.cc head/www/iridium/files/patch-third_party_crashpad_crashpad_util_posix_close_multiple.cc head/www/iridium/files/patch-third_party_crashpad_crashpad_util_posix_drop_privileges.cc head/www/iridium/files/patch-third_party_crashpad_crashpad_util_posix_signals.cc head/www/iridium/files/patch-third_party_crashpad_crashpad_util_posix_symbolic_constants_posix.cc head/www/iridium/files/patch-third_party_crc32c_src_src_crc32c__arm64__linux__check.h head/www/iridium/files/patch-tools_gn_args.cc head/www/iridium/files/patch-tools_gn_bootstrap_bootstrap.py head/www/iridium/files/patch-tools_json_schema_compiler_feature_compiler.py head/www/iridium/files/patch-tools_json_schema_compiler_model.py head/www/iridium/files/patch-ui_gfx_codec_jpeg_codec.cc head/www/iridium/files/patch-ui_gfx_gpu_memory_buffer.cc head/www/iridium/files/patch-ui_gfx_gpu_memory_buffer.h head/www/iridium/files/patch-ui_gfx_ipc_gfx_param_traits_macros.h head/www/iridium/files/patch-ui_gfx_linux_client_native_pixmap_dmabuf.cc head/www/iridium/files/patch-ui_gfx_mojo_buffer_types_struct_traits.cc head/www/iridium/files/patch-ui_gfx_mojo_buffer_types_struct_traits.h head/www/iridium/files/patch-ui_gfx_native_pixmap_handle.cc head/www/iridium/files/patch-ui_gfx_native_pixmap_handle.h head/www/iridium/files/patch-ui_gl_generate_bindings.py head/www/iridium/files/patch-ui_gl_gl_bindings_api_autogen_glx.h head/www/iridium/files/patch-ui_gl_gl_bindings_autogen_glx.cc head/www/iridium/files/patch-ui_gl_gl_bindings_autogen_glx.h head/www/iridium/files/patch-ui_gl_gl_implementation.cc head/www/iridium/files/patch-ui_message__center_views_message__view__factory.cc head/www/iridium/files/patch-ui_message__center_views_toast__contents__view.cc head/www/iridium/files/patch-ui_native_theme_native_theme.h head/www/iridium/files/patch-ui_native_theme_native_theme_base.cc head/www/iridium/files/patch-ui_strings_app_locale_settings.grd head/www/iridium/files/patch-ui_views_bubble_bubble__dialog__delegate.cc head/www/iridium/files/patch-ui_views_mus_aura__init.cc head/www/iridium/files/patch-ui_views_mus_aura__init.h head/www/iridium/files/patch-ui_views_widget_desktop_aura_desktop_screen_x11.cc head/www/iridium/files/patch-ui_views_window_frame_background.cc head/www/iridium/files/patch-v8_include_v8-platform.h head/www/iridium/files/patch-v8_src_globals.h head/www/iridium/files/patch-v8_src_trap-handler_handler-inside.cc head/www/iridium/files/pkg-message.in Modified: head/www/iridium/Makefile head/www/iridium/distinfo head/www/iridium/files/audio_manager_openbsd.cc head/www/iridium/files/extra-patch-clang head/www/iridium/files/patch-BUILD.gn head/www/iridium/files/patch-apps_ui_views_app__window__frame__view.cc head/www/iridium/files/patch-ash_display_mirror__window__controller.cc head/www/iridium/files/patch-base_BUILD.gn head/www/iridium/files/patch-base_allocator_allocator__shim.cc head/www/iridium/files/patch-base_allocator_allocator__shim__default__dispatch__to__glibc.cc head/www/iridium/files/patch-base_allocator_allocator__shim__override__libc__symbols.h head/www/iridium/files/patch-base_allocator_allocator__shim__unittest.cc head/www/iridium/files/patch-base_debug_debugger__posix.cc head/www/iridium/files/patch-base_debug_proc__maps__linux.cc head/www/iridium/files/patch-base_debug_stack__trace.h head/www/iridium/files/patch-base_debug_stack__trace__posix.cc head/www/iridium/files/patch-base_files_file__path__unittest.cc head/www/iridium/files/patch-base_files_file__path__watcher__kqueue.h head/www/iridium/files/patch-base_files_file__path__watcher__stub.cc head/www/iridium/files/patch-base_files_file__util.h head/www/iridium/files/patch-base_i18n_icu__util.cc head/www/iridium/files/patch-base_linux__util.cc head/www/iridium/files/patch-base_logging__unittest.cc head/www/iridium/files/patch-base_native__library__posix.cc head/www/iridium/files/patch-base_posix_unix__domain__socket.cc head/www/iridium/files/patch-base_posix_unix__domain__socket__unittest.cc head/www/iridium/files/patch-base_process_internal__linux.cc head/www/iridium/files/patch-base_process_internal__linux.h head/www/iridium/files/patch-base_process_kill.h head/www/iridium/files/patch-base_process_launch.cc head/www/iridium/files/patch-base_process_launch.h head/www/iridium/files/patch-base_process_launch__posix.cc head/www/iridium/files/patch-base_process_memory.cc head/www/iridium/files/patch-base_process_memory.h head/www/iridium/files/patch-base_process_memory__unittest.cc head/www/iridium/files/patch-base_process_process__handle.cc head/www/iridium/files/patch-base_process_process__handle.h head/www/iridium/files/patch-base_process_process__handle__freebsd.cc head/www/iridium/files/patch-base_process_process__iterator__freebsd.cc head/www/iridium/files/patch-base_process_process__metrics.cc head/www/iridium/files/patch-base_process_process__metrics.h head/www/iridium/files/patch-base_process_process__metrics__freebsd.cc head/www/iridium/files/patch-base_process_process__metrics__posix.cc head/www/iridium/files/patch-base_profiler_stack__sampling__profiler__unittest.cc head/www/iridium/files/patch-base_security__unittest.cc head/www/iridium/files/patch-base_test_launcher_test__launcher.cc head/www/iridium/files/patch-base_test_test__file__util__linux.cc head/www/iridium/files/patch-base_test_test__file__util__posix.cc head/www/iridium/files/patch-base_third__party_libevent_BUILD.gn head/www/iridium/files/patch-base_threading_platform__thread.h head/www/iridium/files/patch-base_threading_platform__thread__linux.cc head/www/iridium/files/patch-base_threading_platform__thread__posix.cc head/www/iridium/files/patch-base_threading_thread__task__runner__handle.cc head/www/iridium/files/patch-base_trace__event_process__memory__dump.cc head/www/iridium/files/patch-base_trace__event_process__memory__dump.h head/www/iridium/files/patch-build_config_BUILD.gn head/www/iridium/files/patch-build_config_BUILDCONFIG.gn head/www/iridium/files/patch-build_config_allocator.gni head/www/iridium/files/patch-build_config_compiler_BUILD.gn head/www/iridium/files/patch-build_config_compiler_compiler.gni head/www/iridium/files/patch-build_config_features.gni head/www/iridium/files/patch-build_config_linux_BUILD.gn head/www/iridium/files/patch-build_config_linux_pkg-config.py head/www/iridium/files/patch-build_linux_chrome.map head/www/iridium/files/patch-build_linux_libpci_BUILD.gn head/www/iridium/files/patch-build_linux_unbundle_libusb.gn head/www/iridium/files/patch-build_toolchain_get__concurrent__links.py head/www/iridium/files/patch-build_toolchain_linux_BUILD.gn head/www/iridium/files/patch-cc_BUILD.gn head/www/iridium/files/patch-cc_layers_scrollbar__layer__impl__base.cc head/www/iridium/files/patch-cc_trees_property__tree.cc head/www/iridium/files/patch-chrome_app_chrome__command__ids.h head/www/iridium/files/patch-chrome_app_chrome__main.cc head/www/iridium/files/patch-chrome_app_chrome__main__delegate.cc head/www/iridium/files/patch-chrome_app_chromium__strings.grd head/www/iridium/files/patch-chrome_app_generated__resources.grd head/www/iridium/files/patch-chrome_app_google__chrome__strings.grd head/www/iridium/files/patch-chrome_app_settings__strings.grdp head/www/iridium/files/patch-chrome_app_shutdown__signal__handlers__posix.cc head/www/iridium/files/patch-chrome_browser_about__flags.cc head/www/iridium/files/patch-chrome_browser_after__startup__task__utils.cc head/www/iridium/files/patch-chrome_browser_browser__resources.grd head/www/iridium/files/patch-chrome_browser_chrome__browser__main.cc head/www/iridium/files/patch-chrome_browser_chrome__browser__main__linux.cc head/www/iridium/files/patch-chrome_browser_chrome__browser__main__posix.cc head/www/iridium/files/patch-chrome_browser_chrome__content__browser__client.cc head/www/iridium/files/patch-chrome_browser_chrome__content__browser__client.h head/www/iridium/files/patch-chrome_browser_defaults.cc head/www/iridium/files/patch-chrome_browser_diagnostics_diagnostics__writer.h head/www/iridium/files/patch-chrome_browser_download_chrome__download__manager__delegate.cc head/www/iridium/files/patch-chrome_browser_download_download__commands.cc head/www/iridium/files/patch-chrome_browser_download_download__commands.h head/www/iridium/files/patch-chrome_browser_download_download__prefs.cc head/www/iridium/files/patch-chrome_browser_download_download__prefs.h head/www/iridium/files/patch-chrome_browser_download_download__query.cc head/www/iridium/files/patch-chrome_browser_download_download__shelf__context__menu.cc head/www/iridium/files/patch-chrome_browser_download_download__status__updater.cc head/www/iridium/files/patch-chrome_browser_extensions_BUILD.gn head/www/iridium/files/patch-chrome_browser_extensions_activity__log_activity__log.cc head/www/iridium/files/patch-chrome_browser_extensions_api_input__ime_input__ime__api.h head/www/iridium/files/patch-chrome_browser_extensions_api_runtime_chrome__runtime__api__delegate.cc head/www/iridium/files/patch-chrome_browser_extensions_api_settings__private_prefs__util.cc head/www/iridium/files/patch-chrome_browser_extensions_bookmark__app__helper.cc head/www/iridium/files/patch-chrome_browser_extensions_browser__context__keyed__service__factories.cc head/www/iridium/files/patch-chrome_browser_extensions_external__provider__impl.cc head/www/iridium/files/patch-chrome_browser_first__run_first__run__internal__posix.cc head/www/iridium/files/patch-chrome_browser_flag__descriptions.cc head/www/iridium/files/patch-chrome_browser_flag__descriptions.h head/www/iridium/files/patch-chrome_browser_media__galleries_fileapi_mtp__device__map__service.cc head/www/iridium/files/patch-chrome_browser_media__galleries_media__file__system__registry.cc head/www/iridium/files/patch-chrome_browser_media_webrtc_webrtc__log__uploader.cc head/www/iridium/files/patch-chrome_browser_memory__details.cc head/www/iridium/files/patch-chrome_browser_memory__details__linux.cc head/www/iridium/files/patch-chrome_browser_metrics_chrome__browser__main__extra__parts__metrics.cc head/www/iridium/files/patch-chrome_browser_password__manager_chrome__password__manager__client.cc head/www/iridium/files/patch-chrome_browser_platform__util.h head/www/iridium/files/patch-chrome_browser_plugins_plugins__resource__service.cc head/www/iridium/files/patch-chrome_browser_policy_policy__prefs__browsertest.cc head/www/iridium/files/patch-chrome_browser_process__singleton__posix.cc head/www/iridium/files/patch-chrome_browser_renderer__context__menu_render__view__context__menu.cc head/www/iridium/files/patch-chrome_browser_renderer__preferences__util.cc head/www/iridium/files/patch-chrome_browser_resources_safe__browsing_gen__file__type__proto.py head/www/iridium/files/patch-chrome_browser_resources_settings_appearance__page_appearance__page.html head/www/iridium/files/patch-chrome_browser_safe__browsing_incident__reporting_incident__handler__util.cc head/www/iridium/files/patch-chrome_browser_safe__browsing_incident__reporting_incident__reporting__service.cc head/www/iridium/files/patch-chrome_browser_search_local__files__ntp__source.cc head/www/iridium/files/patch-chrome_browser_sync_chrome__sync__client.cc head/www/iridium/files/patch-chrome_browser_task__manager_sampling_task__group.cc head/www/iridium/files/patch-chrome_browser_task__manager_sampling_task__group.h head/www/iridium/files/patch-chrome_browser_task__manager_sampling_task__group__sampler.cc head/www/iridium/files/patch-chrome_browser_task__manager_sampling_task__group__sampler.h head/www/iridium/files/patch-chrome_browser_task__manager_sampling_task__manager__impl.cc head/www/iridium/files/patch-chrome_browser_task__manager_task__manager__observer.h head/www/iridium/files/patch-chrome_browser_tracing_crash__service__uploader.cc head/www/iridium/files/patch-chrome_browser_ui_browser__command__controller.cc head/www/iridium/files/patch-chrome_browser_ui_exclusive__access_exclusive__access__bubble.cc head/www/iridium/files/patch-chrome_browser_ui_input__method_input__method__engine.h head/www/iridium/files/patch-chrome_browser_ui_input__method_input__method__engine__base.cc head/www/iridium/files/patch-chrome_browser_ui_libgtkui_print__dialog__gtk.cc head/www/iridium/files/patch-chrome_browser_ui_startup_bad__flags__prompt.cc head/www/iridium/files/patch-chrome_browser_ui_startup_startup__browser__creator.cc head/www/iridium/files/patch-chrome_browser_ui_tab__helpers.cc head/www/iridium/files/patch-chrome_browser_ui_task__manager_task__manager__columns.cc head/www/iridium/files/patch-chrome_browser_ui_task__manager_task__manager__table__model.cc head/www/iridium/files/patch-chrome_browser_ui_toolbar_app__menu__model.cc head/www/iridium/files/patch-chrome_browser_ui_views_accelerator__table.cc head/www/iridium/files/patch-chrome_browser_ui_views_chrome__browser__main__extra__parts__views.cc head/www/iridium/files/patch-chrome_browser_ui_views_chrome__views__delegate.h head/www/iridium/files/patch-chrome_browser_ui_views_first__run__dialog.cc head/www/iridium/files/patch-chrome_browser_ui_views_frame_browser__frame.cc head/www/iridium/files/patch-chrome_browser_ui_views_frame_opaque__browser__frame__view.cc head/www/iridium/files/patch-chrome_browser_ui_views_frame_opaque__browser__frame__view__platform__specific.cc head/www/iridium/files/patch-chrome_browser_ui_views_frame_system__menu__model__builder.cc head/www/iridium/files/patch-chrome_browser_ui_views_frame_system__menu__model__delegate.cc head/www/iridium/files/patch-chrome_browser_ui_views_tabs_tab__drag__controller.cc head/www/iridium/files/patch-chrome_browser_ui_webui_about__ui.cc head/www/iridium/files/patch-chrome_browser_ui_webui_chrome__web__ui__controller__factory.cc head/www/iridium/files/patch-chrome_browser_ui_webui_settings_appearance__handler.cc head/www/iridium/files/patch-chrome_browser_ui_webui_settings_appearance__handler.h head/www/iridium/files/patch-chrome_browser_ui_webui_settings_md__settings__localized__strings__provider.cc head/www/iridium/files/patch-chrome_common_BUILD.gn head/www/iridium/files/patch-chrome_common_chrome__features.cc head/www/iridium/files/patch-chrome_common_chrome__features.h head/www/iridium/files/patch-chrome_common_chrome__paths.cc head/www/iridium/files/patch-chrome_common_chrome__paths.h head/www/iridium/files/patch-chrome_common_chrome__paths__internal.h head/www/iridium/files/patch-chrome_common_chrome__switches.cc head/www/iridium/files/patch-chrome_common_chrome__switches.h head/www/iridium/files/patch-chrome_common_extensions_command.cc head/www/iridium/files/patch-chrome_common_features.gni head/www/iridium/files/patch-chrome_common_pref__names.cc head/www/iridium/files/patch-chrome_common_pref__names.h head/www/iridium/files/patch-chrome_renderer_pepper_pepper__flash__font__file__host.cc head/www/iridium/files/patch-chrome_renderer_pepper_pepper__flash__font__file__host.h head/www/iridium/files/patch-chrome_service_cloud__print_print__system.cc head/www/iridium/files/patch-chrome_test_base_in__process__browser__test.cc head/www/iridium/files/patch-chrome_test_base_testing__browser__process.h head/www/iridium/files/patch-chrome_test_chromedriver_chrome_chrome__finder.cc head/www/iridium/files/patch-chromecast_browser_cast__content__browser__client.cc head/www/iridium/files/patch-components_autofill_content_renderer_password__form__conversion__utils.cc head/www/iridium/files/patch-components_autofill_core_browser_autofill__experiments.cc head/www/iridium/files/patch-components_content__settings_core_browser_website__settings__registry.cc head/www/iridium/files/patch-components_cookie__config_cookie__store__util.cc head/www/iridium/files/patch-components_crash_content_app_BUILD.gn head/www/iridium/files/patch-components_crash_content_app_crashpad.cc head/www/iridium/files/patch-components_crash_content_browser_BUILD.gn head/www/iridium/files/patch-components_crash_core_common_BUILD.gn head/www/iridium/files/patch-components_feedback_anonymizer__tool.cc head/www/iridium/files/patch-components_flags__ui_flags__state.cc head/www/iridium/files/patch-components_gcm__driver_gcm__client.h head/www/iridium/files/patch-components_gcm__driver_gcm__client__impl.cc head/www/iridium/files/patch-components_keyed__service_core_dependency__graph__unittest.cc head/www/iridium/files/patch-components_metrics_BUILD.gn head/www/iridium/files/patch-components_metrics_drive__metrics__provider__linux.cc head/www/iridium/files/patch-components_metrics_system__memory__stats__recorder__linux.cc head/www/iridium/files/patch-components_neterror_resources_neterror.js head/www/iridium/files/patch-components_os__crypt_os__crypt.h head/www/iridium/files/patch-components_os__crypt_os__crypt__unittest.cc head/www/iridium/files/patch-components_plugins_renderer_plugin__placeholder.cc head/www/iridium/files/patch-components_policy_core_common_schema.cc head/www/iridium/files/patch-components_policy_resources_policy__templates.json head/www/iridium/files/patch-components_policy_tools_generate__policy__source.py head/www/iridium/files/patch-components_storage__monitor_BUILD.gn head/www/iridium/files/patch-components_storage__monitor_storage__monitor__freebsd.cc head/www/iridium/files/patch-components_storage__monitor_storage__monitor__freebsd.h head/www/iridium/files/patch-components_sync_base_get__session__name.cc head/www/iridium/files/patch-components_sync_base_get__session__name__linux.cc head/www/iridium/files/patch-components_update__client_update__query__params.cc head/www/iridium/files/patch-components_url__matcher_regex__set__matcher.cc head/www/iridium/files/patch-components_url__matcher_url__matcher__factory.cc head/www/iridium/files/patch-components_webcrypto_algorithms_test__helpers.cc head/www/iridium/files/patch-content_browser_BUILD.gn head/www/iridium/files/patch-content_browser_browser__main__loop.cc head/www/iridium/files/patch-content_browser_child__process__launcher__helper__linux.cc head/www/iridium/files/patch-content_browser_media_media__internals.cc head/www/iridium/files/patch-content_browser_memory_memory__monitor.cc head/www/iridium/files/patch-content_browser_renderer__host_render__message__filter.cc head/www/iridium/files/patch-content_browser_renderer__host_render__message__filter.h head/www/iridium/files/patch-content_browser_renderer__host_render__process__host__impl.h head/www/iridium/files/patch-content_browser_renderer__host_render__view__host__impl.cc head/www/iridium/files/patch-content_browser_renderer__host_render__widget__host__view__aura.cc head/www/iridium/files/patch-content_browser_renderer__host_render__widget__host__view__event__handler.cc head/www/iridium/files/patch-content_common_BUILD.gn head/www/iridium/files/patch-content_gpu_BUILD.gn head/www/iridium/files/patch-content_gpu_gpu__main.cc head/www/iridium/files/patch-content_public_common_child__process__host.h head/www/iridium/files/patch-content_public_common_content__switches.cc head/www/iridium/files/patch-content_public_common_content__switches.h head/www/iridium/files/patch-content_public_common_renderer__preferences.h head/www/iridium/files/patch-content_public_test_browser__test__base.cc head/www/iridium/files/patch-content_renderer_media_stream_processed__local__audio__source.cc head/www/iridium/files/patch-content_renderer_render__thread__impl.cc head/www/iridium/files/patch-content_renderer_renderer__blink__platform__impl.cc head/www/iridium/files/patch-content_renderer_renderer__blink__platform__impl.h head/www/iridium/files/patch-content_renderer_renderer__main__platform__delegate__linux.cc head/www/iridium/files/patch-content_shell_browser_shell__browser__context.cc head/www/iridium/files/patch-content_shell_browser_shell__browser__main__parts.cc head/www/iridium/files/patch-device_bluetooth_BUILD.gn head/www/iridium/files/patch-device_gamepad_gamepad__provider.cc head/www/iridium/files/patch-device_usb_BUILD.gn head/www/iridium/files/patch-device_usb_usb__context.cc head/www/iridium/files/patch-device_usb_usb__error.cc head/www/iridium/files/patch-device_usb_usb__service__impl.cc head/www/iridium/files/patch-device_usb_usb__service__impl.h head/www/iridium/files/patch-extensions_browser_api_declarative__webrequest_webrequest__action.cc head/www/iridium/files/patch-extensions_browser_api_web__request_form__data__parser.cc head/www/iridium/files/patch-extensions_common_api_runtime.json head/www/iridium/files/patch-extensions_common_features_feature.cc head/www/iridium/files/patch-extensions_common_image__util.cc head/www/iridium/files/patch-extensions_common_stack__frame.cc head/www/iridium/files/patch-gpu_command__buffer_service_program__manager.cc head/www/iridium/files/patch-gpu_config_gpu__control__list.cc head/www/iridium/files/patch-gpu_config_gpu__test__config.cc head/www/iridium/files/patch-gpu_ipc_service_gpu__init.cc head/www/iridium/files/patch-headless_lib_browser_headless__content__browser__client.cc head/www/iridium/files/patch-headless_lib_browser_headless__content__browser__client.h head/www/iridium/files/patch-headless_lib_headless__macros.h head/www/iridium/files/patch-ipc_ipc__channel.h head/www/iridium/files/patch-ipc_ipc__message__utils.cc head/www/iridium/files/patch-ipc_ipc__message__utils.h head/www/iridium/files/patch-media_BUILD.gn head/www/iridium/files/patch-media_audio_BUILD.gn head/www/iridium/files/patch-media_audio_audio__manager.cc head/www/iridium/files/patch-media_audio_audio__manager.h head/www/iridium/files/patch-media_base_audio__latency.cc head/www/iridium/files/patch-media_base_video__frame.cc head/www/iridium/files/patch-media_base_video__frame.h head/www/iridium/files/patch-media_capture_video_fake__video__capture__device__factory.cc head/www/iridium/files/patch-media_capture_video_file__video__capture__device__factory.cc head/www/iridium/files/patch-media_capture_video_linux_v4l2__capture__delegate.cc head/www/iridium/files/patch-media_capture_video_linux_video__capture__device__linux.cc head/www/iridium/files/patch-media_capture_video_video__capture__device__client.cc head/www/iridium/files/patch-media_filters_vp9__parser.h head/www/iridium/files/patch-media_formats_common_offset__byte__queue.cc head/www/iridium/files/patch-media_formats_common_offset__byte__queue.h head/www/iridium/files/patch-media_formats_mp2t_es__parser__adts.cc head/www/iridium/files/patch-media_formats_mp2t_es__parser__mpeg1audio.cc head/www/iridium/files/patch-mojo_public_c_system_thunks.cc head/www/iridium/files/patch-net_BUILD.gn head/www/iridium/files/patch-net_base_address__tracker__linux.cc head/www/iridium/files/patch-net_base_address__tracker__linux.h head/www/iridium/files/patch-net_base_address__tracker__linux__unittest.cc head/www/iridium/files/patch-net_base_network__change__notifier.cc head/www/iridium/files/patch-net_base_network__interfaces__posix.h head/www/iridium/files/patch-net_disk__cache_blockfile_disk__format.h head/www/iridium/files/patch-net_dns_address__sorter__posix.cc head/www/iridium/files/patch-net_dns_dns__config__service__posix__unittest.cc head/www/iridium/files/patch-net_dns_dns__reloader.cc head/www/iridium/files/patch-net_dns_dns__util.cc head/www/iridium/files/patch-net_dns_host__resolver__proc.cc head/www/iridium/files/patch-net_features.gni head/www/iridium/files/patch-net_http_http__auth__gssapi__posix.cc head/www/iridium/files/patch-net_http_http__network__session.cc head/www/iridium/files/patch-net_socket_socks5__client__socket.cc head/www/iridium/files/patch-net_socket_udp__socket__posix.cc head/www/iridium/files/patch-net_url__request_url__request__context__builder.cc head/www/iridium/files/patch-pdf_pdfium_pdfium__engine.cc head/www/iridium/files/patch-ppapi_proxy_file__io__resource.cc head/www/iridium/files/patch-printing_cups__config__helper.py head/www/iridium/files/patch-remoting_host_host__details.cc head/www/iridium/files/patch-remoting_webapp_base_js_platform.js head/www/iridium/files/patch-sandbox_features.gni head/www/iridium/files/patch-sandbox_linux_BUILD.gn head/www/iridium/files/patch-services_catalog_store.cc head/www/iridium/files/patch-services_catalog_store.h head/www/iridium/files/patch-services_device_hid_BUILD.gn head/www/iridium/files/patch-services_device_hid_hid__connection__freebsd.cc head/www/iridium/files/patch-services_device_hid_hid__connection__freebsd.h head/www/iridium/files/patch-services_device_hid_hid__service.cc head/www/iridium/files/patch-services_device_hid_hid__service__freebsd.cc head/www/iridium/files/patch-services_device_hid_hid__service__freebsd.h head/www/iridium/files/patch-services_device_time__zone__monitor_time__zone__monitor.cc head/www/iridium/files/patch-services_network_BUILD.gn head/www/iridium/files/patch-services_service__manager_embedder_set__process__title__linux.cc head/www/iridium/files/patch-services_service__manager_embedder_set__process__title__linux.h head/www/iridium/files/patch-services_service__manager_runner_host_BUILD.gn head/www/iridium/files/patch-services_service__manager_sandbox_BUILD.gn head/www/iridium/files/patch-skia_ext_SkMemory__new__handler.cpp head/www/iridium/files/patch-third__party_angle_BUILD.gn head/www/iridium/files/patch-third__party_angle_src_libANGLE_Display.cpp head/www/iridium/files/patch-third__party_boringssl_BUILD.gn head/www/iridium/files/patch-third__party_boringssl_src_crypto_ex__data.c head/www/iridium/files/patch-third__party_cacheinvalidation_src_google_cacheinvalidation_include_types.h head/www/iridium/files/patch-third__party_ffmpeg_libavutil_mem.c head/www/iridium/files/patch-third__party_leveldatabase_env__chromium.cc head/www/iridium/files/patch-third__party_libXNVCtrl_NVCtrl.c head/www/iridium/files/patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_memory_singleton.h head/www/iridium/files/patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_synchronization_lock.h head/www/iridium/files/patch-third__party_libphonenumber_dist_cpp_src_phonenumbers_base_thread__checker.h head/www/iridium/files/patch-third__party_libyuv_include_libyuv_row.h head/www/iridium/files/patch-third__party_node_node.py head/www/iridium/files/patch-third__party_pdfium_core_fxcrt_fx__system.h head/www/iridium/files/patch-third__party_skia_src_core_SkCpu.cpp head/www/iridium/files/patch-third__party_skia_src_gpu_GrAutoLocaleSetter.h head/www/iridium/files/patch-third__party_skia_src_images_SkJpegEncoder.cpp head/www/iridium/files/patch-third__party_skia_src_sksl_SkSLString.h head/www/iridium/files/patch-third__party_sqlite_BUILD.gn head/www/iridium/files/patch-third__party_swiftshader_BUILD.gn head/www/iridium/files/patch-third__party_swiftshader_src_Common_Configurator.cpp head/www/iridium/files/patch-third__party_swiftshader_src_Common_MutexLock.hpp head/www/iridium/files/patch-third__party_swiftshader_src_Common_SharedLibrary.hpp head/www/iridium/files/patch-third__party_swiftshader_src_Main_SwiftConfig.cpp head/www/iridium/files/patch-third__party_swiftshader_src_OpenGL_libEGL_Display.cpp head/www/iridium/files/patch-third__party_swiftshader_src_OpenGL_libEGL_Surface.cpp head/www/iridium/files/patch-third__party_swiftshader_src_OpenGL_libEGL_libEGL.cpp head/www/iridium/files/patch-third__party_swiftshader_src_OpenGL_libEGL_libEGL.hpp head/www/iridium/files/patch-third__party_swiftshader_src_OpenGL_libGLESv2_libGLESv2.hpp head/www/iridium/files/patch-third__party_usrsctp_BUILD.gn head/www/iridium/files/patch-third__party_webrtc_BUILD.gn head/www/iridium/files/patch-third__party_webrtc_modules_audio__device_BUILD.gn head/www/iridium/files/patch-third__party_webrtc_modules_rtp__rtcp_source_forward__error__correction.cc head/www/iridium/files/patch-third__party_webrtc_system__wrappers_BUILD.gn head/www/iridium/files/patch-tools_perf_chrome__telemetry__build_BUILD.gn head/www/iridium/files/patch-tools_variations_fieldtrial__to__struct.py head/www/iridium/files/patch-ui_base_dragdrop_os__exchange__data__provider__factory.cc head/www/iridium/files/patch-ui_base_ime_ime__engine__handler__interface.h head/www/iridium/files/patch-ui_base_ime_input__method__initializer.cc head/www/iridium/files/patch-ui_base_resource_resource__bundle.cc head/www/iridium/files/patch-ui_base_resource_resource__bundle__freebsd.cc head/www/iridium/files/patch-ui_base_webui_web__ui__util.cc head/www/iridium/files/patch-ui_events_devices_x11_device__data__manager__x11.cc head/www/iridium/files/patch-ui_events_event__switches.cc head/www/iridium/files/patch-ui_events_event__switches.h head/www/iridium/files/patch-ui_events_keycodes_dom_keycode__converter.cc head/www/iridium/files/patch-ui_gfx_canvas__skia.cc head/www/iridium/files/patch-ui_gfx_font__fallback__linux.cc head/www/iridium/files/patch-ui_gfx_font__list.cc head/www/iridium/files/patch-ui_gfx_font__render__params.h head/www/iridium/files/patch-ui_gfx_render__text.cc head/www/iridium/files/patch-ui_gl_BUILD.gn head/www/iridium/files/patch-ui_gl_sync__control__vsync__provider.cc head/www/iridium/files/patch-ui_gl_sync__control__vsync__provider.h head/www/iridium/files/patch-ui_views_controls_label.cc head/www/iridium/files/patch-ui_views_controls_textfield_textfield.cc head/www/iridium/files/patch-ui_views_corewm_tooltip__aura.cc head/www/iridium/files/patch-ui_views_examples_widget__example.cc head/www/iridium/files/patch-ui_views_selection__controller.cc head/www/iridium/files/patch-ui_views_style_platform__style.cc head/www/iridium/files/patch-ui_views_views__delegate.cc head/www/iridium/files/patch-ui_views_views__delegate.h head/www/iridium/files/patch-ui_views_window_custom__frame__view.cc head/www/iridium/files/patch-ui_views_window_dialog__delegate.cc head/www/iridium/files/patch-ui_webui_resources_js_cr.js head/www/iridium/files/patch-ui_webui_resources_js_icon.js head/www/iridium/files/patch-v8_BUILD.gn head/www/iridium/files/patch-v8_src_base_cpu.cc head/www/iridium/files/patch-v8_src_base_platform_platform-posix.cc head/www/iridium/files/patch-v8_src_log-utils.h head/www/iridium/files/sndio_input.cc head/www/iridium/files/sndio_input.h head/www/iridium/files/sndio_output.cc head/www/iridium/pkg-plist Modified: head/www/iridium/Makefile ============================================================================== --- head/www/iridium/Makefile Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/Makefile Tue Jun 18 19:24:43 2019 (r504498) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= iridium -PORTVERSION= 2018.5.67 -PORTREVISION= 11 +PORTVERSION= 2019.04.73 CATEGORIES= www MASTER_SITES= https://downloads.iridiumbrowser.de/source/ PKGNAMESUFFIX= -browser @@ -29,6 +28,7 @@ BUILD_DEPENDS= gperf:devel/gperf \ ${PYTHON_PKGNAMEPREFIX}html5lib>0:www/py-html5lib@${PY_FLAVOR} LIB_DEPENDS= libatk-bridge-2.0.so:accessibility/at-spi2-atk \ + libatspi.so:accessibility/at-spi2-core \ libspeechd.so:accessibility/speech-dispatcher \ libsnappy.so:archivers/snappy \ libFLAC.so:audio/flac \ @@ -62,8 +62,8 @@ RUN_DEPENDS= xdg-open:devel/xdg-utils \ ONLY_FOR_ARCHS= amd64 i386 -USES= bison desktop-file-utils gl gnome jpeg localbase:ldflags ninja \ - perl5 pkgconfig python:2.7,build shebangfix tar:xz +USES= bison desktop-file-utils dos2unix gl gnome jpeg localbase:ldflags \ + ninja perl5 pkgconfig python:2.7,build shebangfix tar:xz USE_GL= gl USE_LDCONFIG= ${DATADIR} USE_PERL5= build @@ -71,6 +71,7 @@ USE_XORG= x11 xcb xcomposite xcursor xext xdamage xfix xorgproto xrandr xrender xscrnsaver xtst USE_GNOME= atk dconf glib20 gtk30 libxml2 libxslt MAKE_ARGS= -C out/${BUILDTYPE} +DOS2UNIX_FILES= third_party/skia/third_party/vulkanmemoryallocator/include/vk_mem_alloc.h BINARY_ALIAS= python=${PYTHON_CMD} ALL_TARGET= chrome INSTALLS_ICONS= yes @@ -97,7 +98,6 @@ GN_ARGS+= clang_use_chrome_plugins=false \ use_custom_libcxx=false \ use_gnome_keyring=false \ use_jumbo_build=true \ - use_gtk3=true \ use_lld=true \ use_sysroot=false \ use_system_freetype=true \ @@ -107,9 +107,9 @@ GN_ARGS+= clang_use_chrome_plugins=false \ extra_ldflags="${LDFLAGS}" # TODO: investigate building with these options: # use_system_minigbm -GN_BOOTSTRAP_FLAGS= --no-clean --no-rebuild +GN_BOOTSTRAP_FLAGS= --no-clean --no-rebuild --skip-generate-buildfiles -SUB_FILES= iridium-browser.desktop iridium pkg-message +SUB_FILES= iridium-browser.desktop iridium SUB_LIST+= COMMENT="${COMMENT}" OPTIONS_DEFINE= CODECS CUPS DEBUG KERBEROS @@ -139,7 +139,7 @@ CUPS_VARS_OFF= GN_ARGS+=use_cups=false DEBUG_VARS= BUILDTYPE=Debug \ GN_ARGS+=is_debug=true \ - GN_ARGS+=is_component_buils=false \ + GN_ARGS+=is_component_build=false \ GN_BOOTSTRAP_FLAGS+=--debug \ WANTSPACE="lots of free diskspace (~ 13GB)" DEBUG_VARS_OFF= BUILDTYPE=Release \ @@ -165,6 +165,11 @@ SNDIO_LIB_DEPENDS= libsndio.so:audio/sndio SNDIO_VARS= GN_ARGS+=use_sndio=true SNDIO_VARS_OFF= GN_ARGS+=use_sndio=false +# Make better javascript with java +JAVA_BUILD= yes +JAVA_VERSION= 1.8 +USE_JAVA= yes + # Allow relocations against read-only segments (override lld default) LDFLAGS_i386= -Wl,-znotext @@ -211,9 +216,12 @@ do-configure: @${MKDIR} ${WRKSRC}/third_party/node/freebsd/node-freebsd-x64/bin ${LN} -sf ${LOCALBASE}/bin/node ${WRKSRC}/third_party/node/freebsd/node-freebsd-x64/bin/node + # Setup java dependency + @${MKDIR} ${WRKDIR}/bin + ${LN} -sf ${LOCALBASE}/openjdk8/bin/java ${WRKDIR}/bin/java + do-install: @${MKDIR} ${STAGEDIR}${DATADIR} - ${INSTALL_DATA} ${WRKSRC}/out/${BUILDTYPE}/*.service ${STAGEDIR}${DATADIR} ${INSTALL_MAN} ${WRKSRC}/chrome/app/resources/manpage.1.in \ ${STAGEDIR}${MANPREFIX}/man/man1/iridium.1 .for s in 22 24 48 64 128 256 Modified: head/www/iridium/distinfo ============================================================================== --- head/www/iridium/distinfo Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/distinfo Tue Jun 18 19:24:43 2019 (r504498) @@ -1,3 +1,3 @@ -TIMESTAMP = 1534375076 -SHA256 (iridium-browser-2018.5.67.tar.xz) = fd9631aa338954928a96bc9f3711e0273bf5b616dddeb792e303cecd22bba367 -SIZE (iridium-browser-2018.5.67.tar.xz) = 610734108 +TIMESTAMP = 1555346051 +SHA256 (iridium-browser-2019.04.73.tar.xz) = f0361626a577f2c6d2a6389ea2a7cdd692fcba96229be38c84117fe0b22364a5 +SIZE (iridium-browser-2019.04.73.tar.xz) = 729035472 Modified: head/www/iridium/files/audio_manager_openbsd.cc ============================================================================== --- head/www/iridium/files/audio_manager_openbsd.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/audio_manager_openbsd.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -73,7 +73,7 @@ AudioParameters AudioManagerOpenBSD::GetInputStreamPar return AudioParameters( AudioParameters::AUDIO_PCM_LOW_LATENCY, CHANNEL_LAYOUT_STEREO, - kDefaultSampleRate, 16, buffer_size); + kDefaultSampleRate, buffer_size); } AudioManagerOpenBSD::AudioManagerOpenBSD(std::unique_ptr audio_thread, @@ -130,10 +130,8 @@ AudioParameters AudioManagerOpenBSD::GetPreferredOutpu ChannelLayout channel_layout = CHANNEL_LAYOUT_STEREO; int sample_rate = kDefaultSampleRate; int buffer_size = kDefaultOutputBufferSize; - int bits_per_sample = 16; if (input_params.IsValid()) { sample_rate = input_params.sample_rate(); - bits_per_sample = input_params.bits_per_sample(); channel_layout = input_params.channel_layout(); buffer_size = std::min(buffer_size, input_params.frames_per_buffer()); } @@ -144,7 +142,7 @@ AudioParameters AudioManagerOpenBSD::GetPreferredOutpu return AudioParameters( AudioParameters::AUDIO_PCM_LOW_LATENCY, channel_layout, - sample_rate, bits_per_sample, buffer_size); + sample_rate, buffer_size); } AudioInputStream* AudioManagerOpenBSD::MakeInputStream( Modified: head/www/iridium/files/extra-patch-clang ============================================================================== --- head/www/iridium/files/extra-patch-clang Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/extra-patch-clang Tue Jun 18 19:24:43 2019 (r504498) @@ -1,14 +1,14 @@ ---- base/strings/safe_sprintf_unittest.cc.orig 2016-10-06 04:02:08.000000000 +0300 -+++ base/strings/safe_sprintf_unittest.cc 2016-10-25 21:42:28.951114000 +0300 -@@ -728,6 +728,7 @@ +--- base/strings/safe_sprintf_unittest.cc.orig 2019-03-11 22:00:51 UTC ++++ base/strings/safe_sprintf_unittest.cc +@@ -730,6 +730,7 @@ TEST(SafeSPrintfTest, EmbeddedNul) { } - + TEST(SafeSPrintfTest, EmitNULL) { +/* Avoid compiler error: http://pastebin.com/1edWUE84 char buf[40]; #if defined(__GNUC__) #pragma GCC diagnostic push -@@ -739,6 +740,7 @@ +@@ -741,6 +742,7 @@ TEST(SafeSPrintfTest, EmitNULL) { EXPECT_EQ("0x0", std::string(buf)); EXPECT_EQ(6, SafeSPrintf(buf, "%s", NULL)); EXPECT_EQ("", std::string(buf)); @@ -16,9 +16,9 @@ #if defined(__GCC__) #pragma GCC diagnostic pop #endif ---- base/threading/thread_local_storage_unittest.cc 2015-04-15 00:18:48.000000000 +0200 -+++ base/threading/thread_local_storage_unittest.cc 2015-04-18 21:45:40.000000000 +0200 -@@ -60,7 +60,7 @@ +--- base/threading/thread_local_storage_unittest.cc.orig 2019-03-11 22:00:51 UTC ++++ base/threading/thread_local_storage_unittest.cc +@@ -86,7 +86,7 @@ class ThreadLocalStorageRunner : public DelegateSimple void ThreadLocalStorageCleanup(void *value) { int *ptr = reinterpret_cast(value); // Destructors should never be called with a NULL. @@ -27,20 +27,20 @@ if (*ptr == kFinalTlsValue) return; // We've been called enough times. ASSERT_LT(kFinalTlsValue, *ptr); ---- media/audio/audio_output_proxy_unittest.cc 2015-04-15 00:18:55.000000000 +0200 -+++ media/audio/audio_output_proxy_unittest.cc 2015-04-18 22:02:38.000000000 +0200 -@@ -387,7 +387,7 @@ +--- media/audio/audio_output_proxy_unittest.cc.orig 2019-03-11 22:00:59 UTC ++++ media/audio/audio_output_proxy_unittest.cc +@@ -410,7 +410,7 @@ class AudioOutputProxyTest : public testing::Test { // |stream| is closed at this point. Start() should reopen it again. - EXPECT_CALL(manager(), MakeAudioOutputStream(_, _)) + EXPECT_CALL(manager(), MakeAudioOutputStream(_, _, _)) .Times(2) - .WillRepeatedly(Return(reinterpret_cast(NULL))); + .WillRepeatedly(Return(static_cast(NULL))); - - EXPECT_CALL(callback_, OnError(_)) - .Times(2); ---- third_party/libjingle_xmpp/task_runner/taskrunner.cc.orig 2017-04-19 19:06:52 UTC + + EXPECT_CALL(callback_, OnError()).Times(2); + +--- third_party/libjingle_xmpp/task_runner/taskrunner.cc.orig 2019-03-11 22:01:15 UTC +++ third_party/libjingle_xmpp/task_runner/taskrunner.cc -@@ -95,7 +95,7 @@ void TaskRunner::InternalRunTasks(bool i +@@ -80,7 +80,7 @@ void TaskRunner::InternalRunTasks(bool in_destructor) std::vector::iterator it; it = std::remove(tasks_.begin(), tasks_.end(), @@ -48,19 +48,19 @@ + static_cast(NULL)); tasks_.erase(it, tasks_.end()); - ---- third_party/sfntly/src/cpp/src/sfntly/table/core/cmap_table.cc 2015-04-15 00:31:48.000000000 +0200 -+++ third_party/sfntly/src/cpp/src/sfntly/table/core/cmap_table.cc 2015-04-18 22:05:41.000000000 +0200 -@@ -439,7 +439,7 @@ + tasks_running_ = false; +--- third_party/sfntly/src/cpp/src/sfntly/table/core/cmap_table.cc.orig 2019-03-11 22:08:03 UTC ++++ third_party/sfntly/src/cpp/src/sfntly/table/core/cmap_table.cc +@@ -439,7 +439,7 @@ CMapTable::CMapFormat0::Builder::Builder( } - + CMapTable::CMapFormat0::Builder::Builder(const CMapId& cmap_id) - : CMap::Builder(reinterpret_cast(NULL), + : CMap::Builder(static_cast(NULL), CMapFormat::kFormat0, cmap_id) { } -@@ -563,7 +563,7 @@ +@@ -563,7 +563,7 @@ CMapTable::CMapFormat2::Builder::Builder(WritableFontD : CMapTable::CMap::Builder(data ? down_cast( data->Slice(offset, data->ReadUShort( offset + Offset::kFormat0Length))) @@ -69,7 +69,7 @@ CMapFormat::kFormat2, cmap_id) { // TODO(arthurhsu): FIXIT: heavy lifting and leak, need fix. } -@@ -574,7 +574,7 @@ +@@ -574,7 +574,7 @@ CMapTable::CMapFormat2::Builder::Builder(ReadableFontD : CMapTable::CMap::Builder(data ? down_cast( data->Slice(offset, data->ReadUShort( offset + Offset::kFormat0Length))) @@ -78,21 +78,21 @@ CMapFormat::kFormat2, cmap_id) { // TODO(arthurhsu): FIXIT: heavy lifting and leak, need fix. } -@@ -958,7 +958,7 @@ +@@ -958,7 +958,7 @@ CMapTable::CMapFormat4::Builder::Builder(WritableFontD CMapTable::CMapFormat4::Builder::Builder(SegmentList* segments, - IntegerList* glyph_id_array, + std::vector* glyph_id_array, const CMapId& cmap_id) - : CMap::Builder(reinterpret_cast(NULL), + : CMap::Builder(static_cast(NULL), CMapFormat::kFormat4, cmap_id), segments_(segments->begin(), segments->end()), glyph_id_array_(glyph_id_array->begin(), glyph_id_array->end()) { -@@ -966,7 +966,7 @@ +@@ -966,7 +966,7 @@ CMapTable::CMapFormat4::Builder::Builder(SegmentList* } - + CMapTable::CMapFormat4::Builder::Builder(const CMapId& cmap_id) - : CMap::Builder(reinterpret_cast(NULL), + : CMap::Builder(static_cast(NULL), CMapFormat::kFormat4, cmap_id) { } - + Modified: head/www/iridium/files/patch-BUILD.gn ============================================================================== --- head/www/iridium/files/patch-BUILD.gn Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-BUILD.gn Tue Jun 18 19:24:43 2019 (r504498) @@ -1,7 +1,7 @@ ---- BUILD.gn.orig 2018-06-13 00:09:58.000000000 +0200 -+++ BUILD.gn 2018-07-14 12:26:56.482016000 +0200 -@@ -359,7 +359,7 @@ - } +--- BUILD.gn.orig 2019-03-11 22:00:51 UTC ++++ BUILD.gn +@@ -381,7 +381,7 @@ group("gn_all") { + ] } - if (is_linux || is_android) { @@ -9,7 +9,7 @@ deps += [ "//third_party/breakpad:breakpad_unittests", "//third_party/breakpad:core-2-minidump", -@@ -401,8 +401,6 @@ +@@ -422,8 +422,6 @@ group("gn_all") { "//net:disk_cache_memory_test", "//net:quic_client", "//net:quic_server", @@ -18,7 +18,7 @@ "//testing:empty_main", ] -@@ -460,10 +458,6 @@ +@@ -480,10 +478,6 @@ group("gn_all") { "//chrome/test/chromedriver:chromedriver", "//chrome/test/chromedriver:chromedriver_tests", "//components/sync:run_sync_testserver", @@ -29,7 +29,7 @@ "//media/cast:generate_barcode_video", "//media/cast:generate_timecode_audio", "//net:crash_cache", -@@ -519,10 +513,6 @@ +@@ -538,10 +532,6 @@ group("gn_all") { "//mojo:mojo_perftests", "//services/service_manager/public/cpp", "//testing/gmock:gmock_main", @@ -40,7 +40,7 @@ ] if (!is_android) { -@@ -598,7 +588,7 @@ +@@ -615,7 +605,7 @@ group("gn_all") { host_os == "win") { deps += [ "//chrome/test/mini_installer:mini_installer_tests" ] } @@ -49,7 +49,7 @@ deps += [ "//third_party/breakpad:symupload($host_toolchain)" ] } -@@ -818,7 +808,6 @@ +@@ -873,7 +863,6 @@ if (is_chromeos) { "//ppapi/examples/video_decode", "//sandbox/linux:chrome_sandbox", "//sandbox/linux:sandbox_linux_unittests", @@ -57,7 +57,7 @@ # Blocked on https://github.com/catapult-project/catapult/issues/2297 #"//third_party/catapult/telemetry:bitmaptools", -@@ -921,7 +910,7 @@ +@@ -1001,7 +990,7 @@ if (!is_ios) { ] } @@ -66,7 +66,7 @@ data_deps += [ "//third_party/breakpad:minidump_stackwalk($host_toolchain)" ] } -@@ -930,7 +919,7 @@ +@@ -1010,7 +999,7 @@ if (!is_ios) { data_deps += [ "//third_party/breakpad:dump_syms($host_toolchain)" ] } @@ -75,7 +75,7 @@ data_deps += [ "//third_party/breakpad:dump_syms($host_toolchain)" ] } -@@ -1055,9 +1044,6 @@ +@@ -1150,9 +1139,6 @@ group("chromium_builder_perf") { if (is_win) { data_deps += [ "//chrome/installer/mini_installer:mini_installer" ] Modified: head/www/iridium/files/patch-apps_ui_views_app__window__frame__view.cc ============================================================================== --- head/www/iridium/files/patch-apps_ui_views_app__window__frame__view.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-apps_ui_views_app__window__frame__view.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,4 +1,4 @@ ---- apps/ui/views/app_window_frame_view.cc.orig 2017-06-05 19:03:00 UTC +--- apps/ui/views/app_window_frame_view.cc.orig 2019-03-11 22:00:51 UTC +++ apps/ui/views/app_window_frame_view.cc @@ -132,7 +132,7 @@ gfx::Rect AppWindowFrameView::GetBoundsForClientView() gfx::Rect AppWindowFrameView::GetWindowBoundsForClientBounds( Modified: head/www/iridium/files/patch-ash_display_mirror__window__controller.cc ============================================================================== --- head/www/iridium/files/patch-ash_display_mirror__window__controller.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-ash_display_mirror__window__controller.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- ash/display/mirror_window_controller.cc.orig 2017-06-05 19:03:00 UTC +--- ash/display/mirror_window_controller.cc.orig 2019-03-11 22:00:51 UTC +++ ash/display/mirror_window_controller.cc -@@ -249,7 +249,11 @@ void MirrorWindowController::UpdateWindow( +@@ -274,7 +274,11 @@ void MirrorWindowController::UpdateWindow( return info.id() == iter->first; }) == display_info_list.end()) { CloseAndDeleteHost(iter->second, true); Modified: head/www/iridium/files/patch-base_BUILD.gn ============================================================================== --- head/www/iridium/files/patch-base_BUILD.gn Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_BUILD.gn Tue Jun 18 19:24:43 2019 (r504498) @@ -1,15 +1,15 @@ ---- base/BUILD.gn.orig 2017-12-15 02:04:05.000000000 +0100 -+++ base/BUILD.gn 2017-12-30 01:18:00.438461000 +0100 -@@ -1125,7 +1125,7 @@ +--- base/BUILD.gn.orig 2019-03-11 22:00:51 UTC ++++ base/BUILD.gn +@@ -1185,7 +1185,7 @@ jumbo_component("base") { # Needed for if using newer C++ library than sysroot, except if # building inside the cros_sdk environment - use host_toolchain as a # more robust check for this. - if (!use_sysroot && (is_android || (is_linux && !is_chromecast)) && + if (!use_sysroot && (is_android || (is_linux && !is_chromecast) && !is_clang) && host_toolchain != "//build/toolchain/cros:host") { - libs = [ "atomic" ] + libs += [ "atomic" ] } -@@ -1151,7 +1151,7 @@ +@@ -1211,7 +1211,7 @@ jumbo_component("base") { "allocator/allocator_shim_override_glibc_weak_symbols.h", ] deps += [ "//base/allocator:tcmalloc" ] @@ -18,16 +18,7 @@ sources += [ "allocator/allocator_shim_default_dispatch_to_glibc.cc" ] } else if (is_android && use_allocator == "none") { sources += [ -@@ -1539,7 +1539,7 @@ - "//base/third_party/xdg_user_dirs", - ] - } else { -- # Non-Linux. -+ # Non-Linux/BSD. - sources -= [ - "nix/mime_util_xdg.cc", - "nix/mime_util_xdg.h", -@@ -1555,6 +1555,33 @@ +@@ -1751,6 +1751,33 @@ jumbo_component("base") { } } @@ -36,11 +27,10 @@ + "files/file_path_watcher_linux.cc", + "files/file_util_linux.cc", + "process/memory_linux.cc", -+ "process/process_linux.cc", + "process/process_handle_linux.cc", + "process/process_iterator_linux.cc", + "process/process_metrics_linux.cc", -+ "sys_info_linux.cc" ++ "system/sys_info_linux.cc" + ] + sources += [ + "files/file_path_watcher_kqueue.cc", @@ -50,18 +40,19 @@ + "process/process_handle_freebsd.cc", + "process/process_iterator_freebsd.cc", + "process/process_metrics_freebsd.cc", -+ "sys_info_freebsd.cc", ++ "system/sys_info_freebsd.cc", + ] + libs = [ + "execinfo", # logging.cc -+ "kvm" # process_metrics_freebsd ++ "kvm", # process_metrics_freebsd ++ "util" # process_metrics_freebsd + ] + } + # iOS if (is_ios) { set_sources_assignment_filter([]) -@@ -2389,6 +2416,12 @@ +@@ -2808,6 +2835,12 @@ test("base_unittests") { ] set_sources_assignment_filter(sources_assignment_filter) } Modified: head/www/iridium/files/patch-base_allocator_allocator__shim.cc ============================================================================== --- head/www/iridium/files/patch-base_allocator_allocator__shim.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_allocator_allocator__shim.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- base/allocator/allocator_shim.cc.orig 2017-06-05 19:03:00 UTC +--- base/allocator/allocator_shim.cc.orig 2019-03-11 22:00:51 UTC +++ base/allocator/allocator_shim.cc -@@ -83,7 +83,7 @@ inline const allocator::AllocatorDispatch* GetChainHea +@@ -70,7 +70,7 @@ inline const allocator::AllocatorDispatch* GetChainHea // Unfortunately due to that bug NoBarrier_Load() is mistakenly fully // barriered on Linux+Clang, and that causes visible perf regressons. return reinterpret_cast( Modified: head/www/iridium/files/patch-base_allocator_allocator__shim__default__dispatch__to__glibc.cc ============================================================================== --- head/www/iridium/files/patch-base_allocator_allocator__shim__default__dispatch__to__glibc.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_allocator_allocator__shim__default__dispatch__to__glibc.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,4 +1,4 @@ ---- base/allocator/allocator_shim_default_dispatch_to_glibc.cc.orig 2017-06-05 19:03:00 UTC +--- base/allocator/allocator_shim_default_dispatch_to_glibc.cc.orig 2019-03-11 22:00:51 UTC +++ base/allocator/allocator_shim_default_dispatch_to_glibc.cc @@ -3,19 +3,28 @@ // found in the LICENSE file. Modified: head/www/iridium/files/patch-base_allocator_allocator__shim__override__libc__symbols.h ============================================================================== --- head/www/iridium/files/patch-base_allocator_allocator__shim__override__libc__symbols.h Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_allocator_allocator__shim__override__libc__symbols.h Tue Jun 18 19:24:43 2019 (r504498) @@ -1,4 +1,4 @@ ---- base/allocator/allocator_shim_override_libc_symbols.h.orig 2017-04-19 19:06:28 UTC +--- base/allocator/allocator_shim_override_libc_symbols.h.orig 2019-03-11 22:00:51 UTC +++ base/allocator/allocator_shim_override_libc_symbols.h @@ -10,7 +10,7 @@ #endif Modified: head/www/iridium/files/patch-base_allocator_allocator__shim__unittest.cc ============================================================================== --- head/www/iridium/files/patch-base_allocator_allocator__shim__unittest.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_allocator_allocator__shim__unittest.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- base/allocator/allocator_shim_unittest.cc.orig 2017-06-05 19:03:00 UTC +--- base/allocator/allocator_shim_unittest.cc.orig 2019-03-11 22:00:51 UTC +++ base/allocator/allocator_shim_unittest.cc -@@ -293,7 +293,7 @@ TEST_F(AllocatorShimTest, InterceptLibcSymbols) { +@@ -348,7 +348,7 @@ TEST_F(AllocatorShimTest, InterceptLibcSymbols) { ASSERT_GE(aligned_allocs_intercepted_by_size[61], 1u); #endif // !OS_WIN @@ -9,7 +9,7 @@ void* memalign_ptr = memalign(128, 53); ASSERT_NE(nullptr, memalign_ptr); ASSERT_EQ(0u, reinterpret_cast(memalign_ptr) % 128); -@@ -306,7 +306,7 @@ TEST_F(AllocatorShimTest, InterceptLibcSymbols) { +@@ -361,7 +361,7 @@ TEST_F(AllocatorShimTest, InterceptLibcSymbols) { ASSERT_GE(aligned_allocs_intercepted_by_alignment[kPageSize], 1u); // pvalloc rounds the size up to the next page. ASSERT_GE(aligned_allocs_intercepted_by_size[kPageSize], 1u); @@ -18,7 +18,7 @@ char* realloc_ptr = static_cast(malloc(10)); strcpy(realloc_ptr, "foobar"); -@@ -322,13 +322,13 @@ TEST_F(AllocatorShimTest, InterceptLibcSymbols) { +@@ -377,13 +377,13 @@ TEST_F(AllocatorShimTest, InterceptLibcSymbols) { free(zero_alloc_ptr); ASSERT_GE(frees_intercepted_by_addr[Hash(zero_alloc_ptr)], 1u); Added: head/www/iridium/files/patch-base_allocator_partition__allocator_page__allocator.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-base_allocator_partition__allocator_page__allocator.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -0,0 +1,11 @@ +--- base/allocator/partition_allocator/page_allocator.cc.orig 2019-03-11 22:00:51 UTC ++++ base/allocator/partition_allocator/page_allocator.cc +@@ -115,7 +115,7 @@ void* AllocPages(void* address, + uintptr_t align_base_mask = ~align_offset_mask; + DCHECK(!(reinterpret_cast(address) & align_offset_mask)); + +-#if defined(OS_LINUX) && defined(ARCH_CPU_64_BITS) ++#if (defined(OS_BSD) || defined(OS_LINUX)) && defined(ARCH_CPU_64_BITS) + // On 64 bit Linux, we may need to adjust the address space limit for + // guarded allocations. + if (length >= kMinimumGuardedMemorySize) { Added: head/www/iridium/files/patch-base_allocator_partition__allocator_page__allocator__internals__posix.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-base_allocator_partition__allocator_page__allocator__internals__posix.h Tue Jun 18 19:24:43 2019 (r504498) @@ -0,0 +1,38 @@ +--- base/allocator/partition_allocator/page_allocator_internals_posix.h.orig 2019-03-11 22:00:51 UTC ++++ base/allocator/partition_allocator/page_allocator_internals_posix.h +@@ -14,7 +14,7 @@ + #if defined(OS_MACOSX) + #include + #endif +-#if defined(OS_LINUX) ++#if defined(OS_BSD) || defined(OS_LINUX) + #include + + #include +@@ -48,7 +48,7 @@ int GetAccessFlags(PageAccessibilityConfiguration acce + } + } + +-#if defined(OS_LINUX) && defined(ARCH_CPU_64_BITS) ++#if (defined(OS_BSD) || defined(OS_LINUX)) && defined(ARCH_CPU_64_BITS) + + // Multiple guarded memory regions may exceed the process address space limit. + // This function will raise or lower the limit by |amount|. +@@ -68,7 +68,7 @@ bool AdjustAddressSpaceLimit(int64_t amount) { + // schemes that reduce that to 4 GiB. + constexpr size_t kMinimumGuardedMemorySize = 1ULL << 32; // 4 GiB + +-#endif // defined(OS_LINUX) && defined(ARCH_CPU_64_BITS) ++#endif // (defined(OS_BSD) || defined(OS_LINUX)) && defined(ARCH_CPU_64_BITS) + + void* SystemAllocPagesInternal(void* hint, + size_t length, +@@ -134,7 +134,7 @@ void SetSystemPagesAccessInternal( + void FreePagesInternal(void* address, size_t length) { + CHECK(!munmap(address, length)); + +-#if defined(OS_LINUX) && defined(ARCH_CPU_64_BITS) ++#if (defined(OS_BSD) || defined(OS_LINUX)) && defined(ARCH_CPU_64_BITS) + // Restore the address space limit. + if (length >= kMinimumGuardedMemorySize) { + CHECK(AdjustAddressSpaceLimit(-base::checked_cast(length))); Modified: head/www/iridium/files/patch-base_debug_debugger__posix.cc ============================================================================== --- head/www/iridium/files/patch-base_debug_debugger__posix.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_debug_debugger__posix.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- base/debug/debugger_posix.cc.orig 2017-06-18 01:23:49.065175000 +0200 -+++ base/debug/debugger_posix.cc 2017-06-18 01:58:29.603481000 +0200 -@@ -84,7 +84,7 @@ +--- base/debug/debugger_posix.cc.orig 2019-03-11 22:00:51 UTC ++++ base/debug/debugger_posix.cc +@@ -86,7 +86,7 @@ bool BeingDebugged() { KERN_PROC, KERN_PROC_PID, getpid() @@ -9,7 +9,7 @@ , sizeof(struct kinfo_proc), 0 #endif -@@ -92,33 +92,36 @@ +@@ -94,33 +94,35 @@ bool BeingDebugged() { // Caution: struct kinfo_proc is marked __APPLE_API_UNSTABLE. The source and // binary interfaces may change. @@ -19,16 +19,15 @@ + size_t info_size; -#if defined(OS_OPENBSD) - if (sysctl(mib, arraysize(mib), NULL, &info_size, NULL, 0) < 0) + if (sysctl(mib, base::size(mib), NULL, &info_size, NULL, 0) < 0) return -1; + info = (struct kinfo_proc *)malloc(info_size); -+ mib[5] = (info_size / sizeof(struct kinfo_proc)); -#endif -- int sysctl_result = sysctl(mib, arraysize(mib), &info, &info_size, NULL, 0); -+ int sysctl_result = sysctl(mib, arraysize(mib), info, &info_size, NULL, 0); +- int sysctl_result = sysctl(mib, base::size(mib), &info, &info_size, NULL, 0); ++ int sysctl_result = sysctl(mib, base::size(mib), info, &info_size, NULL, 0); DCHECK_EQ(sysctl_result, 0); if (sysctl_result != 0) { is_set = true; Added: head/www/iridium/files/patch-base_debug_elf__reader__linux.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-base_debug_elf__reader__linux.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -0,0 +1,13 @@ +--- base/debug/elf_reader_linux.cc.orig 2019-03-11 22:00:51 UTC ++++ base/debug/elf_reader_linux.cc +@@ -41,8 +41,10 @@ Optional ElfSegmentBuildIDNoteAsString(co + const void* section_end = segment.data() + segment.size_bytes(); + const Nhdr* note_header = reinterpret_cast(segment.data()); + while (note_header < section_end) { ++#if !defined(OS_BSD) + if (note_header->n_type == NT_GNU_BUILD_ID) + break; ++#endif + note_header = reinterpret_cast( + reinterpret_cast(note_header) + sizeof(Nhdr) + + bits::Align(note_header->n_namesz, 4) + Modified: head/www/iridium/files/patch-base_debug_proc__maps__linux.cc ============================================================================== --- head/www/iridium/files/patch-base_debug_proc__maps__linux.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_debug_proc__maps__linux.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,4 +1,4 @@ ---- base/debug/proc_maps_linux.cc.orig 2017-04-19 19:06:28 UTC +--- base/debug/proc_maps_linux.cc.orig 2019-03-11 22:00:51 UTC +++ base/debug/proc_maps_linux.cc @@ -12,7 +12,7 @@ #include "base/strings/string_split.h" Added: head/www/iridium/files/patch-base_debug_stack__trace.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-base_debug_stack__trace.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -0,0 +1,11 @@ +--- base/debug/stack_trace.cc.orig 2019-03-17 21:37:51 UTC ++++ base/debug/stack_trace.cc +@@ -14,7 +14,7 @@ + + #if BUILDFLAG(CAN_UNWIND_WITH_FRAME_POINTERS) + +-#if defined(OS_LINUX) || defined(OS_ANDROID) ++#if defined(OS_LINUX) || defined(OS_ANDROID) || defined(OS_BSD) + #include + #include "base/process/process_handle.h" + #include "base/threading/platform_thread.h" Modified: head/www/iridium/files/patch-base_debug_stack__trace.h ============================================================================== --- head/www/iridium/files/patch-base_debug_stack__trace.h Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_debug_stack__trace.h Tue Jun 18 19:24:43 2019 (r504498) @@ -1,5 +1,5 @@ ---- base/debug/stack_trace.h.orig 2017-08-02 19:09:58.400190000 +0200 -+++ base/debug/stack_trace.h 2017-08-02 19:10:33.950334000 +0200 +--- base/debug/stack_trace.h.orig 2019-03-11 22:00:51 UTC ++++ base/debug/stack_trace.h @@ -16,6 +16,7 @@ #include "build/build_config.h" Modified: head/www/iridium/files/patch-base_debug_stack__trace__posix.cc ============================================================================== --- head/www/iridium/files/patch-base_debug_stack__trace__posix.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_debug_stack__trace__posix.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- base/debug/stack_trace_posix.cc.orig 2017-07-25 21:04:48.000000000 +0200 -+++ base/debug/stack_trace_posix.cc 2017-08-02 18:45:42.071358000 +0200 -@@ -34,7 +34,7 @@ +--- base/debug/stack_trace_posix.cc.orig 2019-03-11 22:00:51 UTC ++++ base/debug/stack_trace_posix.cc +@@ -35,7 +35,7 @@ #include #endif @@ -9,7 +9,7 @@ #include "base/debug/proc_maps_linux.h" #endif -@@ -574,6 +574,11 @@ +@@ -653,6 +653,11 @@ class SandboxSymbolizeHelper { // for the modules that are loaded in the current process. // Returns true on success. bool CacheMemoryRegions() { @@ -21,7 +21,7 @@ // Reads /proc/self/maps. std::string contents; if (!ReadProcMaps(&contents)) { -@@ -589,6 +594,7 @@ +@@ -670,6 +675,7 @@ class SandboxSymbolizeHelper { is_initialized_ = true; return true; @@ -29,12 +29,3 @@ } // Opens all object files and caches their file descriptors. -@@ -721,7 +727,7 @@ - // NOTE: This code MUST be async-signal safe (it's used by in-process - // stack dumping signal handler). NO malloc or stdio is allowed here. - --#if !defined(__UCLIBC__) && !defined(_AIX) -+#if !defined(__UCLIBC__) && !defined(_AIX) && !defined(OS_BSD) - count = std::min(arraysize(trace_), count); - - // Though the backtrace API man page does not list any possible negative Modified: head/www/iridium/files/patch-base_files_file__path__unittest.cc ============================================================================== --- head/www/iridium/files/patch-base_files_file__path__unittest.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_files_file__path__unittest.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- base/files/file_path_unittest.cc.orig 2017-06-05 19:03:00 UTC +--- base/files/file_path_unittest.cc.orig 2019-03-11 22:00:51 UTC +++ base/files/file_path_unittest.cc -@@ -1133,7 +1133,7 @@ TEST_F(FilePathTest, FromUTF8Unsafe_And_AsUTF8Unsafe) +@@ -1138,7 +1138,7 @@ TEST_F(FilePathTest, FromUTF8Unsafe_And_AsUTF8Unsafe) "\xEF\xBC\xA1\xEF\xBC\xA2\xEF\xBC\xA3.txt" }, }; Modified: head/www/iridium/files/patch-base_files_file__path__watcher__kqueue.h ============================================================================== --- head/www/iridium/files/patch-base_files_file__path__watcher__kqueue.h Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_files_file__path__watcher__kqueue.h Tue Jun 18 19:24:43 2019 (r504498) @@ -1,4 +1,4 @@ ---- base/files/file_path_watcher_kqueue.h.orig 2017-06-05 19:03:00 UTC +--- base/files/file_path_watcher_kqueue.h.orig 2019-03-11 22:00:51 UTC +++ base/files/file_path_watcher_kqueue.h @@ -5,6 +5,10 @@ #ifndef BASE_FILES_FILE_PATH_WATCHER_KQUEUE_H_ Modified: head/www/iridium/files/patch-base_files_file__path__watcher__stub.cc ============================================================================== --- head/www/iridium/files/patch-base_files_file__path__watcher__stub.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_files_file__path__watcher__stub.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,5 +1,5 @@ ---- base/files/file_path_watcher_stub.cc.orig 2018-07-19 23:00:07.807326000 +0200 -+++ base/files/file_path_watcher_stub.cc 2018-07-19 23:05:24.785603000 +0200 +--- base/files/file_path_watcher_stub.cc.orig 2019-03-11 22:00:51 UTC ++++ base/files/file_path_watcher_stub.cc @@ -1,14 +1,15 @@ -// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Copyright 2014 The Chromium Authors. All rights reserved. @@ -20,7 +20,7 @@ namespace base { -@@ -22,12 +23,26 @@ +@@ -22,12 +23,26 @@ class FilePathWatcherImpl : public FilePathWatcher::Pl bool Watch(const FilePath& path, bool recursive, const FilePathWatcher::Callback& callback) override { Added: head/www/iridium/files/patch-base_files_file__path__watcher__unittest.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-base_files_file__path__watcher__unittest.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -0,0 +1,11 @@ +--- base/files/file_path_watcher_unittest.cc.orig 2019-03-11 22:00:51 UTC ++++ base/files/file_path_watcher_unittest.cc +@@ -436,7 +436,7 @@ TEST_F(FilePathWatcherTest, WatchDirectory) { + VLOG(1) << "Waiting for file1 creation"; + ASSERT_TRUE(WaitForEvents()); + +-#if !defined(OS_MACOSX) ++#if !defined(OS_MACOSX) && !defined(OS_BSD) + // Mac implementation does not detect files modified in a directory. + ASSERT_TRUE(WriteFile(file1, "content v2")); + VLOG(1) << "Waiting for file1 modification"; Modified: head/www/iridium/files/patch-base_files_file__util.h ============================================================================== --- head/www/iridium/files/patch-base_files_file__util.h Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_files_file__util.h Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- base/files/file_util.h.orig 2017-07-25 21:04:48.000000000 +0200 -+++ base/files/file_util.h 2017-07-29 00:57:11.269678000 +0200 -@@ -406,7 +406,7 @@ +--- base/files/file_util.h.orig 2019-03-11 22:00:51 UTC ++++ base/files/file_util.h +@@ -445,7 +445,7 @@ BASE_EXPORT bool VerifyPathControlledByAdmin(const bas // the directory |path|, in the number of FilePath::CharType, or -1 on failure. BASE_EXPORT int GetMaximumPathComponentLength(const base::FilePath& path); Added: head/www/iridium/files/patch-base_files_file__util__posix.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-base_files_file__util__posix.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -0,0 +1,11 @@ +--- base/files/file_util_posix.cc.orig 2019-03-17 21:31:57 UTC ++++ base/files/file_util_posix.cc +@@ -407,7 +407,7 @@ bool CopyDirectoryExcl(const FilePath& from_path, + #endif // !defined(OS_NACL_NONSFI) + + bool CreateLocalNonBlockingPipe(int fds[2]) { +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) || defined(OS_BSD) + return pipe2(fds, O_CLOEXEC | O_NONBLOCK) == 0; + #else + int raw_fds[2]; Added: head/www/iridium/files/patch-base_files_memory__mapped__file__posix.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-base_files_memory__mapped__file__posix.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -0,0 +1,11 @@ +--- base/files/memory_mapped_file_posix.cc.orig 2019-03-11 22:00:51 UTC ++++ base/files/memory_mapped_file_posix.cc +@@ -110,6 +110,8 @@ bool MemoryMappedFile::MapFileRegionToMemory( + // Only Android API>=21 supports the fallocate call. Older versions need + // to manually extend the file by writing zeros at block intervals. + do_manual_extension = true; ++#elif defined(OS_BSD) ++ do_manual_extension = true; + #elif defined(OS_MACOSX) + // MacOS doesn't support fallocate even though their new APFS filesystem + // does support sparse files. It does, however, have the functionality Modified: head/www/iridium/files/patch-base_i18n_icu__util.cc ============================================================================== --- head/www/iridium/files/patch-base_i18n_icu__util.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_i18n_icu__util.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,5 +1,5 @@ ---- base/i18n/icu_util.cc.orig 2017-09-05 21:05:11.000000000 +0200 -+++ base/i18n/icu_util.cc 2017-09-06 16:47:26.158180000 +0200 +--- base/i18n/icu_util.cc.orig 2019-03-11 22:00:51 UTC ++++ base/i18n/icu_util.cc @@ -20,7 +20,7 @@ #include "build/build_config.h" #include "third_party/icu/source/common/unicode/putil.h" @@ -9,7 +9,7 @@ #include "third_party/icu/source/i18n/unicode/timezone.h" #endif -@@ -312,7 +312,7 @@ +@@ -315,7 +315,7 @@ bool InitializeICU() { // TODO(jungshik): Some callers do not care about tz at all. If necessary, // add a boolean argument to this function to init'd the default tz only // when requested. Modified: head/www/iridium/files/patch-base_linux__util.cc ============================================================================== --- head/www/iridium/files/patch-base_linux__util.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_linux__util.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- base/linux_util.cc.orig 2017-04-19 19:06:28 UTC +--- base/linux_util.cc.orig 2019-03-11 22:00:51 UTC +++ base/linux_util.cc -@@ -110,12 +110,14 @@ char g_linux_distro[kDistroSize] = +@@ -90,12 +90,14 @@ char g_linux_distro[kDistroSize] = "CrOS"; #elif defined(OS_ANDROID) "Android"; Modified: head/www/iridium/files/patch-base_logging__unittest.cc ============================================================================== --- head/www/iridium/files/patch-base_logging__unittest.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_logging__unittest.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- base/logging_unittest.cc.orig 2017-06-21 19:47:24.089128000 +0200 -+++ base/logging_unittest.cc 2017-06-21 20:02:08.177123000 +0200 -@@ -272,7 +272,7 @@ +--- base/logging_unittest.cc.orig 2019-03-11 22:00:51 UTC ++++ base/logging_unittest.cc +@@ -420,7 +420,7 @@ void CheckCrashTestSighandler(int, siginfo_t* info, vo // need the arch-specific boilerplate below, which is inspired by breakpad. // At the same time, on OSX, ucontext.h is deprecated but si_addr works fine. uintptr_t crash_addr = 0; @@ -8,4 +8,4 @@ +#if defined(OS_MACOSX) || defined(OS_BSD) crash_addr = reinterpret_cast(info->si_addr); #else // OS_POSIX && !OS_MACOSX - struct ucontext* context = reinterpret_cast(context_ptr); + ucontext_t* context = reinterpret_cast(context_ptr); Modified: head/www/iridium/files/patch-base_native__library__posix.cc ============================================================================== --- head/www/iridium/files/patch-base_native__library__posix.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_native__library__posix.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- base/native_library_posix.cc.orig 2017-07-25 21:04:48.000000000 +0200 -+++ base/native_library_posix.cc 2017-08-02 21:02:05.991380000 +0200 -@@ -30,7 +30,7 @@ +--- base/native_library_posix.cc.orig 2019-03-11 22:00:51 UTC ++++ base/native_library_posix.cc +@@ -29,7 +29,7 @@ NativeLibrary LoadNativeLibraryWithOptions(const FileP // http://crbug.com/17943, http://crbug.com/17557, http://crbug.com/36892, // and http://crbug.com/40794. int flags = RTLD_LAZY; Added: head/www/iridium/files/patch-base_native__library__unittest.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-base_native__library__unittest.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -0,0 +1,11 @@ +--- base/native_library_unittest.cc.orig 2019-03-11 22:00:51 UTC ++++ base/native_library_unittest.cc +@@ -120,7 +120,7 @@ TEST(NativeLibraryTest, LoadLibrary) { + // Android dlopen() requires further investigation, as it might vary across + // versions with respect to symbol resolution scope. + // TSan and MSan error out on RTLD_DEEPBIND, https://crbug.com/705255 +-#if !defined(OS_ANDROID) && !defined(THREAD_SANITIZER) && \ ++#if !defined(OS_ANDROID) && !defined(OS_BSD) && !defined(THREAD_SANITIZER) && \ + !defined(MEMORY_SANITIZER) + + // Verifies that the |prefer_own_symbols| option satisfies its guarantee that Added: head/www/iridium/files/patch-base_numerics_safe__math__shared__impl.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-base_numerics_safe__math__shared__impl.h Tue Jun 18 19:24:43 2019 (r504498) @@ -0,0 +1,13 @@ +--- base/numerics/safe_math_shared_impl.h.orig 2019-03-11 22:00:51 UTC ++++ base/numerics/safe_math_shared_impl.h +@@ -19,9 +19,7 @@ + + // Where available use builtin math overflow support on Clang and GCC. + #if !defined(__native_client__) && \ +- ((defined(__clang__) && \ +- ((__clang_major__ > 3) || \ +- (__clang_major__ == 3 && __clang_minor__ >= 4))) || \ ++ ((defined(__clang__) && (__clang_major__ > 6)) || \ + (defined(__GNUC__) && __GNUC__ >= 5)) + #include "base/numerics/safe_math_clang_gcc_impl.h" + #define BASE_HAS_OPTIMIZED_SAFE_MATH (1) Added: head/www/iridium/files/patch-base_posix_can__lower__nice__to.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-base_posix_can__lower__nice__to.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -0,0 +1,20 @@ +--- base/posix/can_lower_nice_to.cc.orig 2019-03-11 22:00:51 UTC ++++ base/posix/can_lower_nice_to.cc +@@ -31,6 +31,9 @@ bool CanLowerNiceTo(int nice_value) { + if (geteuid() == 0) + return true; + ++#if defined(OS_BSD) ++ return false; ++#else + // 2. Skip checking the CAP_SYS_NICE permission because it would require + // libcap.so. + +@@ -54,6 +57,7 @@ bool CanLowerNiceTo(int nice_value) { + // And lowering niceness to |nice_value| is allowed if it is greater than or + // equal to the limit: + return nice_value >= lowest_nice_allowed; ++#endif + } + + } // namespace internal Modified: head/www/iridium/files/patch-base_posix_unix__domain__socket.cc ============================================================================== --- head/www/iridium/files/patch-base_posix_unix__domain__socket.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_posix_unix__domain__socket.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,5 +1,5 @@ ---- base/posix/unix_domain_socket.cc.orig 2018-01-04 21:05:38.000000000 +0100 -+++ base/posix/unix_domain_socket.cc 2018-01-06 12:44:56.681201000 +0100 +--- base/posix/unix_domain_socket.cc.orig 2019-03-11 22:00:51 UTC ++++ base/posix/unix_domain_socket.cc @@ -5,7 +5,10 @@ #include "base/posix/unix_domain_socket.h" @@ -11,7 +11,7 @@ #if !defined(OS_NACL_NONSFI) #include #endif -@@ -28,6 +31,14 @@ +@@ -28,6 +31,14 @@ namespace base { const size_t UnixDomainSocket::kMaxFileDescriptors = 16; @@ -26,7 +26,7 @@ #if !defined(OS_NACL_NONSFI) bool CreateSocketPair(ScopedFD* one, ScopedFD* two) { int raw_socks[2]; -@@ -150,7 +161,7 @@ +@@ -150,7 +161,7 @@ ssize_t UnixDomainSocket::RecvMsgWithFlags(int fd, #if !defined(OS_NACL_NONSFI) && !defined(OS_MACOSX) // The PNaCl toolchain for Non-SFI binary build and macOS do not support // ucred. macOS supports xucred, but this structure is insufficient. @@ -35,7 +35,7 @@ #endif // OS_NACL_NONSFI or OS_MACOSX ; char control_buffer[kControlBufferSize]; -@@ -180,9 +191,9 @@ +@@ -180,9 +191,9 @@ ssize_t UnixDomainSocket::RecvMsgWithFlags(int fd, // SCM_CREDENTIALS. if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SCM_CREDENTIALS) { Modified: head/www/iridium/files/patch-base_posix_unix__domain__socket__unittest.cc ============================================================================== --- head/www/iridium/files/patch-base_posix_unix__domain__socket__unittest.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_posix_unix__domain__socket__unittest.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,5 +1,5 @@ ---- base/posix/unix_domain_socket_unittest.cc.orig 2017-12-23 20:50:07.237565000 +0100 -+++ base/posix/unix_domain_socket_unittest.cc 2017-12-23 20:51:05.651558000 +0100 +--- base/posix/unix_domain_socket_unittest.cc.orig 2019-03-11 22:00:51 UTC ++++ base/posix/unix_domain_socket_unittest.cc @@ -8,6 +8,9 @@ #include #include Modified: head/www/iridium/files/patch-base_process_internal__linux.cc ============================================================================== --- head/www/iridium/files/patch-base_process_internal__linux.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_process_internal__linux.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- base/process/internal_linux.cc.orig 2017-08-10 00:00:17.842158000 +0200 -+++ base/process/internal_linux.cc 2017-08-10 00:02:37.838081000 +0200 -@@ -60,10 +60,13 @@ +--- base/process/internal_linux.cc.orig 2019-03-11 22:00:51 UTC ++++ base/process/internal_linux.cc +@@ -60,10 +60,13 @@ bool ReadProcFile(const FilePath& file, std::string* b // Synchronously reading files in /proc is safe. ThreadRestrictions::ScopedAllowIO allow_io; Modified: head/www/iridium/files/patch-base_process_internal__linux.h ============================================================================== --- head/www/iridium/files/patch-base_process_internal__linux.h Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_process_internal__linux.h Tue Jun 18 19:24:43 2019 (r504498) @@ -1,4 +1,4 @@ ---- base/process/internal_linux.h.orig 2017-04-19 19:06:28 UTC +--- base/process/internal_linux.h.orig 2019-03-11 22:00:51 UTC +++ base/process/internal_linux.h @@ -14,6 +14,8 @@ Modified: head/www/iridium/files/patch-base_process_kill.h ============================================================================== --- head/www/iridium/files/patch-base_process_kill.h Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_process_kill.h Tue Jun 18 19:24:43 2019 (r504498) @@ -1,6 +1,6 @@ ---- base/process/kill.h.orig 2018-07-19 22:11:43.638992000 +0200 -+++ base/process/kill.h 2018-07-19 22:12:06.613065000 +0200 -@@ -111,7 +111,7 @@ +--- base/process/kill.h.orig 2019-03-11 22:00:51 UTC ++++ base/process/kill.h +@@ -111,7 +111,7 @@ BASE_EXPORT TerminationStatus GetTerminationStatus(Pro BASE_EXPORT TerminationStatus GetKnownDeadTerminationStatus( ProcessHandle handle, int* exit_code); Added: head/www/iridium/files/patch-base_process_kill__posix.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/iridium/files/patch-base_process_kill__posix.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -0,0 +1,11 @@ +--- base/process/kill_posix.cc.orig 2019-03-11 22:00:51 UTC ++++ base/process/kill_posix.cc +@@ -168,7 +168,7 @@ void EnsureProcessTerminated(Process process) { + 0, new BackgroundReaper(std::move(process), TimeDelta::FromSeconds(2))); + } + +-#if defined(OS_LINUX) ++#if defined(OS_LINUX) || defined(OS_BSD) + void EnsureProcessGetsReaped(Process process) { + DCHECK(!process.is_current()); + Modified: head/www/iridium/files/patch-base_process_launch.cc ============================================================================== --- head/www/iridium/files/patch-base_process_launch.cc Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_process_launch.cc Tue Jun 18 19:24:43 2019 (r504498) @@ -1,4 +1,4 @@ ---- base/process/launch.cc.orig 2017-06-05 19:03:00 UTC +--- base/process/launch.cc.orig 2019-03-11 22:00:51 UTC +++ base/process/launch.cc @@ -15,7 +15,7 @@ LaunchOptions::~LaunchOptions() = default; Modified: head/www/iridium/files/patch-base_process_launch.h ============================================================================== --- head/www/iridium/files/patch-base_process_launch.h Tue Jun 18 19:16:41 2019 (r504497) +++ head/www/iridium/files/patch-base_process_launch.h Tue Jun 18 19:24:43 2019 (r504498) @@ -1,20 +1,20 @@ ---- base/process/launch.h.orig 2017-04-19 19:06:28 UTC +--- base/process/launch.h.orig 2019-03-11 22:00:51 UTC +++ base/process/launch.h -@@ -138,7 +138,7 @@ struct BASE_EXPORT LaunchOptions { - // will be the same as its pid. *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Tue Jun 18 19:50:14 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 636AA15C7051; Tue, 18 Jun 2019 19:50:14 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0824D8BB1A; Tue, 18 Jun 2019 19:50:14 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A03A919CF5; Tue, 18 Jun 2019 19:50:13 +0000 (UTC) (envelope-from rene@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IJoD6S062177; Tue, 18 Jun 2019 19:50:13 GMT (envelope-from rene@FreeBSD.org) Received: (from rene@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IJoDDJ062175; Tue, 18 Jun 2019 19:50:13 GMT (envelope-from rene@FreeBSD.org) Message-Id: <201906181950.x5IJoDDJ062175@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rene set sender to rene@FreeBSD.org using -f From: Rene Ladan Date: Tue, 18 Jun 2019 19:50:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504499 - in head/x11-toolkits/nanogui: . files X-SVN-Group: ports-head X-SVN-Commit-Author: rene X-SVN-Commit-Paths: in head/x11-toolkits/nanogui: . files X-SVN-Commit-Revision: 504499 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0824D8BB1A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.956,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 19:50:14 -0000 Author: rene Date: Tue Jun 18 19:50:13 2019 New Revision: 504499 URL: https://svnweb.freebsd.org/changeset/ports/504499 Log: x11-toolkits/nanogui: include dirent.h instead of sys/dir.h which is scheduled for removal. While here modernize USES PR: 238697 Submitted by: rene Approved by: yuri (maintainer) Added: head/x11-toolkits/nanogui/files/patch-src_common.cpp (contents, props changed) Modified: head/x11-toolkits/nanogui/Makefile Modified: head/x11-toolkits/nanogui/Makefile ============================================================================== --- head/x11-toolkits/nanogui/Makefile Tue Jun 18 19:24:43 2019 (r504498) +++ head/x11-toolkits/nanogui/Makefile Tue Jun 18 19:50:13 2019 (r504499) @@ -15,7 +15,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libglfw.so:graphics/glfw -USES= cmake compiler:c++14-lang eigen:3,build,run +USES= cmake compiler:c++14-lang eigen:3,build,run gl USE_GITHUB= yes GH_ACCOUNT= wjakob GH_TAGNAME= 885e4fc Added: head/x11-toolkits/nanogui/files/patch-src_common.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-toolkits/nanogui/files/patch-src_common.cpp Tue Jun 18 19:50:13 2019 (r504499) @@ -0,0 +1,11 @@ +--- src/common.cpp.orig 2018-04-13 19:33:54 UTC ++++ src/common.cpp +@@ -24,7 +24,7 @@ + #if !defined(_WIN32) + # include + # include +-# include ++# include + #endif + + NAMESPACE_BEGIN(nanogui) From owner-svn-ports-all@freebsd.org Tue Jun 18 20:38:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E7D5915C7E54; Tue, 18 Jun 2019 20:38:00 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4AE168D03D; Tue, 18 Jun 2019 20:38:00 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1D6031A585; Tue, 18 Jun 2019 20:38:00 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IKbxPm088369; Tue, 18 Jun 2019 20:37:59 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IKbxN3088367; Tue, 18 Jun 2019 20:37:59 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906182037.x5IKbxN3088367@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Tue, 18 Jun 2019 20:37:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504500 - head/print/gutenprint X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: head/print/gutenprint X-SVN-Commit-Revision: 504500 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4AE168D03D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.956,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 20:38:01 -0000 Author: cmt Date: Tue Jun 18 20:37:59 2019 New Revision: 504500 URL: https://svnweb.freebsd.org/changeset/ports/504500 Log: update gutenprint to 5.2.15 Announcement: https://sourceforge.net/p/gimp-print/mailman/message/36693157/ While here, remove old and unused VCS tags Modified: head/print/gutenprint/Makefile head/print/gutenprint/distinfo head/print/gutenprint/pkg-plist Modified: head/print/gutenprint/Makefile ============================================================================== --- head/print/gutenprint/Makefile Tue Jun 18 19:50:13 2019 (r504499) +++ head/print/gutenprint/Makefile Tue Jun 18 20:37:59 2019 (r504500) @@ -1,9 +1,8 @@ # Created by: dgilbert@velocet.ca # $FreeBSD$ -# $MCom: ports/print/gutenprint-base/Makefile,v 1.8 2007/03/30 16:45:02 ahze Exp $ PORTNAME= gutenprint -PORTVERSION= 5.2.14 +PORTVERSION= 5.2.15 PORTREVISION?= 0 CATEGORIES= print MASTER_SITES= SF/gimp-print/gutenprint-5.2/${PORTVERSION} Modified: head/print/gutenprint/distinfo ============================================================================== --- head/print/gutenprint/distinfo Tue Jun 18 19:50:13 2019 (r504499) +++ head/print/gutenprint/distinfo Tue Jun 18 20:37:59 2019 (r504500) @@ -1,3 +1,3 @@ -TIMESTAMP = 1527683861 -SHA256 (gutenprint-5.2.14.tar.bz2) = 45bf0766f196a764c113bfad7ab1ea748f1d5ff9ebb0d3a2206705fe52e82389 -SIZE (gutenprint-5.2.14.tar.bz2) = 7173441 +TIMESTAMP = 1560846997 +SHA256 (gutenprint-5.2.15.tar.bz2) = 2b32932d6ae05a1e42b83ae754628a77ca86001f3387b084de40eb99d336cead +SIZE (gutenprint-5.2.15.tar.bz2) = 7151306 Modified: head/print/gutenprint/pkg-plist ============================================================================== --- head/print/gutenprint/pkg-plist Tue Jun 18 19:50:13 2019 (r504499) +++ head/print/gutenprint/pkg-plist Tue Jun 18 20:37:59 2019 (r504500) @@ -36,7 +36,7 @@ lib/gutenprint/5.2/modules/print-ps.so lib/gutenprint/5.2/modules/print-raw.so lib/libgutenprint.so lib/libgutenprint.so.2 -lib/libgutenprint.so.2.7.0 +lib/libgutenprint.so.2.8.0 libdata/pkgconfig/gutenprint.pc libexec/cups/backend/gutenprint52+usb libexec/cups/driver/gutenprint.5.2 From owner-svn-ports-all@freebsd.org Tue Jun 18 21:08:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7431D15C89FA; Tue, 18 Jun 2019 21:08:46 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 15F818E0AE; Tue, 18 Jun 2019 21:08:46 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9B0981AA76; Tue, 18 Jun 2019 21:08:45 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IL8jBG004072; Tue, 18 Jun 2019 21:08:45 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IL8jwk004071; Tue, 18 Jun 2019 21:08:45 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201906182108.x5IL8jwk004071@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 18 Jun 2019 21:08:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504501 - head/net/echoping X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/net/echoping X-SVN-Commit-Revision: 504501 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 15F818E0AE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 21:08:46 -0000 Author: antoine Date: Tue Jun 18 21:08:45 2019 New Revision: 504501 URL: https://svnweb.freebsd.org/changeset/ports/504501 Log: Mark BROKEN: fails to configure configure.ac:29: error: possibly undefined macro: AC_DEFINE Reported by: pkg-fallout Modified: head/net/echoping/Makefile Modified: head/net/echoping/Makefile ============================================================================== --- head/net/echoping/Makefile Tue Jun 18 20:37:59 2019 (r504500) +++ head/net/echoping/Makefile Tue Jun 18 21:08:45 2019 (r504501) @@ -12,6 +12,8 @@ COMMENT= Ping-like program that uses TCP and/or HTTP LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING +BROKEN= fails to configure + LIB_DEPENDS= libpopt.so:devel/popt \ libidn.so:dns/libidn From owner-svn-ports-all@freebsd.org Tue Jun 18 21:31:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 366B615C91C5; Tue, 18 Jun 2019 21:31:24 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D0CE48EBAE; Tue, 18 Jun 2019 21:31:23 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A8FEF1AE31; Tue, 18 Jun 2019 21:31:23 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5ILVNun015634; Tue, 18 Jun 2019 21:31:23 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5ILVNRu015631; Tue, 18 Jun 2019 21:31:23 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201906182131.x5ILVNRu015631@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 18 Jun 2019 21:31:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504502 - in head/www/tomcat85: . files X-SVN-Group: ports-head X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: in head/www/tomcat85: . files X-SVN-Commit-Revision: 504502 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D0CE48EBAE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 21:31:24 -0000 Author: jkim Date: Tue Jun 18 21:31:22 2019 New Revision: 504502 URL: https://svnweb.freebsd.org/changeset/ports/504502 Log: Update to 8.5.42. Submitted by: Владимир Друзенко (maintainer) Modified: head/www/tomcat85/Makefile head/www/tomcat85/distinfo head/www/tomcat85/files/patch-bin__daemon.sh Modified: head/www/tomcat85/Makefile ============================================================================== --- head/www/tomcat85/Makefile Tue Jun 18 21:08:45 2019 (r504501) +++ head/www/tomcat85/Makefile Tue Jun 18 21:31:22 2019 (r504502) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tomcat -PORTVERSION= 8.5.41 +PORTVERSION= 8.5.42 CATEGORIES= www java MASTER_SITES= APACHE/${PORTNAME}/${PORTNAME}-${PORTVERSION:C/([0-9])(.*)/\1/}/v${PORTVERSION}/bin PKGNAMESUFFIX= 85 Modified: head/www/tomcat85/distinfo ============================================================================== --- head/www/tomcat85/distinfo Tue Jun 18 21:08:45 2019 (r504501) +++ head/www/tomcat85/distinfo Tue Jun 18 21:31:22 2019 (r504502) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558564268 -SHA256 (apache-tomcat-8.5.41.tar.gz) = 4f6b88d0c07ba3dc68779a01c3da6da0e4e8889df0c93000659d6da6166de293 -SIZE (apache-tomcat-8.5.41.tar.gz) = 9699102 +TIMESTAMP = 1560892311 +SHA256 (apache-tomcat-8.5.42.tar.gz) = e3bebd1ecfdf439dc54f9a6f72f8fb22f33324223337f040860fd0cdf95220b5 +SIZE (apache-tomcat-8.5.42.tar.gz) = 9711748 Modified: head/www/tomcat85/files/patch-bin__daemon.sh ============================================================================== --- head/www/tomcat85/files/patch-bin__daemon.sh Tue Jun 18 21:08:45 2019 (r504501) +++ head/www/tomcat85/files/patch-bin__daemon.sh Tue Jun 18 21:31:22 2019 (r504502) @@ -1,6 +1,6 @@ --- bin/daemon.sh.orig +++ bin/daemon.sh -@@ -113,12 +113,9 @@ +@@ -115,12 +115,9 @@ test ".$CATALINA_HOME" = . && CATALINA_HOME=`cd "$DIRNAME/.." >/dev/null; pwd` test ".$CATALINA_BASE" = . && CATALINA_BASE="$CATALINA_HOME" test ".$CATALINA_MAIN" = . && CATALINA_MAIN=org.apache.catalina.startup.Bootstrap @@ -15,10 +15,10 @@ fi # Set the default service-start wait time if necessary test ".$SERVICE_START_WAIT_TIME" = . && SERVICE_START_WAIT_TIME=10 -@@ -135,7 +132,7 @@ +@@ -137,7 +134,7 @@ # Add on extra jar files to CLASSPATH - test ".$CLASSPATH" != . && CLASSPATH="${CLASSPATH}:" + test ".$CLASSPATH" != . && CLASSPATH="$CLASSPATH:" -CLASSPATH="$CLASSPATH$CATALINA_HOME/bin/bootstrap.jar:$CATALINA_HOME/bin/commons-daemon.jar" +CLASSPATH="$CLASSPATH$CATALINA_HOME/bin/bootstrap.jar:%%JAVAJARDIR%%/commons-daemon.jar" From owner-svn-ports-all@freebsd.org Tue Jun 18 21:32:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0768115C93B4; Tue, 18 Jun 2019 21:32:27 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A14158EE91; Tue, 18 Jun 2019 21:32:26 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3C84F1AF83; Tue, 18 Jun 2019 21:32:26 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5ILWQW9017563; Tue, 18 Jun 2019 21:32:26 GMT (envelope-from jkim@FreeBSD.org) Received: (from jkim@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5ILWPQ9017561; Tue, 18 Jun 2019 21:32:25 GMT (envelope-from jkim@FreeBSD.org) Message-Id: <201906182132.x5ILWPQ9017561@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jkim set sender to jkim@FreeBSD.org using -f From: Jung-uk Kim Date: Tue, 18 Jun 2019 21:32:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504503 - head/www/tomcat9 X-SVN-Group: ports-head X-SVN-Commit-Author: jkim X-SVN-Commit-Paths: head/www/tomcat9 X-SVN-Commit-Revision: 504503 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A14158EE91 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 21:32:27 -0000 Author: jkim Date: Tue Jun 18 21:32:25 2019 New Revision: 504503 URL: https://svnweb.freebsd.org/changeset/ports/504503 Log: Update to 9.0.21. Submitted by: Владимир Друзенко (maintainer) Modified: head/www/tomcat9/Makefile head/www/tomcat9/distinfo Modified: head/www/tomcat9/Makefile ============================================================================== --- head/www/tomcat9/Makefile Tue Jun 18 21:31:22 2019 (r504502) +++ head/www/tomcat9/Makefile Tue Jun 18 21:32:25 2019 (r504503) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tomcat -PORTVERSION= 9.0.20 +PORTVERSION= 9.0.21 CATEGORIES= www java MASTER_SITES= APACHE/${PORTNAME}/${PORTNAME}-${PORTVERSION:C/([0-9])(.*)/\1/}/v${PORTVERSION}/bin PKGNAMESUFFIX= 9 Modified: head/www/tomcat9/distinfo ============================================================================== --- head/www/tomcat9/distinfo Tue Jun 18 21:31:22 2019 (r504502) +++ head/www/tomcat9/distinfo Tue Jun 18 21:32:25 2019 (r504503) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558565419 -SHA256 (apache-tomcat-9.0.20.tar.gz) = e9f18587eda41fefd7f749717dc903a4ddf70582ecd453ee47522e5189f57d19 -SIZE (apache-tomcat-9.0.20.tar.gz) = 10851264 +TIMESTAMP = 1560891724 +SHA256 (apache-tomcat-9.0.21.tar.gz) = 50ee20a573d80c93a6a4f50caf429a7cd38256126a747df97097f8b9f1a25e5b +SIZE (apache-tomcat-9.0.21.tar.gz) = 10874669 From owner-svn-ports-all@freebsd.org Tue Jun 18 21:50:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 876CF15C9E41; Tue, 18 Jun 2019 21:50:39 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F3B958F8AE; Tue, 18 Jun 2019 21:50:38 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CD0B21B143; Tue, 18 Jun 2019 21:50:38 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5ILoc7U025510; Tue, 18 Jun 2019 21:50:38 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5ILocTV025509; Tue, 18 Jun 2019 21:50:38 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906182150.x5ILocTV025509@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 18 Jun 2019 21:50:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504504 - head/lang/chicken5 X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/lang/chicken5 X-SVN-Commit-Revision: 504504 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F3B958F8AE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 21:50:39 -0000 Author: tobik Date: Tue Jun 18 21:50:38 2019 New Revision: 504504 URL: https://svnweb.freebsd.org/changeset/ports/504504 Log: lang/chicken5: Cosmetic changes - Pet portfmt and portclippy Modified: head/lang/chicken5/Makefile Modified: head/lang/chicken5/Makefile ============================================================================== --- head/lang/chicken5/Makefile Tue Jun 18 21:32:25 2019 (r504503) +++ head/lang/chicken5/Makefile Tue Jun 18 21:50:38 2019 (r504504) @@ -12,24 +12,28 @@ COMMENT= Scheme-to-C compiler USES= cpe gmake CPE_VENDOR= call-cc -DATADIR= ${PREFIX}/share/chicken${PKGNAMESUFFIX} -DOCSDIR= ${PREFIX}/share/doc/chicken${PKGNAMESUFFIX} -MAKEFILE= GNUmakefile USE_LDCONFIG= yes -MAKE_ARGS= PLATFORM=bsd \ - PREFIX=${PREFIX} \ - MANDIR=${PREFIX}/man \ - LIBDIR="${PREFIX}/lib" \ - DOCDIR="${DOCSDIR}" \ - C_COMPILER="${CC}" \ + +MAKEFILE= GNUmakefile +MAKE_ARGS= C_COMPILER="${CC}" \ + C_COMPILER_OPTIMIZATION_OPTIONS="${CFLAGS}" \ CXX_COMPILER="${CXX}" \ + DOCDIR="${DOCSDIR}" \ + LIBDIR="${PREFIX}/lib" \ LIBRARIAN="${AR}" \ - C_COMPILER_OPTIMIZATION_OPTIONS="${CFLAGS}" \ LINKER_OPTIONS="${LDFLAGS}" \ + MANDIR=${PREFIX}/man \ + PLATFORM=bsd \ + PREFIX=${PREFIX} \ PROGRAM_SUFFIX="${PKGNAMESUFFIX}" -MAKE_JOBS_UNSAFE= yes # parallel build not supported -PLIST_SUB= SUFFIX=${PKGNAMESUFFIX} +# parallel build not supported +MAKE_JOBS_UNSAFE= yes TEST_TARGET= check + +DATADIR= ${PREFIX}/share/chicken${PKGNAMESUFFIX} +DOCSDIR= ${PREFIX}/share/doc/chicken${PKGNAMESUFFIX} + +PLIST_SUB= SUFFIX=${PKGNAMESUFFIX} OPTIONS_DEFINE= DOCS FEATHERS OPTIONS_SUB= yes From owner-svn-ports-all@freebsd.org Tue Jun 18 22:02:28 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 388C015CA42E; Tue, 18 Jun 2019 22:02:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D463868109; Tue, 18 Jun 2019 22:02:27 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B00261B49B; Tue, 18 Jun 2019 22:02:27 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IM2R4v035664; Tue, 18 Jun 2019 22:02:27 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IM2REK035658; Tue, 18 Jun 2019 22:02:27 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906182202.x5IM2REK035658@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 18 Jun 2019 22:02:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504505 - in head/lang/chicken5: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/lang/chicken5: . files X-SVN-Commit-Revision: 504505 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D463868109 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 22:02:28 -0000 Author: tobik Date: Tue Jun 18 22:02:26 2019 New Revision: 504505 URL: https://svnweb.freebsd.org/changeset/ports/504505 Log: lang/chicken5: Update to 5.1.0 While here - Add LICENSE - Only show pkg-message on install Changes: https://code.call-cc.org/releases/5.1.0/NEWS Deleted: head/lang/chicken5/files/ Modified: head/lang/chicken5/Makefile head/lang/chicken5/distinfo head/lang/chicken5/pkg-plist Modified: head/lang/chicken5/Makefile ============================================================================== --- head/lang/chicken5/Makefile Tue Jun 18 21:50:38 2019 (r504504) +++ head/lang/chicken5/Makefile Tue Jun 18 22:02:26 2019 (r504505) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= chicken -DISTVERSION= 5.0.0 +DISTVERSION= 5.1.0 CATEGORIES= lang scheme MASTER_SITES= https://code.call-cc.org/releases/${DISTVERSION}/ PKGNAMESUFFIX= 5 @@ -10,6 +10,10 @@ PKGNAMESUFFIX= 5 MAINTAINER= tobik@FreeBSD.org COMMENT= Scheme-to-C compiler +LICENSE= BSD3CLAUSE PD +LICENSE_COMB= multi +LICENSE_FILE= ${WRKSRC}/LICENSE + USES= cpe gmake CPE_VENDOR= call-cc USE_LDCONFIG= yes @@ -33,7 +37,8 @@ TEST_TARGET= check DATADIR= ${PREFIX}/share/chicken${PKGNAMESUFFIX} DOCSDIR= ${PREFIX}/share/doc/chicken${PKGNAMESUFFIX} -PLIST_SUB= SUFFIX=${PKGNAMESUFFIX} +PLIST_SUB= BINARYVERSION=${_CHICKEN_BINARYVERSION} \ + SUFFIX=${PKGNAMESUFFIX} OPTIONS_DEFINE= DOCS FEATHERS OPTIONS_SUB= yes @@ -43,9 +48,11 @@ FEATHERS_DESC= Install the Feathers debugger (requires FEATHERS_USES= tk:wrapper,run +_CHICKEN_BINARYVERSION= 11 + post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/c* \ - ${STAGEDIR}${PREFIX}/lib/chicken${PKGNAMESUFFIX}/?/*.so \ + ${STAGEDIR}${PREFIX}/lib/chicken${PKGNAMESUFFIX}/${_CHICKEN_BINARYVERSION}/*.so \ ${STAGEDIR}${PREFIX}/lib/libchicken${PKGNAMESUFFIX}.so post-install-DOCS-on: Modified: head/lang/chicken5/distinfo ============================================================================== --- head/lang/chicken5/distinfo Tue Jun 18 21:50:38 2019 (r504504) +++ head/lang/chicken5/distinfo Tue Jun 18 22:02:26 2019 (r504505) @@ -1,3 +1,3 @@ -TIMESTAMP = 1541623419 -SHA256 (chicken-5.0.0.tar.gz) = a8b94bb94c5d6a4348cedd75dc334ac80924bcd9a7a7a3d6af5121e57ef66595 -SIZE (chicken-5.0.0.tar.gz) = 4003976 +TIMESTAMP = 1560893733 +SHA256 (chicken-5.1.0.tar.gz) = 5c1101a8d8faabfd500ad69101e0c7c8bd826c68970f89c270640470e7b84b4b +SIZE (chicken-5.1.0.tar.gz) = 4071169 Modified: head/lang/chicken5/pkg-plist ============================================================================== --- head/lang/chicken5/pkg-plist Tue Jun 18 21:50:38 2019 (r504504) +++ head/lang/chicken5/pkg-plist Tue Jun 18 22:02:26 2019 (r504505) @@ -9,53 +9,53 @@ bin/csi%%SUFFIX%% %%FEATHERS%%bin/feathers%%SUFFIX%% include/chicken%%SUFFIX%%/chicken-config.h include/chicken%%SUFFIX%%/chicken.h -lib/chicken%%SUFFIX%%/9/chicken.base.import.so -lib/chicken%%SUFFIX%%/9/chicken.bitwise.import.so -lib/chicken%%SUFFIX%%/9/chicken.blob.import.so -lib/chicken%%SUFFIX%%/9/chicken.compiler.user-pass.import.so -lib/chicken%%SUFFIX%%/9/chicken.condition.import.so -lib/chicken%%SUFFIX%%/9/chicken.continuation.import.so -lib/chicken%%SUFFIX%%/9/chicken.csi.import.so -lib/chicken%%SUFFIX%%/9/chicken.errno.import.so -lib/chicken%%SUFFIX%%/9/chicken.eval.import.so -lib/chicken%%SUFFIX%%/9/chicken.file.import.so -lib/chicken%%SUFFIX%%/9/chicken.file.posix.import.so -lib/chicken%%SUFFIX%%/9/chicken.fixnum.import.so -lib/chicken%%SUFFIX%%/9/chicken.flonum.import.so -lib/chicken%%SUFFIX%%/9/chicken.foreign.import.so -lib/chicken%%SUFFIX%%/9/chicken.format.import.so -lib/chicken%%SUFFIX%%/9/chicken.gc.import.so -lib/chicken%%SUFFIX%%/9/chicken.internal.import.so -lib/chicken%%SUFFIX%%/9/chicken.io.import.so -lib/chicken%%SUFFIX%%/9/chicken.irregex.import.so -lib/chicken%%SUFFIX%%/9/chicken.keyword.import.so -lib/chicken%%SUFFIX%%/9/chicken.load.import.so -lib/chicken%%SUFFIX%%/9/chicken.locative.import.so -lib/chicken%%SUFFIX%%/9/chicken.memory.import.so -lib/chicken%%SUFFIX%%/9/chicken.memory.representation.import.so -lib/chicken%%SUFFIX%%/9/chicken.pathname.import.so -lib/chicken%%SUFFIX%%/9/chicken.platform.import.so -lib/chicken%%SUFFIX%%/9/chicken.plist.import.so -lib/chicken%%SUFFIX%%/9/chicken.port.import.so -lib/chicken%%SUFFIX%%/9/chicken.pretty-print.import.so -lib/chicken%%SUFFIX%%/9/chicken.process-context.import.so -lib/chicken%%SUFFIX%%/9/chicken.process-context.posix.import.so -lib/chicken%%SUFFIX%%/9/chicken.process.import.so -lib/chicken%%SUFFIX%%/9/chicken.process.signal.import.so -lib/chicken%%SUFFIX%%/9/chicken.random.import.so -lib/chicken%%SUFFIX%%/9/chicken.read-syntax.import.so -lib/chicken%%SUFFIX%%/9/chicken.repl.import.so -lib/chicken%%SUFFIX%%/9/chicken.sort.import.so -lib/chicken%%SUFFIX%%/9/chicken.string.import.so -lib/chicken%%SUFFIX%%/9/chicken.syntax.import.so -lib/chicken%%SUFFIX%%/9/chicken.tcp.import.so -lib/chicken%%SUFFIX%%/9/chicken.time.import.so -lib/chicken%%SUFFIX%%/9/chicken.time.posix.import.so -lib/chicken%%SUFFIX%%/9/srfi-4.import.so -lib/chicken%%SUFFIX%%/9/types.db +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.base.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.bitwise.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.blob.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.compiler.user-pass.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.condition.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.continuation.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.csi.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.errno.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.eval.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.file.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.file.posix.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.fixnum.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.flonum.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.foreign.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.format.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.gc.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.internal.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.io.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.irregex.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.keyword.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.load.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.locative.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.memory.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.memory.representation.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.pathname.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.platform.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.plist.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.port.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.pretty-print.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.process-context.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.process-context.posix.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.process.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.process.signal.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.random.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.read-syntax.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.repl.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.sort.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.string.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.syntax.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.tcp.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.time.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/chicken.time.posix.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/srfi-4.import.so +lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/types.db lib/libchicken%%SUFFIX%%.a lib/libchicken%%SUFFIX%%.so -lib/libchicken%%SUFFIX%%.so.9 +lib/libchicken%%SUFFIX%%.so.%%BINARYVERSION%% man/man1/chicken-do%%SUFFIX%%.1.gz man/man1/chicken-install%%SUFFIX%%.1.gz man/man1/chicken-profile%%SUFFIX%%.1.gz @@ -68,7 +68,7 @@ man/man1/csi%%SUFFIX%%.1.gz %%FEATHERS%%%%DATADIR%%/feathers.tcl %%DATADIR%%/setup.defaults %%PORTDOCS%%%%DOCSDIR%%/DEPRECATED -%%PORTDOCS%%%%DOCSDIR%%/LICENSE +@comment %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/NEWS %%PORTDOCS%%%%DOCSDIR%%/README %%PORTDOCS%%%%DOCSDIR%%/manual/Accessing external objects.html @@ -145,4 +145,4 @@ man/man1/csi%%SUFFIX%%.1.gz %%PORTDOCS%%%%DOCSDIR%%/manual/Using the interpreter.html %%PORTDOCS%%%%DOCSDIR%%/manual/manual.css @postexec %D/bin/chicken-install%%SUFFIX%% -update-db -@postunexec rm -f %D/lib/chicken%%SUFFIX%%/9/modules.db +@postunexec rm -f %D/lib/chicken%%SUFFIX%%/%%BINARYVERSION%%/modules.db From owner-svn-ports-all@freebsd.org Tue Jun 18 22:03:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9EE615CA4D1; Tue, 18 Jun 2019 22:03:18 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7F56668272; Tue, 18 Jun 2019 22:03:18 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 55D421B4A4; Tue, 18 Jun 2019 22:03:18 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IM3Iu1035798; Tue, 18 Jun 2019 22:03:18 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IM3IUh035797; Tue, 18 Jun 2019 22:03:18 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906182203.x5IM3IUh035797@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 18 Jun 2019 22:03:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504506 - head/lang/chicken5 X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/lang/chicken5 X-SVN-Commit-Revision: 504506 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7F56668272 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 22:03:19 -0000 Author: tobik Date: Tue Jun 18 22:03:17 2019 New Revision: 504506 URL: https://svnweb.freebsd.org/changeset/ports/504506 Log: lang/chicken5: Also commit pkg-message changes after r504505 Modified: head/lang/chicken5/pkg-message Modified: head/lang/chicken5/pkg-message ============================================================================== --- head/lang/chicken5/pkg-message Tue Jun 18 22:02:26 2019 (r504505) +++ head/lang/chicken5/pkg-message Tue Jun 18 22:03:17 2019 (r504506) @@ -1,2 +1,7 @@ +[ +{ message: < Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EAB3115CAA38; Tue, 18 Jun 2019 22:30:14 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8D37C69FA1; Tue, 18 Jun 2019 22:30:14 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 68CC61B7F9; Tue, 18 Jun 2019 22:30:14 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IMUEhE046876; Tue, 18 Jun 2019 22:30:14 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IMUEAI046875; Tue, 18 Jun 2019 22:30:14 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906182230.x5IMUEAI046875@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Tue, 18 Jun 2019 22:30:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504507 - head/audio/guitarix-lv2 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/audio/guitarix-lv2 X-SVN-Commit-Revision: 504507 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8D37C69FA1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 22:30:15 -0000 Author: linimon Date: Tue Jun 18 22:30:13 2019 New Revision: 504507 URL: https://svnweb.freebsd.org/changeset/ports/504507 Log: Add compiler:c++11-lang to USES to unbreak build on powerpc64: unknown FP unit 'sse' armv6/7 are not yet tested. Approved by: portmgr (tier-2 blanket) Modified: head/audio/guitarix-lv2/Makefile Modified: head/audio/guitarix-lv2/Makefile ============================================================================== --- head/audio/guitarix-lv2/Makefile Tue Jun 18 22:03:17 2019 (r504506) +++ head/audio/guitarix-lv2/Makefile Tue Jun 18 22:30:13 2019 (r504507) @@ -16,7 +16,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_armv6= fails to compile: unknown FP unit 'sse' BROKEN_armv7= fails to compile: unknown FP unit 'sse' -BROKEN_powerpc64= fails to compile: unknown FP unit 'sse' BUILD_DEPENDS= lv2>0:audio/lv2 \ ${LOCALBASE}/include/fftw3.h:math/fftw3 \ @@ -39,8 +38,8 @@ LIB_DEPENDS= libavahi-common.so:net/avahi-app \ libzita-resampler.so:audio/zita-resampler RUN_DEPENDS= roboto-fonts-ttf>0:x11-fonts/roboto-fonts-ttf -USES= eigen:3 gnome libarchive localbase:ldflags pkgconfig \ - python:2.7,build readline waf tar:xz +USES= compiler:c++11-lang eigen:3 gnome libarchive localbase:ldflags \ + pkgconfig python:2.7,build readline waf tar:xz USE_GNOME= atkmm cairo gtk20 gtkmm24 pangomm USE_LDCONFIG= yes INSTALLS_ICONS= yes From owner-svn-ports-all@freebsd.org Tue Jun 18 23:48:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C29D615CC13C; Tue, 18 Jun 2019 23:48:20 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 69E116C0F5; Tue, 18 Jun 2019 23:48:20 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3E0981C55D; Tue, 18 Jun 2019 23:48:20 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5INmKQU088372; Tue, 18 Jun 2019 23:48:20 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5INmJwi088370; Tue, 18 Jun 2019 23:48:19 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201906182348.x5INmJwi088370@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Tue, 18 Jun 2019 23:48:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504508 - in head/comms/quisk: . files X-SVN-Group: ports-head X-SVN-Commit-Author: shurd X-SVN-Commit-Paths: in head/comms/quisk: . files X-SVN-Commit-Revision: 504508 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 69E116C0F5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jun 2019 23:48:20 -0000 Author: shurd Date: Tue Jun 18 23:48:19 2019 New Revision: 504508 URL: https://svnweb.freebsd.org/changeset/ports/504508 Log: Re-add unicode fix lost in r502312 Added: head/comms/quisk/files/patch-quisk.py (contents, props changed) Modified: head/comms/quisk/Makefile Modified: head/comms/quisk/Makefile ============================================================================== --- head/comms/quisk/Makefile Tue Jun 18 22:30:13 2019 (r504507) +++ head/comms/quisk/Makefile Tue Jun 18 23:48:19 2019 (r504508) @@ -3,7 +3,7 @@ PORTNAME= quisk DISTVERSION= 4.1.40 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= comms hamradio MASTER_SITES= CHEESESHOP Added: head/comms/quisk/files/patch-quisk.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/quisk/files/patch-quisk.py Tue Jun 18 23:48:19 2019 (r504508) @@ -0,0 +1,16 @@ +--- quisk.py.orig 2019-06-18 23:38:53 UTC ++++ quisk.py +@@ -23,6 +23,13 @@ os.chdir(os.path.normpath(os.path.dirnam + if sys.path[0] != "'.'": # Make sure the current working directory is on path + sys.path.insert(0, '.') + ++# Hack to ensure unicode is available. ++import locale ++locale.setlocale(locale.LC_ALL, '') ++cloc = locale.getdefaultlocale() ++if locale.nl_langinfo(locale.CODESET) != 'UTF-8': ++ locale.setlocale(locale.LC_ALL, (cloc[0], 'UTF-8')) ++ + import wx, wx.html, wx.lib.stattext, wx.lib.colourdb, wx.grid, wx.richtext + import math, cmath, time, traceback, string, select, subprocess + import threading, pickle, webbrowser From owner-svn-ports-all@freebsd.org Wed Jun 19 00:49:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9F8215CDB1D; Wed, 19 Jun 2019 00:49:43 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6C38B6DF6F; Wed, 19 Jun 2019 00:49:43 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2ADE41CF5C; Wed, 19 Jun 2019 00:49:43 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J0ngVe020175; Wed, 19 Jun 2019 00:49:42 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J0ng43020174; Wed, 19 Jun 2019 00:49:42 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201906190049.x5J0ng43020174@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Wed, 19 Jun 2019 00:49:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-tags@freebsd.org Subject: svn commit: r504509 - tags/RELEASE_11_3_0 X-SVN-Group: ports-tags X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: tags/RELEASE_11_3_0 X-SVN-Commit-Revision: 504509 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6C38B6DF6F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 00:49:44 -0000 Author: gjb Date: Wed Jun 19 00:49:42 2019 New Revision: 504509 URL: https://svnweb.freebsd.org/changeset/ports/504509 Log: Tag ports 2019Q2@r504456 for 11.3-RELEASE. Approved by: portmgr (implicit, re blanket) Sponsored by: The FreeBSD Foundation Added: tags/RELEASE_11_3_0/ - copied from r504456, branches/2019Q2/ From owner-svn-ports-all@freebsd.org Wed Jun 19 04:40:44 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A29715D1B1E; Wed, 19 Jun 2019 04:40:44 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D403B74318; Wed, 19 Jun 2019 04:40:43 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B1BD41F6D0; Wed, 19 Jun 2019 04:40:43 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J4eh8h041489; Wed, 19 Jun 2019 04:40:43 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J4eh3X041486; Wed, 19 Jun 2019 04:40:43 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906190440.x5J4eh3X041486@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Wed, 19 Jun 2019 04:40:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504510 - head/databases/mongodb34 X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/databases/mongodb34 X-SVN-Commit-Revision: 504510 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D403B74318 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.948,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 04:40:44 -0000 Author: joneum Date: Wed Jun 19 04:40:42 2019 New Revision: 504510 URL: https://svnweb.freebsd.org/changeset/ports/504510 Log: Update to 3.4.21 PR: 238624 Submitted by: Ronald Klop (maintainer) Sponsored by: Netzkommune GmbH Modified: head/databases/mongodb34/Makefile head/databases/mongodb34/distinfo Modified: head/databases/mongodb34/Makefile ============================================================================== --- head/databases/mongodb34/Makefile Wed Jun 19 00:49:42 2019 (r504509) +++ head/databases/mongodb34/Makefile Wed Jun 19 04:40:42 2019 (r504510) @@ -2,8 +2,7 @@ PORTNAME= mongodb DISTVERSIONPREFIX= r -DISTVERSION= 3.4.20 -PORTREVISION= 1 +DISTVERSION= 3.4.21 CATEGORIES= databases net MASTER_SITES= https://fastdl.mongodb.org/src/ \ http://fastdl.mongodb.org/src/ \ Modified: head/databases/mongodb34/distinfo ============================================================================== --- head/databases/mongodb34/distinfo Wed Jun 19 00:49:42 2019 (r504509) +++ head/databases/mongodb34/distinfo Wed Jun 19 04:40:42 2019 (r504510) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552747719 -SHA256 (mongodb-src-r3.4.20.tar.gz) = e0c37a2c25b1bb7712ed2a29625a3db14f27e5c7edd8c20306ffea3515cc5b95 -SIZE (mongodb-src-r3.4.20.tar.gz) = 40150928 +TIMESTAMP = 1560876613 +SHA256 (mongodb-src-r3.4.21.tar.gz) = 189afe4fecca1d408ba3a71dc406f6fb889e0f743d7bc15334a17e4f07af28d7 +SIZE (mongodb-src-r3.4.21.tar.gz) = 40151763 From owner-svn-ports-all@freebsd.org Wed Jun 19 04:56:32 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E99C215D21FE; Wed, 19 Jun 2019 04:56:31 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8636C74C46; Wed, 19 Jun 2019 04:56:31 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 577221FA1B; Wed, 19 Jun 2019 04:56:31 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J4uVr0050934; Wed, 19 Jun 2019 04:56:31 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J4uUFe050931; Wed, 19 Jun 2019 04:56:30 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906190456.x5J4uUFe050931@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Wed, 19 Jun 2019 04:56:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504511 - head/dns/unbound X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/dns/unbound X-SVN-Commit-Revision: 504511 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8636C74C46 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.948,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 04:56:32 -0000 Author: joneum Date: Wed Jun 19 04:56:30 2019 New Revision: 504511 URL: https://svnweb.freebsd.org/changeset/ports/504511 Log: Update to 1.9.2 PR: 238651 Submitted by: Jaap Akkerhuis (maintainer) Sponsored by: Netzkommune GmbH Modified: head/dns/unbound/Makefile head/dns/unbound/distinfo head/dns/unbound/pkg-plist Modified: head/dns/unbound/Makefile ============================================================================== --- head/dns/unbound/Makefile Wed Jun 19 04:40:42 2019 (r504510) +++ head/dns/unbound/Makefile Wed Jun 19 04:56:30 2019 (r504511) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= unbound -PORTVERSION= 1.9.1 +PORTVERSION= 1.9.2 CATEGORIES= dns MASTER_SITES= https://www.nlnetlabs.nl/downloads/unbound/ \ https://distfiles.crux.guru/ Modified: head/dns/unbound/distinfo ============================================================================== --- head/dns/unbound/distinfo Wed Jun 19 04:40:42 2019 (r504510) +++ head/dns/unbound/distinfo Wed Jun 19 04:56:30 2019 (r504511) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552394734 -SHA256 (unbound-1.9.1.tar.gz) = c3c0bf9b86ccba4ca64f93dd4fe7351308ab54293f297a67de5a8914c1dc59c5 -SIZE (unbound-1.9.1.tar.gz) = 5665254 +TIMESTAMP = 1560919473 +SHA256 (unbound-1.9.2.tar.gz) = 6f7acec5cf451277fcda31729886ae7dd62537c4f506855603e3aa153fcb6b95 +SIZE (unbound-1.9.2.tar.gz) = 5676395 Modified: head/dns/unbound/pkg-plist ============================================================================== --- head/dns/unbound/pkg-plist Wed Jun 19 04:40:42 2019 (r504510) +++ head/dns/unbound/pkg-plist Wed Jun 19 04:56:30 2019 (r504511) @@ -5,7 +5,7 @@ libdata/pkgconfig/libunbound.pc lib/libunbound.a lib/libunbound.so lib/libunbound.so.8 -lib/libunbound.so.8.1.1 +lib/libunbound.so.8.1.2 %%PYTHON%%%%PYTHON_SITELIBDIR%%/_unbound.so %%PYTHON%%%%PYTHON_SITELIBDIR%%/unbound.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/unboundmodule.py From owner-svn-ports-all@freebsd.org Wed Jun 19 05:23:58 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 188C515D2B80; Wed, 19 Jun 2019 05:23:58 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC20E759C2; Wed, 19 Jun 2019 05:23:57 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 74E501FF16; Wed, 19 Jun 2019 05:23:57 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J5NvFS066616; Wed, 19 Jun 2019 05:23:57 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J5NuFB066613; Wed, 19 Jun 2019 05:23:56 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906190523.x5J5NuFB066613@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Wed, 19 Jun 2019 05:23:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504512 - head/www/groupoffice X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/www/groupoffice X-SVN-Commit-Revision: 504512 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AC20E759C2 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 05:23:58 -0000 Author: joneum Date: Wed Jun 19 05:23:56 2019 New Revision: 504512 URL: https://svnweb.freebsd.org/changeset/ports/504512 Log: Update to 6.4.22 Sponsored by: Netzkommune GmbH Modified: head/www/groupoffice/Makefile head/www/groupoffice/distinfo head/www/groupoffice/pkg-plist Modified: head/www/groupoffice/Makefile ============================================================================== --- head/www/groupoffice/Makefile Wed Jun 19 04:56:30 2019 (r504511) +++ head/www/groupoffice/Makefile Wed Jun 19 05:23:56 2019 (r504512) @@ -3,7 +3,7 @@ PORTNAME= groupoffice DISTVERSIONPREFIX= com- -DISTVERSION= 6.4.21 +DISTVERSION= 6.4.22 CATEGORIES= www MASTER_SITES= SF/group-office/${DISTVERSION:R} DISTNAME= ${PORTNAME}-${DISTVERSION}-php-71 Modified: head/www/groupoffice/distinfo ============================================================================== --- head/www/groupoffice/distinfo Wed Jun 19 04:56:30 2019 (r504511) +++ head/www/groupoffice/distinfo Wed Jun 19 05:23:56 2019 (r504512) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560695474 -SHA256 (groupoffice-6.4.21-php-71.tar.gz) = fe1ff66ee67ec924fd9cd0de4125f59c265a6008b7061a4bf77ca3bdde75bf79 -SIZE (groupoffice-6.4.21-php-71.tar.gz) = 36721035 +TIMESTAMP = 1560920212 +SHA256 (groupoffice-6.4.22-php-71.tar.gz) = 6cf55f2444f801400f5b660f8c197ca30b8cded0bdbd064b2fac456fb237048f +SIZE (groupoffice-6.4.22-php-71.tar.gz) = 36867822 Modified: head/www/groupoffice/pkg-plist ============================================================================== --- head/www/groupoffice/pkg-plist Wed Jun 19 04:56:30 2019 (r504511) +++ head/www/groupoffice/pkg-plist Wed Jun 19 05:23:56 2019 (r504512) @@ -290,7 +290,6 @@ %%WWWDIR%%/go/core/data/ArrayableInterface.php %%WWWDIR%%/go/core/data/MagicPropertiesTrait.php %%WWWDIR%%/go/core/data/Model.php -%%WWWDIR%%/go/core/data/ModelHelper.php %%WWWDIR%%/go/core/data/Store.php %%WWWDIR%%/go/core/data/convert/AbstractConverter.php %%WWWDIR%%/go/core/data/convert/Csv.php @@ -326,9 +325,11 @@ %%WWWDIR%%/go/core/fs/TempFolder.php %%WWWDIR%%/go/core/fs/datareader/BinaryFileReader.php %%WWWDIR%%/go/core/fs/datareader/ID3Reader.php +%%WWWDIR%%/go/core/http/Client.php %%WWWDIR%%/go/core/http/Exception.php %%WWWDIR%%/go/core/http/Request.php %%WWWDIR%%/go/core/http/Response.php +%%WWWDIR%%/go/core/http/Router.php %%WWWDIR%%/go/core/imap/Connection.php %%WWWDIR%%/go/core/imap/IMAPDetector.php %%WWWDIR%%/go/core/imap/Mailbox.php @@ -547,6 +548,7 @@ %%WWWDIR%%/go/core/views/extjs3/form/GridField.js %%WWWDIR%%/go/core/views/extjs3/form/HtmlEditor.js %%WWWDIR%%/go/core/views/extjs3/form/KeyValueEditorGrid.js +%%WWWDIR%%/go/core/views/extjs3/form/MultiEntityDialog.js %%WWWDIR%%/go/core/views/extjs3/form/PasswordGeneratorField.js %%WWWDIR%%/go/core/views/extjs3/form/README.md %%WWWDIR%%/go/core/views/extjs3/form/RadioGroup.js @@ -655,69 +657,164 @@ %%WWWDIR%%/go/modules/business/.git/logs/refs/remotes/origin/HEAD %%WWWDIR%%/go/modules/business/.git/logs/refs/remotes/origin/master %%WWWDIR%%/go/modules/business/.git/objects/01/88c1370f1aaaeb0512835ba443c1692f18e3ab +%%WWWDIR%%/go/modules/business/.git/objects/02/8976593a8dc3d374accf1c276d46b5c0be2d87 +%%WWWDIR%%/go/modules/business/.git/objects/04/40146c92f3d3dd71ce5fe664a5b23006d77006 +%%WWWDIR%%/go/modules/business/.git/objects/07/8580b88e6cc78eb0cf818b72c8e58f5e9c5420 +%%WWWDIR%%/go/modules/business/.git/objects/09/38082171ec07b1392f26bd357767437dd575da +%%WWWDIR%%/go/modules/business/.git/objects/0d/6b78b2fcc7b1bedfc68039483836b1ba8e9325 +%%WWWDIR%%/go/modules/business/.git/objects/0e/dabdf8b2e7554bb2c45be43ade0ef44d9712a5 +%%WWWDIR%%/go/modules/business/.git/objects/0f/0166d5a41d408b252098bb22d15abab081b1ab +%%WWWDIR%%/go/modules/business/.git/objects/0f/74293747384ce63dcd6c3a7a0389ab51c83210 +%%WWWDIR%%/go/modules/business/.git/objects/0f/aa993df765ee420623f4857e23a393d0db7120 +%%WWWDIR%%/go/modules/business/.git/objects/0f/c8615ad6bc216b3c970d57f7881dd8a49f90f6 +%%WWWDIR%%/go/modules/business/.git/objects/10/c055775e3a5190b8a0d30b6015b2ac2bdd9e85 +%%WWWDIR%%/go/modules/business/.git/objects/10/e9bd1f09bc86a3fbbdb8ea750178e3272cec78 +%%WWWDIR%%/go/modules/business/.git/objects/11/6cc449058faad84be06908d9a8459ec4770236 %%WWWDIR%%/go/modules/business/.git/objects/11/b9c560ba1d65f0deaed15dedb536b31b33c96a +%%WWWDIR%%/go/modules/business/.git/objects/16/7425674a56e8aee6f4e17864ee24bdee48ed68 +%%WWWDIR%%/go/modules/business/.git/objects/17/87dc344fc6262d720764bf6e18f1dd2df5b80e +%%WWWDIR%%/go/modules/business/.git/objects/18/81b5dba07347944b0088411717713cfee2fdd0 %%WWWDIR%%/go/modules/business/.git/objects/19/0e3ea112a052332a2738463cf20f4e0c70a9f4 +%%WWWDIR%%/go/modules/business/.git/objects/1a/a690d775e8a53ce8dce165ba44bcd5a1679f33 %%WWWDIR%%/go/modules/business/.git/objects/1b/900e3c24fb51a609b26e8d63ca9c0edf54840a %%WWWDIR%%/go/modules/business/.git/objects/1b/934b8de6dd4a758a0da9295f879d3914db645c +%%WWWDIR%%/go/modules/business/.git/objects/1e/5704b3ec872811b74ddcd28124d84382777bf0 +%%WWWDIR%%/go/modules/business/.git/objects/1e/d2b4ed92a57f6eae672e4cf8b78f92e03d1ecc +%%WWWDIR%%/go/modules/business/.git/objects/1f/c684f5955655d5a44ea98d2fa6d180fc6cda94 +%%WWWDIR%%/go/modules/business/.git/objects/20/f3ffddb269d6b07bada55167a7ec536fbedc9c +%%WWWDIR%%/go/modules/business/.git/objects/2b/540a97480cca228b7cb21e67210f4e858be377 +%%WWWDIR%%/go/modules/business/.git/objects/2c/95947f2260985ab1efc529ee4ccce1527cf95d +%%WWWDIR%%/go/modules/business/.git/objects/2c/ccf39e792d11550dc3066753a0bab4127a657f %%WWWDIR%%/go/modules/business/.git/objects/30/12779ff0975c7ae800d88b890102b5963049fa %%WWWDIR%%/go/modules/business/.git/objects/31/fae7678908933d461860a7b90a2046a3ad588e %%WWWDIR%%/go/modules/business/.git/objects/33/74b451aefd4476a3ff22c99aefac6f19928994 %%WWWDIR%%/go/modules/business/.git/objects/34/048b0c50a1c2c2ec0928883a7836af208f25c0 %%WWWDIR%%/go/modules/business/.git/objects/35/d2af60cc3d3b91661596ce89fd5b2bf68bbc23 +%%WWWDIR%%/go/modules/business/.git/objects/36/323907587d71c54fe5dcd89c91dbff7abb6bd4 +%%WWWDIR%%/go/modules/business/.git/objects/37/2c4d06663e8100bfc2cc3715449109c1e347ae %%WWWDIR%%/go/modules/business/.git/objects/3c/c41d85bfd66a1dc00982e9dd3004e1ecc2b063 +%%WWWDIR%%/go/modules/business/.git/objects/3e/1d7b956fd9bd785d2c686afbdf2aa34df4a0a9 +%%WWWDIR%%/go/modules/business/.git/objects/41/86c8a28d75f6c9d8ff75f0fa3d78a158d1b46e %%WWWDIR%%/go/modules/business/.git/objects/42/3aacfb6e85b53afe8992f42e1864c88b480f49 +%%WWWDIR%%/go/modules/business/.git/objects/4b/600db58c9842ce72075f81695056e807aaff04 +%%WWWDIR%%/go/modules/business/.git/objects/52/40196e3a09f675b74449e9af2f5206014a33d6 %%WWWDIR%%/go/modules/business/.git/objects/54/901ff85b88c4cfa3087e29c30bcc12b395bb29 %%WWWDIR%%/go/modules/business/.git/objects/55/bf7abb9942ec75047217240ca2d5a509f11ddf %%WWWDIR%%/go/modules/business/.git/objects/55/d4f1647ccbcc531fbf1441094d5bf2a3e13a8f %%WWWDIR%%/go/modules/business/.git/objects/56/82f9c1188a9033580c1c07a77100e62c4aa379 +%%WWWDIR%%/go/modules/business/.git/objects/57/abe917dd86222e7d2c14eea0cb7f5e2f480746 %%WWWDIR%%/go/modules/business/.git/objects/59/00ae987cf0504753ef60cda5e28298f03a8368 +%%WWWDIR%%/go/modules/business/.git/objects/5a/ccab32038aa2c651f8f20830b0750a3c3f409f %%WWWDIR%%/go/modules/business/.git/objects/5a/dceb1c1ba579df4215a10e60f6d3439ea399c1 +%%WWWDIR%%/go/modules/business/.git/objects/5c/7d17902f61c358ff3631c0d1761ee82efe9967 %%WWWDIR%%/go/modules/business/.git/objects/5e/4e8769d8be007cf938cf74a92cf34a4dae3349 +%%WWWDIR%%/go/modules/business/.git/objects/60/479fae2fcef92b3fc32be4249bedf1db018b82 +%%WWWDIR%%/go/modules/business/.git/objects/60/eb612b88e0ea43b8a96b0ce5674a49069624a9 +%%WWWDIR%%/go/modules/business/.git/objects/65/d546ff5237ec82f6a184292c9cb7caa4ee77d2 %%WWWDIR%%/go/modules/business/.git/objects/66/4000ec6256c1f2da292d99351571938f9ce018 +%%WWWDIR%%/go/modules/business/.git/objects/6a/1773a59125a58bb77810aac5bfb652839c857d +%%WWWDIR%%/go/modules/business/.git/objects/6b/244fb772c912cc7c43c54608e7500c43760e70 %%WWWDIR%%/go/modules/business/.git/objects/6d/42f61c9ab33373f760f8e4db345a5a58ee98d4 %%WWWDIR%%/go/modules/business/.git/objects/6e/6fbe12f3cc603ef482a94b1aa96973ce22bcf8 %%WWWDIR%%/go/modules/business/.git/objects/6e/83100cbf0b6e358333eb5c0471866acf3dc94c %%WWWDIR%%/go/modules/business/.git/objects/6e/e2aded59b6d7aed134528f4b7a80d4bf0684e7 %%WWWDIR%%/go/modules/business/.git/objects/6f/6355564c47fb084392dab1d324ae8ebf74fe3b %%WWWDIR%%/go/modules/business/.git/objects/70/0ccead915881d908a451109d366ba4d368cca2 +%%WWWDIR%%/go/modules/business/.git/objects/70/6923cd4493862b1ef6a8e997f0d8f6b0219293 +%%WWWDIR%%/go/modules/business/.git/objects/70/d9cf98a648fe00384f8475ff6361ee30401288 %%WWWDIR%%/go/modules/business/.git/objects/73/cae9dabf9832d2cfb3506d97e9f1f5041fde60 %%WWWDIR%%/go/modules/business/.git/objects/74/12252e641a7eb4b11076f320971a76e8943bcd +%%WWWDIR%%/go/modules/business/.git/objects/75/ac80c3e54ffa8771490fe8a764991278eaf73f %%WWWDIR%%/go/modules/business/.git/objects/79/7260817b9775c3b51c56274dc073a7f29b74e3 %%WWWDIR%%/go/modules/business/.git/objects/7c/05b0c8c0dbbb7aa2e7194f011dca704071851b +%%WWWDIR%%/go/modules/business/.git/objects/7c/232814fb3ea7b1059db95f3354b8992a0f214c +%%WWWDIR%%/go/modules/business/.git/objects/7d/d425d01fdfa574b905c40cb329f68867fc77e4 +%%WWWDIR%%/go/modules/business/.git/objects/81/3e13e662674675b1c080e6ee292498ee1c805f +%%WWWDIR%%/go/modules/business/.git/objects/84/62265aad60831658af9e40cd56b117eae076d6 %%WWWDIR%%/go/modules/business/.git/objects/88/e65cb999c64ffa17a72331857b78c5ab427c04 +%%WWWDIR%%/go/modules/business/.git/objects/89/0f4bcb1c205b59515dc5401093b66e19f46ea2 %%WWWDIR%%/go/modules/business/.git/objects/8b/e76e3c9663fa918b882dc080a679ffa0e47f96 +%%WWWDIR%%/go/modules/business/.git/objects/8c/a82a21140c0e1e70b4e5a75b14ff5e3f9060d3 %%WWWDIR%%/go/modules/business/.git/objects/8e/32a34b3b020be18e280b4b7585f35fe155d8f6 %%WWWDIR%%/go/modules/business/.git/objects/8e/670c18a6bc0f5d2b211a890baf245f14e3ba28 +%%WWWDIR%%/go/modules/business/.git/objects/8e/b6ad2d8209c98e3243c08b593e225caf8f7767 +%%WWWDIR%%/go/modules/business/.git/objects/90/4371b7ca3fbc87725700b56ce63e8382f3f2c5 %%WWWDIR%%/go/modules/business/.git/objects/91/91e40f7f2c989a899f22bd1cef2e272db9ce41 +%%WWWDIR%%/go/modules/business/.git/objects/93/e3c9cadd116f3193eef8bad50954ea89e60f0c +%%WWWDIR%%/go/modules/business/.git/objects/94/249d6e1d073ff4f7637ec9689ec72a9ce6a6b1 +%%WWWDIR%%/go/modules/business/.git/objects/97/1e473c6ee4c32aae05aeeccb9937536fd23dce +%%WWWDIR%%/go/modules/business/.git/objects/97/7102e554fa4021263646cec6d569c6b84d17f5 +%%WWWDIR%%/go/modules/business/.git/objects/98/56bf74aedda25cf3c890cf59c669f16fdb15d3 %%WWWDIR%%/go/modules/business/.git/objects/98/dc46ef479a7b5f9f0c50fbfe8ebcc6dfcb412f %%WWWDIR%%/go/modules/business/.git/objects/9b/d16fb3218da7a34cfd11727edd7e3ad6f5c5bf %%WWWDIR%%/go/modules/business/.git/objects/9e/01b7e19ba2c40dca9519303d3fb753986ccadb +%%WWWDIR%%/go/modules/business/.git/objects/9e/9747a6c04b2b414594b0ca357f95d20d7724f9 %%WWWDIR%%/go/modules/business/.git/objects/a0/97422c6a4f41ba2d419ce7f915aee4e0f9fbcc +%%WWWDIR%%/go/modules/business/.git/objects/a0/9acbd3876b212da8de097ce21defa90498624c +%%WWWDIR%%/go/modules/business/.git/objects/a1/b313225f9b692e8cccd3a3102f01a3d1d97be1 +%%WWWDIR%%/go/modules/business/.git/objects/a2/f829d01ca8d25f23eaed0cce94a1d5c2f4ee51 +%%WWWDIR%%/go/modules/business/.git/objects/a3/a49bec1a07f2c9d05f0e99ef3d50708530ae5f %%WWWDIR%%/go/modules/business/.git/objects/a5/bc181ce5dbcbc976e9fe884e0ffad618a3e622 +%%WWWDIR%%/go/modules/business/.git/objects/a8/de2fb9633f9fbd2980ac5ba3d0bb470fe39951 +%%WWWDIR%%/go/modules/business/.git/objects/a9/9348fb5337fec192884cbc346f27430010c0ae +%%WWWDIR%%/go/modules/business/.git/objects/a9/bec4781e3d5d9d07fc0da317d734afc76dce94 %%WWWDIR%%/go/modules/business/.git/objects/aa/48f429f57ad5eaaff22790dec0f7f8e47dbd9e %%WWWDIR%%/go/modules/business/.git/objects/aa/82518a85cbec2e7cf5fd1be90e145bcce5192d %%WWWDIR%%/go/modules/business/.git/objects/ab/3f49b24148d6d8b77262b962e7eaa2870580f6 +%%WWWDIR%%/go/modules/business/.git/objects/ab/7227c2fd43bbc8b9a0603c05c62c871305c594 %%WWWDIR%%/go/modules/business/.git/objects/ac/4b583d1a3da3658936aed3be81207f68d1906e %%WWWDIR%%/go/modules/business/.git/objects/ac/cb598df5a9da4b048d6d0a0016957337367f38 +%%WWWDIR%%/go/modules/business/.git/objects/ad/ab0e0c4b5d1bb4add2c7183a519b30d780c26c +%%WWWDIR%%/go/modules/business/.git/objects/ae/0111bebcb8b8582224b8bf57ab93b4923409d4 +%%WWWDIR%%/go/modules/business/.git/objects/ae/63cee5174aa0f237b8bf6d44fdfcfe5d6c0448 %%WWWDIR%%/go/modules/business/.git/objects/af/0b26dd0a73f9d2bc5c7c65d37dc4a90bcc8e39 +%%WWWDIR%%/go/modules/business/.git/objects/b6/474acaf60c771531ccd471a377cc7020fce4ab +%%WWWDIR%%/go/modules/business/.git/objects/b6/63192d774eff915831cf3fa05d1d2f11d7ad2a +%%WWWDIR%%/go/modules/business/.git/objects/ba/835bfbda72b154605aac17458304ba08f9df21 %%WWWDIR%%/go/modules/business/.git/objects/bc/845dd5c4661faeb7d701ca9906eb8aca114c70 %%WWWDIR%%/go/modules/business/.git/objects/bd/656344d9c8bf8e006d3e15e79d19c35cef6a1d %%WWWDIR%%/go/modules/business/.git/objects/c3/c99750ca28f7abe5661e7f2bbc5e5820e2494c %%WWWDIR%%/go/modules/business/.git/objects/c3/f65ea83b4df4c34e54a98f514983ba15163b49 %%WWWDIR%%/go/modules/business/.git/objects/c4/1e1d259b68932d3e68a06d65722050e84a5093 +%%WWWDIR%%/go/modules/business/.git/objects/c7/d46d702174a57a4cef5c9a5f9d7719e1d6daa9 +%%WWWDIR%%/go/modules/business/.git/objects/c8/5878c829532b2850f8d7f752b8a89938037316 +%%WWWDIR%%/go/modules/business/.git/objects/c8/dd1924535b5988c77bc321b49f3cfc8cb73ec2 %%WWWDIR%%/go/modules/business/.git/objects/ca/d50385beeda4e4c8956f46e4e094b4b144ade0 %%WWWDIR%%/go/modules/business/.git/objects/cb/67de249d9743ae1ee8909952b5e356c0d302ea +%%WWWDIR%%/go/modules/business/.git/objects/cc/6ed93673d3006aeef5bc6caea1157e9d581aab %%WWWDIR%%/go/modules/business/.git/objects/cd/e1ee683e0295ed975e7bca0ef394db488c9e79 +%%WWWDIR%%/go/modules/business/.git/objects/cf/ae59d8ab1e53de878ca83fa494818bde132141 +%%WWWDIR%%/go/modules/business/.git/objects/d2/388a8ee5221dcbe815852f396ff6661523ebd8 +%%WWWDIR%%/go/modules/business/.git/objects/d3/d03a4930f2599bd2ed439426421d70c3a4c140 +%%WWWDIR%%/go/modules/business/.git/objects/d4/bb2ced5bb00dc57cd618824e8fb682fa2ebf89 +%%WWWDIR%%/go/modules/business/.git/objects/d5/32abae2c0698e388b2ee10ad115176c1dd74a8 %%WWWDIR%%/go/modules/business/.git/objects/d5/39f42de26b8997a727d9be6eed14d6a1986d42 +%%WWWDIR%%/go/modules/business/.git/objects/da/f3d8787605a13b5b9a659baba996aeae8e97fd %%WWWDIR%%/go/modules/business/.git/objects/dc/8ae31e5583607e7277715d3dd308bf11c891e9 +%%WWWDIR%%/go/modules/business/.git/objects/dd/abe0ed39e77b289531fd9c9828cbfa1497d5f7 %%WWWDIR%%/go/modules/business/.git/objects/de/4d80342b4d48353995d4dc7e2624bdcd93b1b1 %%WWWDIR%%/go/modules/business/.git/objects/e0/8649d4eb193c36dd55e87e9c72cba83e40bd75 +%%WWWDIR%%/go/modules/business/.git/objects/e1/c45027847f084fa9673758586a75bf832e8710 %%WWWDIR%%/go/modules/business/.git/objects/e6/67219de1b36d13c38c863d6e88386bf6513565 %%WWWDIR%%/go/modules/business/.git/objects/e7/a24958a414cf0a82b9208f21a4a62349f6e775 +%%WWWDIR%%/go/modules/business/.git/objects/e8/2006858f98f9625bdad22bea186f79dfda8b6f %%WWWDIR%%/go/modules/business/.git/objects/e8/843825a381eaf2b9301958c8e6f2fbbef6f1cc +%%WWWDIR%%/go/modules/business/.git/objects/e8/8c9d60621f41a146557e2ee7e517b1cfa4b505 %%WWWDIR%%/go/modules/business/.git/objects/e9/a51c2b9d8650ec90440a860df850da8906bdd8 +%%WWWDIR%%/go/modules/business/.git/objects/eb/eca0ebc6b24e2d5a1fb0ea77ad609af0140990 +%%WWWDIR%%/go/modules/business/.git/objects/ee/ba8d0c29d9169cb9ee2deb7402b8eb266c22a9 +%%WWWDIR%%/go/modules/business/.git/objects/ef/01be83646b28d4990085e526e75a9ffd9c3513 +%%WWWDIR%%/go/modules/business/.git/objects/f0/e7a067fd1f70959eb86aa22bbab995843d7cd7 %%WWWDIR%%/go/modules/business/.git/objects/f1/c04b9a1f4f4c0d8f2acfd4e2180e2db1e6da3f %%WWWDIR%%/go/modules/business/.git/objects/f2/06596fa55d92ea92589ac6914ddf63a2c36eff +%%WWWDIR%%/go/modules/business/.git/objects/f2/889b5537e1b3c58832f20d88144ddff16f7fc7 +%%WWWDIR%%/go/modules/business/.git/objects/f2/8b33611d7e549b4c372fe585b6014105b6ff11 +%%WWWDIR%%/go/modules/business/.git/objects/f3/0c6cbbf2cdd60bec0342419a90b1bb48a56995 +%%WWWDIR%%/go/modules/business/.git/objects/f3/99b148f7727b4f94a6fcfdbd05278dadbb8d7f +%%WWWDIR%%/go/modules/business/.git/objects/f6/c40ff0a4e183f50eaa0a872823b87a71cf34a8 +%%WWWDIR%%/go/modules/business/.git/objects/f8/675d7cd425bc178464b5ceb20034ddc6dbc50a +%%WWWDIR%%/go/modules/business/.git/objects/fc/72caf801384b55878bdbf17348b270f00e91c6 +%%WWWDIR%%/go/modules/business/.git/objects/fd/849ed3c4b5750813c2c4432d14f2889006d01a %%WWWDIR%%/go/modules/business/.git/objects/fe/c6b38e0fc704180b8c2634255ac76aff462904 %%WWWDIR%%/go/modules/business/.git/objects/ff/ad73e02727fb5dac91f0d62a9df94bbb0801d4 %%WWWDIR%%/go/modules/business/.git/objects/pack/pack-65e49422e71647c14a6556ebe5cd23627029a691.idx @@ -756,6 +853,31 @@ %%WWWDIR%%/go/modules/business/newsletters/views/extjs3/TemplatesWindow.js %%WWWDIR%%/go/modules/business/newsletters/views/extjs3/scripts.txt %%WWWDIR%%/go/modules/business/newsletters/views/extjs3/themes/default/style.css +%%WWWDIR%%/go/modules/business/wopi/Module.php +%%WWWDIR%%/go/modules/business/wopi/controller/Edit.php +%%WWWDIR%%/go/modules/business/wopi/controller/Service.php +%%WWWDIR%%/go/modules/business/wopi/controller/Wopi.php +%%WWWDIR%%/go/modules/business/wopi/filehandler/Collabora.php +%%WWWDIR%%/go/modules/business/wopi/filehandler/Office365.php +%%WWWDIR%%/go/modules/business/wopi/icon.png +%%WWWDIR%%/go/modules/business/wopi/install/install.sql +%%WWWDIR%%/go/modules/business/wopi/install/uninstall.sql +%%WWWDIR%%/go/modules/business/wopi/install/updates.php +%%WWWDIR%%/go/modules/business/wopi/language/en.php +%%WWWDIR%%/go/modules/business/wopi/model/Lock.php +%%WWWDIR%%/go/modules/business/wopi/model/Service.php +%%WWWDIR%%/go/modules/business/wopi/model/Token.php +%%WWWDIR%%/go/modules/business/wopi/view/edit.php +%%WWWDIR%%/go/modules/business/wopi/views/extjs3/Module.js +%%WWWDIR%%/go/modules/business/wopi/views/extjs3/ServiceDialog.js +%%WWWDIR%%/go/modules/business/wopi/views/extjs3/ServiceGridPanel.js +%%WWWDIR%%/go/modules/business/wopi/views/extjs3/SystemSettingsPanel.js +%%WWWDIR%%/go/modules/business/wopi/views/extjs3/scripts.txt +%%WWWDIR%%/go/modules/business/wopi/views/extjs3/themes/default/resources/office-online.png +%%WWWDIR%%/go/modules/business/wopi/views/extjs3/themes/default/resources/wopicollabora16x16.png +%%WWWDIR%%/go/modules/business/wopi/views/extjs3/themes/default/resources/www.collaboraoffice.com.ico +%%WWWDIR%%/go/modules/business/wopi/views/extjs3/themes/default/style.css +%%WWWDIR%%/go/modules/business/wopi/wopi.php %%WWWDIR%%/go/modules/community/addressbook/Module.php %%WWWDIR%%/go/modules/community/addressbook/controller/AddressBook.php %%WWWDIR%%/go/modules/community/addressbook/controller/Contact.php @@ -6913,6 +7035,7 @@ %%WWWDIR%%/views/Extjs3/themes/Paper/src/_go-style.scss %%WWWDIR%%/views/Extjs3/themes/Paper/src/_icons.scss %%WWWDIR%%/views/Extjs3/themes/Paper/src/_modules.scss +%%WWWDIR%%/views/Extjs3/themes/Paper/src/_print.scss %%WWWDIR%%/views/Extjs3/themes/Paper/src/_shadows.scss %%WWWDIR%%/views/Extjs3/themes/Paper/src/_tools.scss %%WWWDIR%%/views/Extjs3/themes/Paper/src/_typography.scss From owner-svn-ports-all@freebsd.org Wed Jun 19 05:32:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7EE1515D2DAC; Wed, 19 Jun 2019 05:32:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2247C75E65; Wed, 19 Jun 2019 05:32:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EC3CA200B4; Wed, 19 Jun 2019 05:32:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J5WS5Z071751; Wed, 19 Jun 2019 05:32:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J5WSBO071749; Wed, 19 Jun 2019 05:32:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906190532.x5J5WSBO071749@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 19 Jun 2019 05:32:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504513 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 504513 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2247C75E65 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.956,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 05:32:29 -0000 Author: jbeich Date: Wed Jun 19 05:32:28 2019 New Revision: 504513 URL: https://svnweb.freebsd.org/changeset/ports/504513 Log: security/vuxml: mark firefox < 67.0.3 as vulnerable Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Wed Jun 19 05:23:56 2019 (r504512) +++ head/security/vuxml/vuln.xml Wed Jun 19 05:32:28 2019 (r504513) @@ -58,6 +58,40 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + mozilla -- multiple vulnerabilities + + + firefox + 67.0.3,1 + + + firefox-esr + 60.7.1,1 + + + + +

Mozilla Foundation reports:

+
+

CVE-2019-11707: Type confusion in Array.pop

+

A type confusion vulnerability can occur when + manipulating JavaScript objects due to issues in + Array.pop. This can allow for an exploitable crash. We are + aware of targeted attacks in the wild abusing this flaw.

+
+ +
+ + CVE-2019-11707 + https://www.mozilla.org/security/advisories/mfsa2019-18/ + + + 2019-06-18 + 2019-06-19 + +
+ netatalk3 -- remote code execution vulnerability From owner-svn-ports-all@freebsd.org Wed Jun 19 05:50:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07D1015D3220; Wed, 19 Jun 2019 05:50:30 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A120876421; Wed, 19 Jun 2019 05:50:29 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 769C76051; Wed, 19 Jun 2019 05:50:29 +0000 (UTC) From: Jan Beich To: Glen Barber Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-tags@freebsd.org Subject: Re: svn commit: r504509 - tags/RELEASE_11_3_0 References: <201906190049.x5J0ng43020174@repo.freebsd.org> Date: Wed, 19 Jun 2019 07:50:25 +0200 In-Reply-To: <201906190049.x5J0ng43020174@repo.freebsd.org> (Glen Barber's message of "Wed, 19 Jun 2019 00:49:42 +0000 (UTC)") Message-ID: <1rzq-cee6-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: A120876421 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.81 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.81)[-0.814,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 05:50:30 -0000 Glen Barber writes: > Author: gjb > Date: Wed Jun 19 00:49:42 2019 > New Revision: 504509 > URL: https://svnweb.freebsd.org/changeset/ports/504509 > > Log: > Tag ports 2019Q2@r504456 for 11.3-RELEASE. > > Approved by: portmgr (implicit, re blanket) > Sponsored by: The FreeBSD Foundation > > Added: > tags/RELEASE_11_3_0/ > - copied from r504456, branches/2019Q2/ Sadly, this doesn't include recent www/firefox and www/firefox-esr updates. https://www.bleepingcomputer.com/news/security/mozilla-firefox-6703-patches-actively-exploited-zero-day/ https://www.reddit.com/r/firefox/comments/c25sj0/firefox_6703_released_with_an_urgent_security_fix/ From owner-svn-ports-all@freebsd.org Wed Jun 19 06:39:07 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E82B015D3CAE; Wed, 19 Jun 2019 06:39:06 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8EB9B776DE; Wed, 19 Jun 2019 06:39:06 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 63CF520AC7; Wed, 19 Jun 2019 06:39:06 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J6d6Xd003912; Wed, 19 Jun 2019 06:39:06 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J6d6U8003911; Wed, 19 Jun 2019 06:39:06 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201906190639.x5J6d6U8003911@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Wed, 19 Jun 2019 06:39:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504514 - in head/comms/quisk: . files X-SVN-Group: ports-head X-SVN-Commit-Author: shurd X-SVN-Commit-Paths: in head/comms/quisk: . files X-SVN-Commit-Revision: 504514 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8EB9B776DE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 06:39:07 -0000 Author: shurd Date: Wed Jun 19 06:39:05 2019 New Revision: 504514 URL: https://svnweb.freebsd.org/changeset/ports/504514 Log: Fix issue where if the height of the slider is greater than the height of the text, the slider isn't displayed. Added: head/comms/quisk/files/patch-quisk__widgets.py (contents, props changed) Modified: head/comms/quisk/Makefile Modified: head/comms/quisk/Makefile ============================================================================== --- head/comms/quisk/Makefile Wed Jun 19 05:32:28 2019 (r504513) +++ head/comms/quisk/Makefile Wed Jun 19 06:39:05 2019 (r504514) @@ -3,7 +3,7 @@ PORTNAME= quisk DISTVERSION= 4.1.40 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= comms hamradio MASTER_SITES= CHEESESHOP Added: head/comms/quisk/files/patch-quisk__widgets.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/quisk/files/patch-quisk__widgets.py Wed Jun 19 06:39:05 2019 (r504514) @@ -0,0 +1,20 @@ +--- quisk_widgets.py.orig 2019-06-19 06:35:39 UTC ++++ quisk_widgets.py +@@ -248,7 +248,16 @@ class SliderBoxH: + else: + self.text_ctrl = wx.StaticText(parent, -1, t, pos=pos) + w2, h2 = self.text_ctrl.GetSize() +- self.slider = wx.Slider(parent, -1, init, themin, themax, (pos[0] + w2, pos[1]), (width - w2, h2)) ++ self.slider = wx.Slider(parent, -1, init, themin, themax) ++ w3, h3 = self.slider.GetSize() ++ p2 = pos[1] ++ if h3 > h2: ++ p2 -= (h3 - h2) / 2 ++ h2 = h3 ++ else: ++ p2 += (h2 - h3) / 2 ++ self.slider.SetSize((width - w2, h2)) ++ self.slider.SetPosition((pos[0] + w2, p2)) + self.slider.Bind(wx.EVT_SCROLL, self.OnScroll) + self.text_ctrl.SetForegroundColour(parent.GetForegroundColour()) + self.OnScroll() From owner-svn-ports-all@freebsd.org Wed Jun 19 06:50:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1649E15D40FB; Wed, 19 Jun 2019 06:50:47 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC05377D9F; Wed, 19 Jun 2019 06:50:46 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 88DD020C77; Wed, 19 Jun 2019 06:50:46 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J6okN7009168; Wed, 19 Jun 2019 06:50:46 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J6okxC009166; Wed, 19 Jun 2019 06:50:46 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906190650.x5J6okxC009166@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 19 Jun 2019 06:50:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504515 - head/x11-drivers/xf86-input-wacom X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/x11-drivers/xf86-input-wacom X-SVN-Commit-Revision: 504515 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AC05377D9F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 06:50:47 -0000 Author: jbeich Date: Wed Jun 19 06:50:45 2019 New Revision: 504515 URL: https://svnweb.freebsd.org/changeset/ports/504515 Log: x11-drivers/xf86-input-wacom: update to 0.37.0 Changes: https://github.com/linuxwacom/xf86-input-wacom/releases/tag/xf86-input-wacom-0.37.0 Reported by: GitHub (watch releases) Modified: head/x11-drivers/xf86-input-wacom/Makefile (contents, props changed) head/x11-drivers/xf86-input-wacom/distinfo (contents, props changed) Modified: head/x11-drivers/xf86-input-wacom/Makefile ============================================================================== --- head/x11-drivers/xf86-input-wacom/Makefile Wed Jun 19 06:39:05 2019 (r504514) +++ head/x11-drivers/xf86-input-wacom/Makefile Wed Jun 19 06:50:45 2019 (r504515) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= xf86-input-wacom -PORTVERSION= 0.36.1 -PORTREVISION= 4 +PORTVERSION= 0.37.0 CATEGORIES= x11-drivers MASTER_SITES= https://github.com/linuxwacom/${PORTNAME}/releases/download/${DISTNAME}/ Modified: head/x11-drivers/xf86-input-wacom/distinfo ============================================================================== --- head/x11-drivers/xf86-input-wacom/distinfo Wed Jun 19 06:39:05 2019 (r504514) +++ head/x11-drivers/xf86-input-wacom/distinfo Wed Jun 19 06:50:45 2019 (r504515) @@ -1,3 +1,3 @@ -TIMESTAMP = 1521493407 -SHA256 (xorg/driver/xf86-input-wacom-0.36.1.tar.bz2) = 3206b92a4ed1fece07438a85405c748b9ed62cf0f0c3df845a2ce695d5463e09 -SIZE (xorg/driver/xf86-input-wacom-0.36.1.tar.bz2) = 612808 +TIMESTAMP = 1560873776 +SHA256 (xorg/driver/xf86-input-wacom-0.37.0.tar.bz2) = 9311cd1ff2a284a429a04c3c5d03ccbad83e76a58770668ac0f2d22740e05881 +SIZE (xorg/driver/xf86-input-wacom-0.37.0.tar.bz2) = 650501 From owner-svn-ports-all@freebsd.org Wed Jun 19 06:52:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0811715D415F; Wed, 19 Jun 2019 06:52:33 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A2DFE800EA; Wed, 19 Jun 2019 06:52:32 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7EB4120E1E; Wed, 19 Jun 2019 06:52:32 +0000 (UTC) (envelope-from shurd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J6qWBk014312; Wed, 19 Jun 2019 06:52:32 GMT (envelope-from shurd@FreeBSD.org) Received: (from shurd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J6qWBN014310; Wed, 19 Jun 2019 06:52:32 GMT (envelope-from shurd@FreeBSD.org) Message-Id: <201906190652.x5J6qWBN014310@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: shurd set sender to shurd@FreeBSD.org using -f From: Stephen Hurd Date: Wed, 19 Jun 2019 06:52:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504516 - in head/comms/quisk: . files X-SVN-Group: ports-head X-SVN-Commit-Author: shurd X-SVN-Commit-Paths: in head/comms/quisk: . files X-SVN-Commit-Revision: 504516 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A2DFE800EA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 06:52:33 -0000 Author: shurd Date: Wed Jun 19 06:52:31 2019 New Revision: 504516 URL: https://svnweb.freebsd.org/changeset/ports/504516 Log: Fix error in positioning sliders when the font size is larger than the slider size introduced by r504514. Modified: head/comms/quisk/Makefile head/comms/quisk/files/patch-quisk__widgets.py Modified: head/comms/quisk/Makefile ============================================================================== --- head/comms/quisk/Makefile Wed Jun 19 06:50:45 2019 (r504515) +++ head/comms/quisk/Makefile Wed Jun 19 06:52:31 2019 (r504516) @@ -3,7 +3,7 @@ PORTNAME= quisk DISTVERSION= 4.1.40 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= comms hamradio MASTER_SITES= CHEESESHOP Modified: head/comms/quisk/files/patch-quisk__widgets.py ============================================================================== --- head/comms/quisk/files/patch-quisk__widgets.py Wed Jun 19 06:50:45 2019 (r504515) +++ head/comms/quisk/files/patch-quisk__widgets.py Wed Jun 19 06:52:31 2019 (r504516) @@ -1,6 +1,6 @@ ---- quisk_widgets.py.orig 2019-06-19 06:35:39 UTC +--- quisk_widgets.py.orig 2019-05-28 12:22:59 UTC +++ quisk_widgets.py -@@ -248,7 +248,16 @@ class SliderBoxH: +@@ -248,7 +248,15 @@ class SliderBoxH: else: self.text_ctrl = wx.StaticText(parent, -1, t, pos=pos) w2, h2 = self.text_ctrl.GetSize() @@ -10,10 +10,9 @@ + p2 = pos[1] + if h3 > h2: + p2 -= (h3 - h2) / 2 -+ h2 = h3 + else: + p2 += (h2 - h3) / 2 -+ self.slider.SetSize((width - w2, h2)) ++ self.slider.SetSize((width - w2, h3)) + self.slider.SetPosition((pos[0] + w2, p2)) self.slider.Bind(wx.EVT_SCROLL, self.OnScroll) self.text_ctrl.SetForegroundColour(parent.GetForegroundColour()) From owner-svn-ports-all@freebsd.org Wed Jun 19 07:26:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E2F7815D4AD0; Wed, 19 Jun 2019 07:26:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 89F6380FA1; Wed, 19 Jun 2019 07:26:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7A3CE2130B; Wed, 19 Jun 2019 07:26:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J7QrIF029993; Wed, 19 Jun 2019 07:26:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J7Qrb7029992; Wed, 19 Jun 2019 07:26:53 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906190726.x5J7Qrb7029992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 19 Jun 2019 07:26:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504517 - head/sysutils/goawk X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/sysutils/goawk X-SVN-Commit-Revision: 504517 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 89F6380FA1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 07:26:54 -0000 Author: yuri Date: Wed Jun 19 07:26:52 2019 New Revision: 504517 URL: https://svnweb.freebsd.org/changeset/ports/504517 Log: sysutils/goawk: Update 1.5.1 -> 1.6.0 Reported by: portscout Modified: head/sysutils/goawk/Makefile head/sysutils/goawk/distinfo Modified: head/sysutils/goawk/Makefile ============================================================================== --- head/sysutils/goawk/Makefile Wed Jun 19 06:52:31 2019 (r504516) +++ head/sysutils/goawk/Makefile Wed Jun 19 07:26:52 2019 (r504517) @@ -2,7 +2,7 @@ PORTNAME= goawk DISTVERSIONPREFIX= v -DISTVERSION= 1.5.1 +DISTVERSION= 1.6.0 CATEGORIES= sysutils MAINTAINER= yuri@FreeBSD.org Modified: head/sysutils/goawk/distinfo ============================================================================== --- head/sysutils/goawk/distinfo Wed Jun 19 06:52:31 2019 (r504516) +++ head/sysutils/goawk/distinfo Wed Jun 19 07:26:52 2019 (r504517) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556606366 -SHA256 (benhoyt-goawk-v1.5.1_GH0.tar.gz) = 0d8194170ac865f47823d40e6785141da36ffbc0293eee2a72ef56374dc92a74 -SIZE (benhoyt-goawk-v1.5.1_GH0.tar.gz) = 1565811 +TIMESTAMP = 1560927232 +SHA256 (benhoyt-goawk-v1.6.0_GH0.tar.gz) = 502890c67bd0e3f17656801eb4662a8a816f283914fc0a5f956b15afe48d086b +SIZE (benhoyt-goawk-v1.6.0_GH0.tar.gz) = 1565822 From owner-svn-ports-all@freebsd.org Wed Jun 19 07:27:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4464315D4B3D; Wed, 19 Jun 2019 07:27:35 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BDA96810BC; Wed, 19 Jun 2019 07:27:34 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9B45F2130C; Wed, 19 Jun 2019 07:27:34 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J7RYNi030146; Wed, 19 Jun 2019 07:27:34 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J7RYHn030144; Wed, 19 Jun 2019 07:27:34 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906190727.x5J7RYHn030144@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 19 Jun 2019 07:27:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504518 - head/graphics/gmic X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/graphics/gmic X-SVN-Commit-Revision: 504518 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BDA96810BC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 07:27:35 -0000 Author: yuri Date: Wed Jun 19 07:27:34 2019 New Revision: 504518 URL: https://svnweb.freebsd.org/changeset/ports/504518 Log: graphics/gmic: Update 2.6.5 -> 2.6.6 Reported by: portscout Modified: head/graphics/gmic/Makefile head/graphics/gmic/distinfo Modified: head/graphics/gmic/Makefile ============================================================================== --- head/graphics/gmic/Makefile Wed Jun 19 07:26:52 2019 (r504517) +++ head/graphics/gmic/Makefile Wed Jun 19 07:27:34 2019 (r504518) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gmic -DISTVERSION= 2.6.5 +DISTVERSION= 2.6.6 CATEGORIES= graphics MASTER_SITES= https://gmic.eu/files/source/ DISTNAME= ${PORTNAME}_${DISTVERSION} Modified: head/graphics/gmic/distinfo ============================================================================== --- head/graphics/gmic/distinfo Wed Jun 19 07:26:52 2019 (r504517) +++ head/graphics/gmic/distinfo Wed Jun 19 07:27:34 2019 (r504518) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560049347 -SHA256 (gmic_2.6.5.tar.gz) = b0da81a3ed7ee25475ffb0ca148c755f7a7028650614e7e103a3fc507a81e10e -SIZE (gmic_2.6.5.tar.gz) = 5805399 +TIMESTAMP = 1560927208 +SHA256 (gmic_2.6.6.tar.gz) = 86c14da90daa0b3c09265b7b07976bf3f3a76f5b0786fecfd9fc3d9332ce0da0 +SIZE (gmic_2.6.6.tar.gz) = 5810013 From owner-svn-ports-all@freebsd.org Wed Jun 19 08:00:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF94A15D562C; Wed, 19 Jun 2019 08:00:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7552281F0B; Wed, 19 Jun 2019 08:00:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 64C132180D; Wed, 19 Jun 2019 08:00:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J80UFk046221; Wed, 19 Jun 2019 08:00:30 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J80TJn046219; Wed, 19 Jun 2019 08:00:29 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906190800.x5J80TJn046219@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 19 Jun 2019 08:00:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504519 - head/www/py-flexget X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/www/py-flexget X-SVN-Commit-Revision: 504519 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7552281F0B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 08:00:31 -0000 Author: jbeich Date: Wed Jun 19 08:00:29 2019 New Revision: 504519 URL: https://svnweb.freebsd.org/changeset/ports/504519 Log: www/py-flexget: update to 2.21.10 Changes: https://github.com/Flexget/Flexget/compare/2.21.8...2.21.10 Reported by: portscout Modified: head/www/py-flexget/Makefile (contents, props changed) head/www/py-flexget/distinfo (contents, props changed) Modified: head/www/py-flexget/Makefile ============================================================================== --- head/www/py-flexget/Makefile Wed Jun 19 07:27:34 2019 (r504518) +++ head/www/py-flexget/Makefile Wed Jun 19 08:00:29 2019 (r504519) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= flexget -PORTVERSION= 2.21.8 +PORTVERSION= 2.21.10 PORTEPOCH= 1 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-flexget/distinfo ============================================================================== --- head/www/py-flexget/distinfo Wed Jun 19 07:27:34 2019 (r504518) +++ head/www/py-flexget/distinfo Wed Jun 19 08:00:29 2019 (r504519) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560305041 -SHA256 (flexget-Flexget-2.21.8_GH0.tar.gz) = a674a09b3cc13fef0d1e705bbc9e43aa91229a99c1528d6863d2a7e01847680a -SIZE (flexget-Flexget-2.21.8_GH0.tar.gz) = 7138894 +TIMESTAMP = 1560909940 +SHA256 (flexget-Flexget-2.21.10_GH0.tar.gz) = d4484bcf72a27702de350d713a84e3fcf24114034865235bde7b576260f21612 +SIZE (flexget-Flexget-2.21.10_GH0.tar.gz) = 7138700 From owner-svn-ports-all@freebsd.org Wed Jun 19 08:00:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BAAA815D565E; Wed, 19 Jun 2019 08:00:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 62F11820A1; Wed, 19 Jun 2019 08:00:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3B4FB2182A; Wed, 19 Jun 2019 08:00:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J80vd7047165; Wed, 19 Jun 2019 08:00:57 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J80ug0047163; Wed, 19 Jun 2019 08:00:56 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906190800.x5J80ug0047163@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 19 Jun 2019 08:00:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504520 - head/dns/amass X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/dns/amass X-SVN-Commit-Revision: 504520 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 62F11820A1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 08:00:57 -0000 Author: yuri Date: Wed Jun 19 08:00:56 2019 New Revision: 504520 URL: https://svnweb.freebsd.org/changeset/ports/504520 Log: dns/amass: Update 3.0.4 -> 3.0.9 Reported by: portscout Modified: head/dns/amass/Makefile head/dns/amass/distinfo Modified: head/dns/amass/Makefile ============================================================================== --- head/dns/amass/Makefile Wed Jun 19 08:00:29 2019 (r504519) +++ head/dns/amass/Makefile Wed Jun 19 08:00:56 2019 (r504520) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= amass -DISTVERSION= 3.0.4 +DISTVERSION= 3.0.9 CATEGORIES= dns MAINTAINER= yuri@FreeBSD.org Modified: head/dns/amass/distinfo ============================================================================== --- head/dns/amass/distinfo Wed Jun 19 08:00:29 2019 (r504519) +++ head/dns/amass/distinfo Wed Jun 19 08:00:56 2019 (r504520) @@ -1,6 +1,6 @@ -TIMESTAMP = 1560403552 -SHA256 (OWASP-Amass-3.0.4_GH0.tar.gz) = dc4b725147d99f5743471618aa252c0171554af1353e9fa2ae80b20a4c18e1ac -SIZE (OWASP-Amass-3.0.4_GH0.tar.gz) = 8164192 +TIMESTAMP = 1560930944 +SHA256 (OWASP-Amass-3.0.9_GH0.tar.gz) = 97ca5641fed8aca11f2e765120b030c2622c69f2bd19a69584e4bdea76ac16a6 +SIZE (OWASP-Amass-3.0.9_GH0.tar.gz) = 8167892 SHA256 (andybalholm-cascadia-v1.0.0_GH0.tar.gz) = 00ab6f915e958c9e0509836cd67082a802513459c12c4aa6e7a28ef37743ce52 SIZE (andybalholm-cascadia-v1.0.0_GH0.tar.gz) = 13232 SHA256 (asaskevich-EventBus-d46933a_GH0.tar.gz) = f1c2764fb95aa403c1de1445098c1a417985866983be8066316a9ae97a5bb5b7 From owner-svn-ports-all@freebsd.org Wed Jun 19 08:08:32 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A5D8515D586B; Wed, 19 Jun 2019 08:08:32 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C7B782460; Wed, 19 Jun 2019 08:08:32 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 27017219C5; Wed, 19 Jun 2019 08:08:32 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J88WPF051768; Wed, 19 Jun 2019 08:08:32 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J88VPY051767; Wed, 19 Jun 2019 08:08:31 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906190808.x5J88VPY051767@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 19 Jun 2019 08:08:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504521 - head/biology/py-bx-python X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/biology/py-bx-python X-SVN-Commit-Revision: 504521 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4C7B782460 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 08:08:32 -0000 Author: yuri Date: Wed Jun 19 08:08:31 2019 New Revision: 504521 URL: https://svnweb.freebsd.org/changeset/ports/504521 Log: biology/py-bx-python: Update 0.8.2 -> 0.8.4 Reported by: pirtscout Modified: head/biology/py-bx-python/Makefile head/biology/py-bx-python/distinfo Modified: head/biology/py-bx-python/Makefile ============================================================================== --- head/biology/py-bx-python/Makefile Wed Jun 19 08:00:56 2019 (r504520) +++ head/biology/py-bx-python/Makefile Wed Jun 19 08:08:31 2019 (r504521) @@ -3,8 +3,7 @@ PORTNAME= bx-python DISTVERSIONPREFIX= v -DISTVERSION= 0.8.2 -PORTREVISION= 1 +DISTVERSION= 0.8.4 CATEGORIES= biology python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/biology/py-bx-python/distinfo ============================================================================== --- head/biology/py-bx-python/distinfo Wed Jun 19 08:00:56 2019 (r504520) +++ head/biology/py-bx-python/distinfo Wed Jun 19 08:08:31 2019 (r504521) @@ -1,3 +1,3 @@ -TIMESTAMP = 1535271388 -SHA256 (bxlab-bx-python-v0.8.2_GH0.tar.gz) = 54f07b417ea192ff113e9b7e36aa69b6ac9d8036abdc58d89d96057f4e7fcc1b -SIZE (bxlab-bx-python-v0.8.2_GH0.tar.gz) = 1654698 +TIMESTAMP = 1560931538 +SHA256 (bxlab-bx-python-v0.8.4_GH0.tar.gz) = 7612636f06e03893b0b498fae5499d3af39f1883a84c78148a6fc650e5c7c864 +SIZE (bxlab-bx-python-v0.8.4_GH0.tar.gz) = 1655335 From owner-svn-ports-all@freebsd.org Wed Jun 19 08:14:25 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 670A015D5A8C; Wed, 19 Jun 2019 08:14:25 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0890082838; Wed, 19 Jun 2019 08:14:25 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D869C21B8D; Wed, 19 Jun 2019 08:14:24 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J8EOYA056947; Wed, 19 Jun 2019 08:14:24 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J8EON2056946; Wed, 19 Jun 2019 08:14:24 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906190814.x5J8EON2056946@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 19 Jun 2019 08:14:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504522 - head/science/py-qcelemental X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/py-qcelemental X-SVN-Commit-Revision: 504522 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0890082838 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 08:14:25 -0000 Author: yuri Date: Wed Jun 19 08:14:24 2019 New Revision: 504522 URL: https://svnweb.freebsd.org/changeset/ports/504522 Log: science/py-qcelemental: Update 0.4.1 -> 0.4.2 Reported by: portscout Modified: head/science/py-qcelemental/Makefile head/science/py-qcelemental/distinfo Modified: head/science/py-qcelemental/Makefile ============================================================================== --- head/science/py-qcelemental/Makefile Wed Jun 19 08:08:31 2019 (r504521) +++ head/science/py-qcelemental/Makefile Wed Jun 19 08:14:24 2019 (r504522) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= qcelemental -PORTVERSION= 0.4.1 +PORTVERSION= 0.4.2 CATEGORIES= science python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/science/py-qcelemental/distinfo ============================================================================== --- head/science/py-qcelemental/distinfo Wed Jun 19 08:08:31 2019 (r504521) +++ head/science/py-qcelemental/distinfo Wed Jun 19 08:14:24 2019 (r504522) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559368532 -SHA256 (qcelemental-0.4.1.tar.gz) = 327d0a2854dc5696b8802ac904be8509ce8bfc6138060d7b1de1fb3cdfe25e53 -SIZE (qcelemental-0.4.1.tar.gz) = 180963 +TIMESTAMP = 1560931960 +SHA256 (qcelemental-0.4.2.tar.gz) = 96f5f1b1274a8e5e549982e6349a704091de76fee00b0084e3669e7c47231a7e +SIZE (qcelemental-0.4.2.tar.gz) = 181439 From owner-svn-ports-all@freebsd.org Wed Jun 19 08:15:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BA18D15D5AD2; Wed, 19 Jun 2019 08:15:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1DBBB82922; Wed, 19 Jun 2019 08:15:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EB59221B8E; Wed, 19 Jun 2019 08:15:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J8Frvh057134; Wed, 19 Jun 2019 08:15:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J8FrYI057133; Wed, 19 Jun 2019 08:15:53 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906190815.x5J8FrYI057133@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 19 Jun 2019 08:15:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504523 - head/science/py-qcengine X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/py-qcengine X-SVN-Commit-Revision: 504523 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1DBBB82922 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 08:15:55 -0000 Author: yuri Date: Wed Jun 19 08:15:53 2019 New Revision: 504523 URL: https://svnweb.freebsd.org/changeset/ports/504523 Log: science/py-qcengine: Update 0.6.4 -> 0.7.1 Reported by: portscout Modified: head/science/py-qcengine/Makefile head/science/py-qcengine/distinfo Modified: head/science/py-qcengine/Makefile ============================================================================== --- head/science/py-qcengine/Makefile Wed Jun 19 08:14:24 2019 (r504522) +++ head/science/py-qcengine/Makefile Wed Jun 19 08:15:53 2019 (r504523) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= qcengine -PORTVERSION= 0.6.4 +PORTVERSION= 0.7.1 CATEGORIES= science python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,8 +14,8 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py-cpuinfo>0:sysutils/py-cpuinfo@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}psutil>0:sysutils/py-psutil@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pydantic>=0.18.0:devel/py-pydantic@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}qcelemental>=0.3.0:science/py-qcelemental@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pydantic>=0.20.0:devel/py-pydantic@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}qcelemental>=0.4.2:science/py-qcelemental@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} USES= python:3.6+ Modified: head/science/py-qcengine/distinfo ============================================================================== --- head/science/py-qcengine/distinfo Wed Jun 19 08:14:24 2019 (r504522) +++ head/science/py-qcengine/distinfo Wed Jun 19 08:15:53 2019 (r504523) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554011813 -SHA256 (qcengine-0.6.4.tar.gz) = c26051ce31bf2390c1be4823c03f27a93030dc2e7843c46cfee53854d16b0ba9 -SIZE (qcengine-0.6.4.tar.gz) = 65921 +TIMESTAMP = 1560931732 +SHA256 (qcengine-0.7.1.tar.gz) = b1ba6f87492a78591e18adaf412cf0277d0e63cf56463a7082d92cf407711e2c +SIZE (qcengine-0.7.1.tar.gz) = 82943 From owner-svn-ports-all@freebsd.org Wed Jun 19 08:28:36 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 651C315D5D4B; Wed, 19 Jun 2019 08:28:36 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0AA5582DE1; Wed, 19 Jun 2019 08:28:36 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D64B821D53; Wed, 19 Jun 2019 08:28:35 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J8SZ15062497; Wed, 19 Jun 2019 08:28:35 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J8SZQW062496; Wed, 19 Jun 2019 08:28:35 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906190828.x5J8SZQW062496@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 19 Jun 2019 08:28:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504524 - head/multimedia/obs-studio X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/multimedia/obs-studio X-SVN-Commit-Revision: 504524 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0AA5582DE1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 08:28:36 -0000 Author: yuri Date: Wed Jun 19 08:28:35 2019 New Revision: 504524 URL: https://svnweb.freebsd.org/changeset/ports/504524 Log: multimedia/obs-studio: Update 23.2.0 -> 23.2.1 Reported by: portscout Modified: head/multimedia/obs-studio/Makefile head/multimedia/obs-studio/distinfo Modified: head/multimedia/obs-studio/Makefile ============================================================================== --- head/multimedia/obs-studio/Makefile Wed Jun 19 08:15:53 2019 (r504523) +++ head/multimedia/obs-studio/Makefile Wed Jun 19 08:28:35 2019 (r504524) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= obs-studio -DISTVERSION= 23.2.0 +DISTVERSION= 23.2.1 CATEGORIES= multimedia MAINTAINER= yuri@FreeBSD.org Modified: head/multimedia/obs-studio/distinfo ============================================================================== --- head/multimedia/obs-studio/distinfo Wed Jun 19 08:15:53 2019 (r504523) +++ head/multimedia/obs-studio/distinfo Wed Jun 19 08:28:35 2019 (r504524) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560403664 -SHA256 (obsproject-obs-studio-23.2.0_GH0.tar.gz) = 64a77ee3e292c88d145d7b0bdef85a9a01708037647a665e29bfda14ce854728 -SIZE (obsproject-obs-studio-23.2.0_GH0.tar.gz) = 6204399 +TIMESTAMP = 1560932324 +SHA256 (obsproject-obs-studio-23.2.1_GH0.tar.gz) = 9e40d1b1552ea2e4f3aa079a8a867a1d94346069a0c199461af1cc90e5271760 +SIZE (obsproject-obs-studio-23.2.1_GH0.tar.gz) = 6204515 From owner-svn-ports-all@freebsd.org Wed Jun 19 08:29:56 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A323815D5D99; Wed, 19 Jun 2019 08:29:56 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4958682ECF; Wed, 19 Jun 2019 08:29:56 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0CFD521D55; Wed, 19 Jun 2019 08:29:56 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J8Tt3J062702; Wed, 19 Jun 2019 08:29:55 GMT (envelope-from crees@FreeBSD.org) Received: (from crees@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J8Ttf8062699; Wed, 19 Jun 2019 08:29:55 GMT (envelope-from crees@FreeBSD.org) Message-Id: <201906190829.x5J8Ttf8062699@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: crees set sender to crees@FreeBSD.org using -f From: Chris Rees Date: Wed, 19 Jun 2019 08:29:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504525 - in head/sysutils/reed: . files X-SVN-Group: ports-head X-SVN-Commit-Author: crees X-SVN-Commit-Paths: in head/sysutils/reed: . files X-SVN-Commit-Revision: 504525 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4958682ECF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 08:29:56 -0000 Author: crees Date: Wed Jun 19 08:29:55 2019 New Revision: 504525 URL: https://svnweb.freebsd.org/changeset/ports/504525 Log: sysutils/reed: Remove sys/dir.h It was replaced a long time ago with sys/dirent.h, which is implicitly included from dirent.h Use sed instead of perl, remove redundant seds and use a patch for the source file for clarity PR: ports/238696 Submitted by: rene Added: head/sysutils/reed/files/patch-reed.c (contents, props changed) Modified: head/sysutils/reed/Makefile head/sysutils/reed/files/patch-cfg.data (contents, props changed) Modified: head/sysutils/reed/Makefile ============================================================================== --- head/sysutils/reed/Makefile Wed Jun 19 08:28:35 2019 (r504524) +++ head/sysutils/reed/Makefile Wed Jun 19 08:29:55 2019 (r504525) @@ -14,20 +14,16 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= ncurses perl5 shebangfix -USE_PERL5= run build patch -SHEBANG_FILES= wrap breed +USE_PERL5= run +SHEBANG_FILES= wrap breed fix_bookmarks.pl HAS_CONFIGURE= yes CONFIGURE_SCRIPT= configures CONFIGURE_ENV+= INCDIR="${NCURSESINC}" post-patch: - @${PERL} -pi -e 's!/usr/local!${PREFIX}!g' ${WRKSRC}/configures - @${PERL} -pi -e 's!sys/dir.h!dirent.h!g;s!.*getopt.h.*\n!!' \ + @${REINPLACE_CMD} 's!/usr/local!${PREFIX}!g' ${WRKSRC}/configures + @${REINPLACE_CMD} 's!sys/dir.h!dirent.h!g;\!getopt.h!d' \ ${WRKSRC}/reed.c - @${PERL} -pi -e 's!getopt.h !!' ${WRKSRC}/cfg.data - @${PERL} -pi -e 's!-O2!${CFLAGS}!' ${WRKSRC}/Makefile.in - @${PERL} -pi -e 's!^#!/usr/bin/perl!#!${PERL}!' \ - ${WRKSRC}/fix_bookmarks.pl do-install: ${INSTALL_PROGRAM} ${WRKSRC}/reed ${STAGEDIR}${PREFIX}/bin Modified: head/sysutils/reed/files/patch-cfg.data ============================================================================== --- head/sysutils/reed/files/patch-cfg.data Wed Jun 19 08:28:35 2019 (r504524) +++ head/sysutils/reed/files/patch-cfg.data Wed Jun 19 08:29:55 2019 (r504525) @@ -1,3 +1,5 @@ +$FreeBSD$ + --- cfg.data.orig 2002-11-09 00:59:08 UTC +++ cfg.data @@ -1,6 +1,6 @@ @@ -7,4 +9,5 @@ -LIBS="c curses" +LIBS="c ncurses" PM="Getopt/Std Text/Wrap" - HEADERS="sys/dir.h sys/stat.h ctype.h curses.h dirent.h getopt.h regex.h limits.h time.h unistd.h" +-HEADERS="sys/dir.h sys/stat.h ctype.h curses.h dirent.h getopt.h regex.h limits.h time.h unistd.h" ++HEADERS="sys/stat.h ctype.h ncurses.h dirent.h regex.h limits.h time.h unistd.h" Added: head/sysutils/reed/files/patch-reed.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/reed/files/patch-reed.c Wed Jun 19 08:29:55 2019 (r504525) @@ -0,0 +1,19 @@ +$FreeBSD$ + +--- reed.c.orig 2002-11-09 00:59:08 UTC ++++ reed.c +@@ -24,13 +24,12 @@ + + #include + #include +-#include ++#include + + #include + #include + #include + #include +-#include + #include + #include + #include From owner-svn-ports-all@freebsd.org Wed Jun 19 08:44:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6DC515AF232; Wed, 19 Jun 2019 08:44:20 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5615583769; Wed, 19 Jun 2019 08:44:20 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 29EC4220B2; Wed, 19 Jun 2019 08:44:20 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J8iJAr073353; Wed, 19 Jun 2019 08:44:19 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J8iJ4b073351; Wed, 19 Jun 2019 08:44:19 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906190844.x5J8iJ4b073351@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Wed, 19 Jun 2019 08:44:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504526 - head/devel/py-Jinja2 X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/devel/py-Jinja2 X-SVN-Commit-Revision: 504526 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5615583769 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 08:44:20 -0000 Author: kai Date: Wed Jun 19 08:44:19 2019 New Revision: 504526 URL: https://svnweb.freebsd.org/changeset/ports/504526 Log: devel/py-Jinja2: Update to 2.10.1 Changelog: https://github.com/pallets/jinja/blob/2.10.1/CHANGES.rst PR: 237424 Approved by: nivit (maintainer timeout) Modified: head/devel/py-Jinja2/Makefile head/devel/py-Jinja2/distinfo Modified: head/devel/py-Jinja2/Makefile ============================================================================== --- head/devel/py-Jinja2/Makefile Wed Jun 19 08:29:55 2019 (r504525) +++ head/devel/py-Jinja2/Makefile Wed Jun 19 08:44:19 2019 (r504526) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Jinja2 -PORTVERSION= 2.10 +PORTVERSION= 2.10.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-Jinja2/distinfo ============================================================================== --- head/devel/py-Jinja2/distinfo Wed Jun 19 08:29:55 2019 (r504525) +++ head/devel/py-Jinja2/distinfo Wed Jun 19 08:44:19 2019 (r504526) @@ -1,3 +1,3 @@ -TIMESTAMP = 1511578193 -SHA256 (Jinja2-2.10.tar.gz) = f84be1bb0040caca4cea721fcbbbbd61f9be9464ca236387158b0feea01914a4 -SIZE (Jinja2-2.10.tar.gz) = 261631 +TIMESTAMP = 1555711700 +SHA256 (Jinja2-2.10.1.tar.gz) = 065c4f02ebe7f7cf559e49ee5a95fb800a9e4528727aec6f24402a5374c65013 +SIZE (Jinja2-2.10.1.tar.gz) = 260956 From owner-svn-ports-all@freebsd.org Wed Jun 19 09:01:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4549F15AFA42; Wed, 19 Jun 2019 09:01:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DD16684085; Wed, 19 Jun 2019 09:01:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B8ED6222DD; Wed, 19 Jun 2019 09:01:58 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J91wC4082811; Wed, 19 Jun 2019 09:01:58 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J91wSD082810; Wed, 19 Jun 2019 09:01:58 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906190901.x5J91wSD082810@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 19 Jun 2019 09:01:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504527 - head/java/linux-oracle-jre10 X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/java/linux-oracle-jre10 X-SVN-Commit-Revision: 504527 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DD16684085 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 09:01:59 -0000 Author: amdmi3 Date: Wed Jun 19 09:01:58 2019 New Revision: 504527 URL: https://svnweb.freebsd.org/changeset/ports/504527 Log: - Update WWW Approved by: portmgr blanket Modified: head/java/linux-oracle-jre10/pkg-descr Modified: head/java/linux-oracle-jre10/pkg-descr ============================================================================== --- head/java/linux-oracle-jre10/pkg-descr Wed Jun 19 08:44:19 2019 (r504526) +++ head/java/linux-oracle-jre10/pkg-descr Wed Jun 19 09:01:58 2019 (r504527) @@ -1,3 +1,3 @@ The Oracle Java 10 Runtime Environment for Linux. -WWW: http://www.oracle.com/us/technologies/java/index.html +WWW: https://www.oracle.com/java/ From owner-svn-ports-all@freebsd.org Wed Jun 19 09:10:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 86A9815AFC67; Wed, 19 Jun 2019 09:10:39 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 229B2842B2; Wed, 19 Jun 2019 09:10:39 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0C2FC2241D; Wed, 19 Jun 2019 09:10:39 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J9Ac8l084058; Wed, 19 Jun 2019 09:10:38 GMT (envelope-from pizzamig@FreeBSD.org) Received: (from pizzamig@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J9AcE2084057; Wed, 19 Jun 2019 09:10:38 GMT (envelope-from pizzamig@FreeBSD.org) Message-Id: <201906190910.x5J9AcE2084057@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pizzamig set sender to pizzamig@FreeBSD.org using -f From: Luca Pizzamiglio Date: Wed, 19 Jun 2019 09:10:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504528 - head/benchmarks/phoronix-test-suite X-SVN-Group: ports-head X-SVN-Commit-Author: pizzamig X-SVN-Commit-Paths: head/benchmarks/phoronix-test-suite X-SVN-Commit-Revision: 504528 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 229B2842B2 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 09:10:39 -0000 Author: pizzamig Date: Wed Jun 19 09:10:38 2019 New Revision: 504528 URL: https://svnweb.freebsd.org/changeset/ports/504528 Log: benchmarks/phoronix-test-suite: Update to 8.8.1 Changes: https://github.com/phoronix-test-suite/phoronix-test-suite/releases Modified: head/benchmarks/phoronix-test-suite/Makefile head/benchmarks/phoronix-test-suite/distinfo Modified: head/benchmarks/phoronix-test-suite/Makefile ============================================================================== --- head/benchmarks/phoronix-test-suite/Makefile Wed Jun 19 09:01:58 2019 (r504527) +++ head/benchmarks/phoronix-test-suite/Makefile Wed Jun 19 09:10:38 2019 (r504528) @@ -3,7 +3,7 @@ PORTNAME= phoronix-test-suite DISTVERSIONPREFIX= v -DISTVERSION= 8.6.1 +DISTVERSION= 8.8.1 CATEGORIES= benchmarks PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX} Modified: head/benchmarks/phoronix-test-suite/distinfo ============================================================================== --- head/benchmarks/phoronix-test-suite/distinfo Wed Jun 19 09:01:58 2019 (r504527) +++ head/benchmarks/phoronix-test-suite/distinfo Wed Jun 19 09:10:38 2019 (r504528) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551089474 -SHA256 (phoronix-test-suite-phoronix-test-suite-v8.6.1_GH0.tar.gz) = 0e270f019c28d07132e848a29d8876ccf588d17c42639cef52332b8d3d015828 -SIZE (phoronix-test-suite-phoronix-test-suite-v8.6.1_GH0.tar.gz) = 876385 +TIMESTAMP = 1560783124 +SHA256 (phoronix-test-suite-phoronix-test-suite-v8.8.1_GH0.tar.gz) = d51a0749c8d93767686e36a93214d66cd1657c189b68fd61f4dff84fdce2fd5e +SIZE (phoronix-test-suite-phoronix-test-suite-v8.8.1_GH0.tar.gz) = 890982 From owner-svn-ports-all@freebsd.org Wed Jun 19 09:31:36 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AC1A715B1269; Wed, 19 Jun 2019 09:31:36 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 52F3784BA0; Wed, 19 Jun 2019 09:31:36 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2FCE4227D5; Wed, 19 Jun 2019 09:31:36 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J9VZZx095576; Wed, 19 Jun 2019 09:31:35 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J9VZ2N095574; Wed, 19 Jun 2019 09:31:35 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201906190931.x5J9VZ2N095574@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Wed, 19 Jun 2019 09:31:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504529 - head/devel/jenkins X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: head/devel/jenkins X-SVN-Commit-Revision: 504529 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 52F3784BA0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 09:31:36 -0000 Author: lwhsu Date: Wed Jun 19 09:31:35 2019 New Revision: 504529 URL: https://svnweb.freebsd.org/changeset/ports/504529 Log: - Update to 2.181 Sponsored by: The FreeBSD Foundation Modified: head/devel/jenkins/Makefile head/devel/jenkins/distinfo Modified: head/devel/jenkins/Makefile ============================================================================== --- head/devel/jenkins/Makefile Wed Jun 19 09:10:38 2019 (r504528) +++ head/devel/jenkins/Makefile Wed Jun 19 09:31:35 2019 (r504529) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= jenkins -PORTVERSION= 2.180 +PORTVERSION= 2.181 CATEGORIES= devel java MASTER_SITES= http://mirrors.jenkins-ci.org/war/${PORTVERSION}/ DISTNAME= jenkins Modified: head/devel/jenkins/distinfo ============================================================================== --- head/devel/jenkins/distinfo Wed Jun 19 09:10:38 2019 (r504528) +++ head/devel/jenkins/distinfo Wed Jun 19 09:31:35 2019 (r504529) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560300878 -SHA256 (jenkins/2.180/jenkins.war) = 72ddb57dc6a7e7174d89c8ea5e9dd5aa7fbf31304f44101acd238734bcc12da8 -SIZE (jenkins/2.180/jenkins.war) = 77259066 +TIMESTAMP = 1560932959 +SHA256 (jenkins/2.181/jenkins.war) = 90bc35938d30d30440fcd871317a6ec5f3aff9160f30660d63d7e22df1fb4d9b +SIZE (jenkins/2.181/jenkins.war) = 77436414 From owner-svn-ports-all@freebsd.org Wed Jun 19 09:34:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 358AF15B1333; Wed, 19 Jun 2019 09:34:03 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CC7F284D85; Wed, 19 Jun 2019 09:34:02 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A694522920; Wed, 19 Jun 2019 09:34:02 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J9Y2dN099722; Wed, 19 Jun 2019 09:34:02 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J9Y2ix099721; Wed, 19 Jun 2019 09:34:02 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906190934.x5J9Y2ix099721@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 19 Jun 2019 09:34:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504530 - in head/sysutils/eclat: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/sysutils/eclat: . files X-SVN-Commit-Revision: 504530 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CC7F284D85 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 09:34:03 -0000 Author: danfe Date: Wed Jun 19 09:34:02 2019 New Revision: 504530 URL: https://svnweb.freebsd.org/changeset/ports/504530 Log: - Add missing target dependency to unbreak parallel builds - Hook up the test suite (via our standard TEST_TARGET) - Amend categories (some EC2 ports are there) and the COMMENT Added: head/sysutils/eclat/files/patch-etc_Makefile.in (contents, props changed) Modified: head/sysutils/eclat/Makefile Modified: head/sysutils/eclat/Makefile ============================================================================== --- head/sysutils/eclat/Makefile Wed Jun 19 09:31:35 2019 (r504529) +++ head/sysutils/eclat/Makefile Wed Jun 19 09:34:02 2019 (r504530) @@ -3,12 +3,12 @@ PORTNAME= eclat PORTVERSION= 2.0 -CATEGORIES= sysutils +CATEGORIES= sysutils net MASTER_SITES= http://download.gnu.org.ua/pub/release/${PORTNAME}/ \ http://download.gnu.org.ua/pub/alpha/${PORTNAME}/ MAINTAINER= zeus@gnu.org.ua -COMMENT= EC2 command line administration tool +COMMENT= Amazon EC2 command line administration tool LICENSE= GPLv3 @@ -17,7 +17,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ USES= localbase tar:xz GNU_CONFIGURE= yes -MAKE_JOBS_UNSAFE= yes +TEST_TARGET= check PORTDOCS= AUTHORS ChangeLog NEWS README THANKS TODO Added: head/sysutils/eclat/files/patch-etc_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/eclat/files/patch-etc_Makefile.in Wed Jun 19 09:34:02 2019 (r504530) @@ -0,0 +1,16 @@ +--- etc/Makefile.in.orig 2018-03-16 05:03:09 UTC ++++ etc/Makefile.in +@@ -703,11 +703,11 @@ uninstall-am: uninstall-dist_pkgdataDATA uninstall-pkg + tags tags-am uninstall uninstall-am uninstall-dist_pkgdataDATA \ + uninstall-pkgdataDATA + +-@SPLIT_FORMATS_TRUE@.fln.forlan: ++@SPLIT_FORMATS_TRUE@.fln.forlan: flncat$(EXEEXT) + @SPLIT_FORMATS_TRUE@ $(AM_V_GEN)$(abs_builddir)/flncat $^ default.fln > $@ + @SPLIT_FORMATS_TRUE@lsattr.forlan: describe-instance-attribute.fln describe-snapshot-attribute.fln + @SPLIT_FORMATS_TRUE@sg.forlan: sg.fln describe-security-groups.fln +-@SPLIT_FORMATS_FALSE@eclat.forlan: $(FLNFILES) default.fln ++@SPLIT_FORMATS_FALSE@eclat.forlan: $(FLNFILES) default.fln flncat$(EXEEXT) + @SPLIT_FORMATS_FALSE@ $(AM_V_GEN)(cd $(srcdir); $(abs_builddir)/flncat $(FLNFILES) default.fln) > eclat.forlan + + .cfin.conf: From owner-svn-ports-all@freebsd.org Wed Jun 19 09:59:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DD00215B1C18; Wed, 19 Jun 2019 09:59:39 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8284985812; Wed, 19 Jun 2019 09:59:39 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 721CF22C87; Wed, 19 Jun 2019 09:59:39 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5J9xdqE010582; Wed, 19 Jun 2019 09:59:39 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5J9xdTL010581; Wed, 19 Jun 2019 09:59:39 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201906190959.x5J9xdTL010581@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 19 Jun 2019 09:59:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504531 - head/audio/schismtracker X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: head/audio/schismtracker X-SVN-Commit-Revision: 504531 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8284985812 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 09:59:40 -0000 Author: ehaupt Date: Wed Jun 19 09:59:39 2019 New Revision: 504531 URL: https://svnweb.freebsd.org/changeset/ports/504531 Log: Set PORTSCOUT to ignore latest version which only affects macOS. Modified: head/audio/schismtracker/Makefile Modified: head/audio/schismtracker/Makefile ============================================================================== --- head/audio/schismtracker/Makefile Wed Jun 19 09:34:02 2019 (r504530) +++ head/audio/schismtracker/Makefile Wed Jun 19 09:59:39 2019 (r504531) @@ -30,6 +30,9 @@ PLIST_FILES= bin/schismtracker man/man1/schismtracker. share/pixmaps/schism-icon-128.png \ share/pixmaps/schism-itf-icon-128.png +# changes only affect macOS +PORTSCOUT= ignore:20190614 + post-patch: @${REINPLACE_CMD} \ -e "s|^\(AC_INIT.*\)\[last_git_commit\]|\1${PORTVERSION}|" \ From owner-svn-ports-all@freebsd.org Wed Jun 19 10:03:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3338A15B302D; Wed, 19 Jun 2019 10:03:03 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CEE1F85C70; Wed, 19 Jun 2019 10:03:02 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 973408856; Wed, 19 Jun 2019 10:03:02 +0000 (UTC) Date: Wed, 19 Jun 2019 10:03:02 +0000 From: Alexey Dokuchaev To: Kubilay Kocak Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r499977 - head/devel/py-lazy Message-ID: <20190619100302.GA6605@FreeBSD.org> References: <201904250958.x3P9wgIN005143@repo.freebsd.org> <20190425100431.GA68459@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190425100431.GA68459@FreeBSD.org> User-Agent: Mutt/1.11.4 (2019-03-13) X-Rspamd-Queue-Id: CEE1F85C70 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.92 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_SHORT(-0.92)[-0.917,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 10:03:03 -0000 On Thu, Apr 25, 2019 at 10:04:31AM +0000, Alexey Dokuchaev wrote: > On Thu, Apr 25, 2019 at 09:58:42AM +0000, Kubilay Kocak wrote: > > New Revision: 499977 > > URL: https://svnweb.freebsd.org/changeset/ports/499977 > > > > Log: > > devel/py-lazy: Update to 1.4 > > > > No functional changes in this version > > Then why update the port? Thanks for not replying. Please see r504531 how to handle these cases. ./danfe From owner-svn-ports-all@freebsd.org Wed Jun 19 10:14:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D053415B360A; Wed, 19 Jun 2019 10:14:35 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 756158628E; Wed, 19 Jun 2019 10:14:35 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 50F0722FCD; Wed, 19 Jun 2019 10:14:35 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JAEZVL020988; Wed, 19 Jun 2019 10:14:35 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JAEZht020987; Wed, 19 Jun 2019 10:14:35 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201906191014.x5JAEZht020987@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 19 Jun 2019 10:14:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504532 - head/audio/fasttracker2 X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: head/audio/fasttracker2 X-SVN-Commit-Revision: 504532 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 756158628E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 10:14:36 -0000 Author: ehaupt Date: Wed Jun 19 10:14:34 2019 New Revision: 504532 URL: https://svnweb.freebsd.org/changeset/ports/504532 Log: Update to 0.1.b159 Modified: head/audio/fasttracker2/Makefile head/audio/fasttracker2/distinfo Modified: head/audio/fasttracker2/Makefile ============================================================================== --- head/audio/fasttracker2/Makefile Wed Jun 19 09:59:39 2019 (r504531) +++ head/audio/fasttracker2/Makefile Wed Jun 19 10:14:34 2019 (r504532) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fasttracker2 -DISTVERSION= 0.1-b157 +DISTVERSION= 0.1-b159 CATEGORIES= audio MASTER_SITES= https://16-bits.org/ \ LOCAL/ehaupt Modified: head/audio/fasttracker2/distinfo ============================================================================== --- head/audio/fasttracker2/distinfo Wed Jun 19 09:59:39 2019 (r504531) +++ head/audio/fasttracker2/distinfo Wed Jun 19 10:14:34 2019 (r504532) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559060366 -SHA256 (ft2clone-b157-code.zip) = a5dca734a2c8b3849eb6fbe1b9854d88a9541852d7b2c623b8e7b0486bfae296 -SIZE (ft2clone-b157-code.zip) = 3957359 +TIMESTAMP = 1560939017 +SHA256 (ft2clone-b159-code.zip) = 34d934980fc07967785bf3d24c68b91ffa4d2f349d36aa7a4a29b0839620f2b9 +SIZE (ft2clone-b159-code.zip) = 3957477 From owner-svn-ports-all@freebsd.org Wed Jun 19 10:16:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A784515B3678; Wed, 19 Jun 2019 10:16:49 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4A4538639E; Wed, 19 Jun 2019 10:16:49 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2531A22FD0; Wed, 19 Jun 2019 10:16:49 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JAGnEF021213; Wed, 19 Jun 2019 10:16:49 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JAGmXA021210; Wed, 19 Jun 2019 10:16:48 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906191016.x5JAGmXA021210@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 19 Jun 2019 10:16:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504533 - in head/cad/gplcver: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/cad/gplcver: . files X-SVN-Commit-Revision: 504533 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4A4538639E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.955,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 10:16:50 -0000 Author: danfe Date: Wed Jun 19 10:16:48 2019 New Revision: 504533 URL: https://svnweb.freebsd.org/changeset/ports/504533 Log: - Fix the checks to avoid using `sys/dir.h' and thus undeprecate - Define LICENSE (GPLv2) and install supplied documentation files Added: head/cad/gplcver/files/patch-src_v__fx.c (contents, props changed) Modified: head/cad/gplcver/Makefile head/cad/gplcver/files/patch-src-v_src3.c Modified: head/cad/gplcver/Makefile ============================================================================== --- head/cad/gplcver/Makefile Wed Jun 19 10:14:34 2019 (r504532) +++ head/cad/gplcver/Makefile Wed Jun 19 10:16:48 2019 (r504533) @@ -10,8 +10,7 @@ DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E} MAINTAINER= ports@FreeBSD.org COMMENT= Verilog HDL simulator -DEPRECATED= Abandonware using sys/dir.h -EXPIRATION_DATE= 2019-07-12 +LICENSE= GPLv2 USES= tar:bzip2 gmake @@ -19,8 +18,18 @@ BUILD_WRKSRC= ${WRKSRC}/src MAKEFILE= makefile.freebsd PLIST_FILES= bin/cver +PORTDOCS= * +OPTIONS_DEFINE= DOCS + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/bin/cver ${STAGEDIR}${PREFIX}/bin + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/doc/* ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/Changelog \ + ${WRKSRC}/NEW.CVER.2001.RELEASE.NOTES \ + ${WRKSRC}/OUR_PHILOSOPHY ${STAGEDIR}${DOCSDIR} .include Modified: head/cad/gplcver/files/patch-src-v_src3.c ============================================================================== --- head/cad/gplcver/files/patch-src-v_src3.c Wed Jun 19 10:14:34 2019 (r504532) +++ head/cad/gplcver/files/patch-src-v_src3.c Wed Jun 19 10:16:48 2019 (r504533) @@ -1,6 +1,15 @@ ---- src/v_src3.c.orig Fri Jan 20 09:40:09 2006 -+++ src/v_src3.c Fri Jan 20 09:41:23 2006 -@@ -49,7 +49,7 @@ +--- src/v_src3.c.orig 2007-05-30 15:25:49 UTC ++++ src/v_src3.c +@@ -40,7 +40,7 @@ + #include + #endif + +-#if defined(__CYGWIN32__) || defined(__SVR4) || defined(__hpux) ++#if defined(__CYGWIN32__) || defined(__SVR4) || defined(__hpux) || defined(__FreeBSD__) + #include + #else + #include +@@ -51,7 +51,7 @@ #endif /* REMOVEME - no longer supporting SunOS - maybe needed for hpux? */ Added: head/cad/gplcver/files/patch-src_v__fx.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/gplcver/files/patch-src_v__fx.c Wed Jun 19 10:16:48 2019 (r504533) @@ -0,0 +1,20 @@ +--- src/v_fx.c.orig 2007-05-30 15:24:38 UTC ++++ src/v_fx.c +@@ -37,7 +37,7 @@ + + #include + +-#if defined(__SVR4) || defined(__hpux) || defined(__CYGWIN32__) ++#if defined(__SVR4) || defined(__hpux) || defined(__CYGWIN32__) || defined(__FreeBSD__) + #include + #else + #include +@@ -798,7 +798,7 @@ static void bld_ylb_dirfiles(struct vylib_t *vyp) + register int32 last_fi; + register int32 numdfils, siz_mydir, bytlen, obytlen; + DIR *dirp; +-#if defined(__SVR4) || defined(__hpux) || defined(__CYGWIN32__) ++#if defined(__SVR4) || defined(__hpux) || defined(__CYGWIN32__) || defined(__FreeBSD__) + struct dirent *dp; + #else + /* all BSD cases and special case interface for non unices */ From owner-svn-ports-all@freebsd.org Wed Jun 19 10:34:52 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E698015B3B07; Wed, 19 Jun 2019 10:34:51 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7D79B86AE3; Wed, 19 Jun 2019 10:34:51 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 46E162334B; Wed, 19 Jun 2019 10:34:51 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JAYpmP031412; Wed, 19 Jun 2019 10:34:51 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JAYoLg031411; Wed, 19 Jun 2019 10:34:50 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906191034.x5JAYoLg031411@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 19 Jun 2019 10:34:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504534 - head/net-im/qTox X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/net-im/qTox X-SVN-Commit-Revision: 504534 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7D79B86AE3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 10:34:52 -0000 Author: yuri Date: Wed Jun 19 10:34:50 2019 New Revision: 504534 URL: https://svnweb.freebsd.org/changeset/ports/504534 Log: net-im/qTox: Update 1.16.3-363 -> 1.16.3-467 Modified: head/net-im/qTox/Makefile head/net-im/qTox/distinfo Modified: head/net-im/qTox/Makefile ============================================================================== --- head/net-im/qTox/Makefile Wed Jun 19 10:16:48 2019 (r504533) +++ head/net-im/qTox/Makefile Wed Jun 19 10:34:50 2019 (r504534) @@ -3,8 +3,8 @@ PORTNAME= qTox DISTVERSIONPREFIX= v -DISTVERSION= 1.16.3-363 -DISTVERSIONSUFFIX= -gbef9d4b7 +DISTVERSION= 1.16.3-467 +DISTVERSIONSUFFIX= -g678fc51c CATEGORIES= net-im net-p2p MAINTAINER= yuri@FreeBSD.org Modified: head/net-im/qTox/distinfo ============================================================================== --- head/net-im/qTox/distinfo Wed Jun 19 10:16:48 2019 (r504533) +++ head/net-im/qTox/distinfo Wed Jun 19 10:34:50 2019 (r504534) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553998466 -SHA256 (qTox-qTox-v1.16.3-363-gbef9d4b7_GH0.tar.gz) = 661aa091776c998e619316d4a0d755408fb9a5d063b5e0ab3cc7a9e6fb8a50e3 -SIZE (qTox-qTox-v1.16.3-363-gbef9d4b7_GH0.tar.gz) = 4695418 +TIMESTAMP = 1560939683 +SHA256 (qTox-qTox-v1.16.3-467-g678fc51c_GH0.tar.gz) = 373b8daddd0c5942bbf4a242d94964795b57cc8894e2c2205a5508c9d784dd67 +SIZE (qTox-qTox-v1.16.3-467-g678fc51c_GH0.tar.gz) = 4759288 From owner-svn-ports-all@freebsd.org Wed Jun 19 10:48:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CB85415B3DC7; Wed, 19 Jun 2019 10:48:31 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6704F86F25; Wed, 19 Jun 2019 10:48:31 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3BBCB234EC; Wed, 19 Jun 2019 10:48:31 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JAmVXW036964; Wed, 19 Jun 2019 10:48:31 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JAmUFl036963; Wed, 19 Jun 2019 10:48:30 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201906191048.x5JAmUFl036963@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Wed, 19 Jun 2019 10:48:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504535 - head/lang/gcc9-devel X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: head/lang/gcc9-devel X-SVN-Commit-Revision: 504535 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6704F86F25 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 10:48:32 -0000 Author: gerald Date: Wed Jun 19 10:48:30 2019 New Revision: 504535 URL: https://svnweb.freebsd.org/changeset/ports/504535 Log: Update to the 20180615 snapshot of GCC 9.1.1. Modified: head/lang/gcc9-devel/Makefile head/lang/gcc9-devel/distinfo Modified: head/lang/gcc9-devel/Makefile ============================================================================== --- head/lang/gcc9-devel/Makefile Wed Jun 19 10:34:50 2019 (r504534) +++ head/lang/gcc9-devel/Makefile Wed Jun 19 10:48:30 2019 (r504535) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 9.1.1.s20190608 +PORTVERSION= 9.1.1.s20190615 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel Modified: head/lang/gcc9-devel/distinfo ============================================================================== --- head/lang/gcc9-devel/distinfo Wed Jun 19 10:34:50 2019 (r504534) +++ head/lang/gcc9-devel/distinfo Wed Jun 19 10:48:30 2019 (r504535) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560091594 -SHA256 (gcc-9-20190608.tar.xz) = bb0e7889daabc8ee810617c0ffab18b8eab8c05cb6e3fc02327e3d6f7a97eeb2 -SIZE (gcc-9-20190608.tar.xz) = 68762748 +TIMESTAMP = 1560670458 +SHA256 (gcc-9-20190615.tar.xz) = 8e3547d676bb57c4a8b22b81273daab79cd927683dd27f2c4435a17c768bcb66 +SIZE (gcc-9-20190615.tar.xz) = 68766440 From owner-svn-ports-all@freebsd.org Wed Jun 19 11:08:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57A8C15B42A4; Wed, 19 Jun 2019 11:08:49 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EDA7D8767B; Wed, 19 Jun 2019 11:08:48 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9266723847; Wed, 19 Jun 2019 11:08:48 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JB8mjD047471; Wed, 19 Jun 2019 11:08:48 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JB8mCo047470; Wed, 19 Jun 2019 11:08:48 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201906191108.x5JB8mCo047470@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 19 Jun 2019 11:08:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504536 - head/x11-fm/xfe X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: head/x11-fm/xfe X-SVN-Commit-Revision: 504536 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EDA7D8767B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 11:08:49 -0000 Author: ehaupt Date: Wed Jun 19 11:08:47 2019 New Revision: 504536 URL: https://svnweb.freebsd.org/changeset/ports/504536 Log: - Update to 1.43.2 - Pacify portlint Modified: head/x11-fm/xfe/Makefile head/x11-fm/xfe/distinfo Modified: head/x11-fm/xfe/Makefile ============================================================================== --- head/x11-fm/xfe/Makefile Wed Jun 19 10:48:30 2019 (r504535) +++ head/x11-fm/xfe/Makefile Wed Jun 19 11:08:47 2019 (r504536) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= xfe -PORTVERSION= 1.43.1 +PORTVERSION= 1.43.2 CATEGORIES= x11-fm MASTER_SITES= SF @@ -21,6 +21,7 @@ LIB_DEPENDS= libFOX-1.6.so:x11-toolkits/fox16 \ USES= desktop-file-utils gmake localbase pathfix pkgconfig gnome USE_XORG= x11 xcb xft xrandr xrender USE_GNOME= intltool + GNU_CONFIGURE= yes LDFLAGS+= -pthread Modified: head/x11-fm/xfe/distinfo ============================================================================== --- head/x11-fm/xfe/distinfo Wed Jun 19 10:48:30 2019 (r504535) +++ head/x11-fm/xfe/distinfo Wed Jun 19 11:08:47 2019 (r504536) @@ -1,3 +1,3 @@ -TIMESTAMP = 1537174368 -SHA256 (xfe-1.43.1.tar.gz) = c26329af19ab3713408cbe43517c0e2b96fd748cac3a80825d7125acb80ec252 -SIZE (xfe-1.43.1.tar.gz) = 2776237 +TIMESTAMP = 1560938328 +SHA256 (xfe-1.43.2.tar.gz) = fa5f38fcac64b91eb5d615620a9607b7e6f8675c4f19f30473798b2acb0c85ba +SIZE (xfe-1.43.2.tar.gz) = 2834576 From owner-svn-ports-all@freebsd.org Wed Jun 19 11:57:36 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DECEF15B5D09; Wed, 19 Jun 2019 11:57:36 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 862CD894A6; Wed, 19 Jun 2019 11:57:36 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 612FF240B2; Wed, 19 Jun 2019 11:57:36 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JBva5d073448; Wed, 19 Jun 2019 11:57:36 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JBvan1073447; Wed, 19 Jun 2019 11:57:36 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201906191157.x5JBvan1073447@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Wed, 19 Jun 2019 11:57:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504537 - head/databases/cego X-SVN-Group: ports-head X-SVN-Commit-Author: pi X-SVN-Commit-Paths: head/databases/cego X-SVN-Commit-Revision: 504537 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 862CD894A6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 11:57:37 -0000 Author: pi Date: Wed Jun 19 11:57:35 2019 New Revision: 504537 URL: https://svnweb.freebsd.org/changeset/ports/504537 Log: databases/cego: upgrade 2.44.13 -> 2.44.14 - Some improved exception handling in CegoTableManager::checkIntegrity ( more detail information about violated object ) - Code cleanup CegoTableManager, drop/create/alter operations inside a transaction no more allowed Submitted by: Bjoern Lemke Modified: head/databases/cego/Makefile head/databases/cego/distinfo Modified: head/databases/cego/Makefile ============================================================================== --- head/databases/cego/Makefile Wed Jun 19 11:08:47 2019 (r504536) +++ head/databases/cego/Makefile Wed Jun 19 11:57:35 2019 (r504537) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cego -PORTVERSION= 2.44.13 +PORTVERSION= 2.44.14 CATEGORIES= databases MASTER_SITES= http://www.lemke-it.com/ Modified: head/databases/cego/distinfo ============================================================================== --- head/databases/cego/distinfo Wed Jun 19 11:08:47 2019 (r504536) +++ head/databases/cego/distinfo Wed Jun 19 11:57:35 2019 (r504537) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557731766 -SHA256 (cego-2.44.13.tar.gz) = e103fb02332b3a7d06ad23c62dbbcca60fe130ba2d093eeebee6783381763f74 -SIZE (cego-2.44.13.tar.gz) = 3145617 +TIMESTAMP = 1560945238 +SHA256 (cego-2.44.14.tar.gz) = 778f6094e4f72f4afca7d44e7bb6b4360a3e1b60ef1cfd23d6eca8eca61c925e +SIZE (cego-2.44.14.tar.gz) = 3140497 From owner-svn-ports-all@freebsd.org Wed Jun 19 12:17:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7D0EC15B6C95; Wed, 19 Jun 2019 12:17:46 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1FD048A6C8; Wed, 19 Jun 2019 12:17:46 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0E9E72441E; Wed, 19 Jun 2019 12:17:46 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JCHj1K084074; Wed, 19 Jun 2019 12:17:45 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JCHjDC084073; Wed, 19 Jun 2019 12:17:45 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201906191217.x5JCHjDC084073@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Wed, 19 Jun 2019 12:17:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504538 - head/net/asterisk15 X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: head/net/asterisk15 X-SVN-Commit-Revision: 504538 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1FD048A6C8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 12:17:46 -0000 Author: madpilot Date: Wed Jun 19 12:17:45 2019 New Revision: 504538 URL: https://svnweb.freebsd.org/changeset/ports/504538 Log: Avoid overriding previous LDFLAGS values Modified: head/net/asterisk15/Makefile Modified: head/net/asterisk15/Makefile ============================================================================== --- head/net/asterisk15/Makefile Wed Jun 19 11:57:35 2019 (r504537) +++ head/net/asterisk15/Makefile Wed Jun 19 12:17:45 2019 (r504538) @@ -48,7 +48,7 @@ CPE_VENDOR= digium SHEBANG_FILES= agi/agi-test.agi \ agi/jukebox.agi \ contrib/scripts/astversion -LDFLAGS= -L. +LDFLAGS+= -L. MAKE_ENV= PTHREAD_LIBS="-lpthread" \ MKDIR="${MKDIR}" \ PWLIBDIR=${LOCALBASE}/share/pwlib \ From owner-svn-ports-all@freebsd.org Wed Jun 19 12:20:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CCBB215B6D9A; Wed, 19 Jun 2019 12:20:00 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 74FB48A868; Wed, 19 Jun 2019 12:20:00 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4CE2124422; Wed, 19 Jun 2019 12:20:00 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JCK0HO084324; Wed, 19 Jun 2019 12:20:00 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JCJxCE084289; Wed, 19 Jun 2019 12:19:59 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201906191219.x5JCJxCE084289@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Wed, 19 Jun 2019 12:19:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504539 - head/net/mobile-broadband-provider-info X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: head/net/mobile-broadband-provider-info X-SVN-Commit-Revision: 504539 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 74FB48A868 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 12:20:01 -0000 Author: garga Date: Wed Jun 19 12:19:59 2019 New Revision: 504539 URL: https://svnweb.freebsd.org/changeset/ports/504539 Log: net/mobile-broadband-provider-info: Update to 20190618 Sponsored by: Rubicon Communications, LLC (Netgate) Modified: head/net/mobile-broadband-provider-info/Makefile head/net/mobile-broadband-provider-info/distinfo Modified: head/net/mobile-broadband-provider-info/Makefile ============================================================================== --- head/net/mobile-broadband-provider-info/Makefile Wed Jun 19 12:17:45 2019 (r504538) +++ head/net/mobile-broadband-provider-info/Makefile Wed Jun 19 12:19:59 2019 (r504539) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mobile-broadband-provider-info -PORTVERSION= 20190116 +PORTVERSION= 20190618 CATEGORIES= net gnome MASTER_SITES= GNOME @@ -9,11 +9,14 @@ MAINTAINER= garga@FreeBSD.org COMMENT= Service mobile broadband provider database LICENSE= PD +LICENSE_FILE= ${WRKSRC}/COPYING -USES= autoreconf pathfix tar:xz +USES= autoreconf gmake pathfix tar:xz + GNU_CONFIGURE= yes -PLIST_FILES= ${DATADIR}/serviceproviders.2.dtd \ +PLIST_FILES= ${DATADIR}/apns-conf.xml \ + ${DATADIR}/serviceproviders.2.dtd \ ${DATADIR}/serviceproviders.xml \ libdata/pkgconfig/${PORTNAME}.pc Modified: head/net/mobile-broadband-provider-info/distinfo ============================================================================== --- head/net/mobile-broadband-provider-info/distinfo Wed Jun 19 12:17:45 2019 (r504538) +++ head/net/mobile-broadband-provider-info/distinfo Wed Jun 19 12:19:59 2019 (r504539) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553256165 -SHA256 (mobile-broadband-provider-info-20190116.tar.xz) = 2cba10f82b8e6aec46b871c1f7d20086ecc17e1168f18e588a6a37770fa3c59b -SIZE (mobile-broadband-provider-info-20190116.tar.xz) = 85904 +TIMESTAMP = 1560945871 +SHA256 (mobile-broadband-provider-info-20190618.tar.xz) = c22d64a565d1975b9eecb6ed2eeaef18634bc6f385c8137d05e845d8fb3cce5b +SIZE (mobile-broadband-provider-info-20190618.tar.xz) = 82640 From owner-svn-ports-all@freebsd.org Wed Jun 19 12:23:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F29E15B7353; Wed, 19 Jun 2019 12:23:23 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0198C8AD4F; Wed, 19 Jun 2019 12:23:23 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CECDF245C4; Wed, 19 Jun 2019 12:23:22 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JCNMCX089283; Wed, 19 Jun 2019 12:23:22 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JCNMVH089282; Wed, 19 Jun 2019 12:23:22 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906191223.x5JCNMVH089282@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 19 Jun 2019 12:23:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504540 - head/textproc/pdfgrep X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/textproc/pdfgrep X-SVN-Commit-Revision: 504540 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0198C8AD4F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 12:23:23 -0000 Author: linimon Date: Wed Jun 19 12:23:22 2019 New Revision: 504540 URL: https://svnweb.freebsd.org/changeset/ports/504540 Log: Add compiler:c11 to USES to unbreak build on powerpc64: pdfgrep.cc: undefined reference to poppler::set_debug_error_function Approved by: portmgr (tier-2 blanket) Modified: head/textproc/pdfgrep/Makefile Modified: head/textproc/pdfgrep/Makefile ============================================================================== --- head/textproc/pdfgrep/Makefile Wed Jun 19 12:19:59 2019 (r504539) +++ head/textproc/pdfgrep/Makefile Wed Jun 19 12:23:22 2019 (r504540) @@ -17,10 +17,8 @@ LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libpoppler.so:graphics/poppler \ libgpg-error.so:security/libgpg-error -BROKEN_powerpc64= fails to link: pdfgrep.cc: undefined reference to poppler::set_debug_error_function - GNU_CONFIGURE= yes -USES= pkgconfig +USES= compiler:c11 pkgconfig PLIST_FILES= bin/pdfgrep man/man1/pdfgrep.1.gz \ share/bash-completion/completions/pdfgrep \ From owner-svn-ports-all@freebsd.org Wed Jun 19 12:27:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A301915B7401; Wed, 19 Jun 2019 12:27:46 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 474768AEE9; Wed, 19 Jun 2019 12:27:46 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 22D06245DF; Wed, 19 Jun 2019 12:27:46 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JCRkul089551; Wed, 19 Jun 2019 12:27:46 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JCRj8J089550; Wed, 19 Jun 2019 12:27:46 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906191227.x5JCRj8J089550@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 19 Jun 2019 12:27:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504541 - head/math/libmesh X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/math/libmesh X-SVN-Commit-Revision: 504541 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 474768AEE9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 12:27:46 -0000 Author: linimon Date: Wed Jun 19 12:27:45 2019 New Revision: 504541 URL: https://svnweb.freebsd.org/changeset/ports/504541 Log: Add compiler:c++11-lang to unbreak build on powerpc64: libcontrib_opt.a: relocation truncated to fit: R_PPC64_GOT_TLSLD16 against .LANCHOR1 Approved by: portmgr (tier-2 blanket) Modified: head/math/libmesh/Makefile Modified: head/math/libmesh/Makefile ============================================================================== --- head/math/libmesh/Makefile Wed Jun 19 12:23:22 2019 (r504540) +++ head/math/libmesh/Makefile Wed Jun 19 12:27:45 2019 (r504541) @@ -12,11 +12,9 @@ COMMENT= Numerical simulation of partial differential LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= fails to link: libcontrib_opt.a: relocation truncated to fit: R_PPC64_GOT_TLSLD16 against .LANCHOR1 - LIB_DEPENDS= libboost_system.so:devel/boost-libs -USES= autoreconf eigen:3 gmake libtool +USES= autoreconf compiler:c++11-lang eigen:3 gmake libtool GNU_CONFIGURE= yes USE_GITHUB= yes GH_ACCOUNT= libMesh From owner-svn-ports-all@freebsd.org Wed Jun 19 12:30:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3130415B7658; Wed, 19 Jun 2019 12:30:47 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CC95F8B0EE; Wed, 19 Jun 2019 12:30:46 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A7E7724603; Wed, 19 Jun 2019 12:30:46 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JCUk8J089791; Wed, 19 Jun 2019 12:30:46 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JCUkTV089790; Wed, 19 Jun 2019 12:30:46 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906191230.x5JCUkTV089790@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 19 Jun 2019 12:30:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504542 - head/math/drgeo X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/math/drgeo X-SVN-Commit-Revision: 504542 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CC95F8B0EE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 12:30:47 -0000 Author: linimon Date: Wed Jun 19 12:30:46 2019 New Revision: 504542 URL: https://svnweb.freebsd.org/changeset/ports/504542 Log: Add compiler:c++11-lang to unbreak build on powerpc64: ./geo/libgeo.a: multiple definition of drgeoDialogData Approved by: portmgr (tier-2 blanket) Modified: head/math/drgeo/Makefile Modified: head/math/drgeo/Makefile ============================================================================== --- head/math/drgeo/Makefile Wed Jun 19 12:27:45 2019 (r504541) +++ head/math/drgeo/Makefile Wed Jun 19 12:30:46 2019 (r504542) @@ -13,11 +13,9 @@ COMMENT= GTK interactive geometry software LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= fails to compile: ./geo/libgeo.a: multiple definition of drgeoDialogData - LIB_DEPENDS= libguile.so:lang/guile -USES= gettext gmake localbase:ldflags pkgconfig pathfix +USES= compiler:c++11-lang gettext gmake localbase:ldflags pkgconfig pathfix GNU_CONFIGURE= yes USE_GNOME= gnomeprefix intlhack libglade2 From owner-svn-ports-all@freebsd.org Wed Jun 19 12:33:14 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2F37A15B7886; Wed, 19 Jun 2019 12:33:14 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BFBCA8B4EE; Wed, 19 Jun 2019 12:33:13 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AAB9A24790; Wed, 19 Jun 2019 12:33:13 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JCXDYr094858; Wed, 19 Jun 2019 12:33:13 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JCXD8a094857; Wed, 19 Jun 2019 12:33:13 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906191233.x5JCXD8a094857@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 19 Jun 2019 12:33:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504543 - head/emulators/snes9x-gtk X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/emulators/snes9x-gtk X-SVN-Commit-Revision: 504543 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BFBCA8B4EE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 12:33:14 -0000 Author: linimon Date: Wed Jun 19 12:33:13 2019 New Revision: 504543 URL: https://svnweb.freebsd.org/changeset/ports/504543 Log: Add compiler:c11 to USES to unbreak build on powerpc64: C compiler cannot create executables Approved by: portmgr (tier-2 blanket) Modified: head/emulators/snes9x-gtk/Makefile Modified: head/emulators/snes9x-gtk/Makefile ============================================================================== --- head/emulators/snes9x-gtk/Makefile Wed Jun 19 12:30:46 2019 (r504542) +++ head/emulators/snes9x-gtk/Makefile Wed Jun 19 12:33:13 2019 (r504543) @@ -17,12 +17,10 @@ LICENSE_PERMS= dist-mirror pkg-mirror auto-accept LIB_DEPENDS= libpng.so:graphics/png -BROKEN_powerpc64= fails to configure: C compiler cannot create executables - USE_GITHUB= yes GH_ACCOUNT= snes9xgit -USES= autoreconf desktop-file-utils gettext gmake \ +USES= autoreconf compiler:c11 desktop-file-utils gettext gmake \ localbase perl5 pkgconfig tar:bzip2 USE_GNOME= cairo gdkpixbuf2 gtk20 intltool libxml2 USE_SDL= sdl2 From owner-svn-ports-all@freebsd.org Wed Jun 19 12:41:55 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 08A0215B7A54; Wed, 19 Jun 2019 12:41:55 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A44F08B7AA; Wed, 19 Jun 2019 12:41:54 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7F9432491D; Wed, 19 Jun 2019 12:41:54 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JCfsIn096865; Wed, 19 Jun 2019 12:41:54 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JCfsFw096864; Wed, 19 Jun 2019 12:41:54 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906191241.x5JCfsFw096864@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 19 Jun 2019 12:41:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504544 - head/databases/xtrabackup X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/databases/xtrabackup X-SVN-Commit-Revision: 504544 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A44F08B7AA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 12:41:55 -0000 Author: linimon Date: Wed Jun 19 12:41:54 2019 New Revision: 504544 URL: https://svnweb.freebsd.org/changeset/ports/504544 Log: Add compiler:c++11-lang to USES to unbreak build on powerpc64: ld: final link failed: Bad value While here, pacify portlint by also alpha sorting USES. Approved by: portmgr (tier-2 blanket) Modified: head/databases/xtrabackup/Makefile Modified: head/databases/xtrabackup/Makefile ============================================================================== --- head/databases/xtrabackup/Makefile Wed Jun 19 12:33:13 2019 (r504543) +++ head/databases/xtrabackup/Makefile Wed Jun 19 12:41:54 2019 (r504544) @@ -18,7 +18,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_armv6= fails to compile: cannot combine with previous 'type-name' declaration specifier BROKEN_armv7= fails to compile: cannot combine with previous 'type-name' declaration specifier BROKEN_mips64= fails to compile: 'fpsetmask' was not declared in this scope -BROKEN_powerpc64= fails to link: ld: final link failed: Bad value # quilt is required by build.sh BUILD_DEPENDS= bash:shells/bash \ @@ -30,7 +29,8 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ RUN_DEPENDS= qpress:archivers/qpress # autotool is in use for 5.1 builds -USES= alias autoreconf:build bison cpe gettext cmake:noninja libtool perl5 shebangfix +USES= alias autoreconf:build bison cmake:noninja compiler:c++11-lang \ + cpe gettext libtool perl5 shebangfix CPE_VENDOR= percona SHEBANG_FILES= storage/innobase/xtrabackup/xbcloud_osenv.sh CMAKE_ARGS= -DWITH_BOOST=${WRKDIR}/boost_1_59_0 From owner-svn-ports-all@freebsd.org Wed Jun 19 13:17:55 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3C42E15B85AE; Wed, 19 Jun 2019 13:17:55 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D6C168C633; Wed, 19 Jun 2019 13:17:54 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B2BF224E52; Wed, 19 Jun 2019 13:17:54 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JDHsdj016213; Wed, 19 Jun 2019 13:17:54 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JDHsmq016212; Wed, 19 Jun 2019 13:17:54 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906191317.x5JDHsmq016212@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 19 Jun 2019 13:17:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504545 - head/sysutils/eclat X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/sysutils/eclat X-SVN-Commit-Revision: 504545 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D6C168C633 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 13:17:55 -0000 Author: danfe Date: Wed Jun 19 13:17:53 2019 New Revision: 504545 URL: https://svnweb.freebsd.org/changeset/ports/504545 Log: Annotate configuration file as @sample so it would be preserved during the package update or uninstall. Modified: head/sysutils/eclat/Makefile head/sysutils/eclat/pkg-plist Modified: head/sysutils/eclat/Makefile ============================================================================== --- head/sysutils/eclat/Makefile Wed Jun 19 12:41:54 2019 (r504544) +++ head/sysutils/eclat/Makefile Wed Jun 19 13:17:53 2019 (r504545) @@ -3,6 +3,7 @@ PORTNAME= eclat PORTVERSION= 2.0 +PORTREVISION= 1 CATEGORIES= sysutils net MASTER_SITES= http://download.gnu.org.ua/pub/release/${PORTNAME}/ \ http://download.gnu.org.ua/pub/alpha/${PORTNAME}/ @@ -29,6 +30,10 @@ GDBM_CONFIGURE_WITH= gdbm LDAP_USE= OPENLDAP=yes LDAP_CONFIGURE_WITH= ldap + +post-patch: + @${REINPLACE_CMD} -e '/DESTDIR/s,eclat\.conf,&.sample,' \ + ${WRKSRC}/etc/Makefile.in post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/sysutils/eclat/pkg-plist ============================================================================== --- head/sysutils/eclat/pkg-plist Wed Jun 19 12:41:54 2019 (r504544) +++ head/sysutils/eclat/pkg-plist Wed Jun 19 13:17:53 2019 (r504545) @@ -1,6 +1,6 @@ bin/eclat bin/ispeek -etc/eclat.conf +@sample etc/eclat.conf.sample man/man1/eclat-assocaddr.1.gz man/man1/eclat-atvol.1.gz man/man1/eclat-clrsattr.1.gz From owner-svn-ports-all@freebsd.org Wed Jun 19 13:22:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC55115B8867; Wed, 19 Jun 2019 13:22:03 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9177A8C9D2; Wed, 19 Jun 2019 13:22:03 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6E38724FD4; Wed, 19 Jun 2019 13:22:03 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JDM3Sa020584; Wed, 19 Jun 2019 13:22:03 GMT (envelope-from ler@FreeBSD.org) Received: (from ler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JDM3qf020582; Wed, 19 Jun 2019 13:22:03 GMT (envelope-from ler@FreeBSD.org) Message-Id: <201906191322.x5JDM3qf020582@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ler set sender to ler@FreeBSD.org using -f From: Larry Rosenman Date: Wed, 19 Jun 2019 13:22:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504546 - head/devel/cdecl X-SVN-Group: ports-head X-SVN-Commit-Author: ler X-SVN-Commit-Paths: head/devel/cdecl X-SVN-Commit-Revision: 504546 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9177A8C9D2 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 13:22:04 -0000 Author: ler Date: Wed Jun 19 13:22:02 2019 New Revision: 504546 URL: https://svnweb.freebsd.org/changeset/ports/504546 Log: devel/cdecl: update to 6.4. Added support for user-defined conversion operators Now supports C++ user-defined conversion operators. cdecl> explain operator int const*() const declare constant user-defined conversion operator returning pointer to constant int Added support for alignment specifiers Now supports C11 _Alignas and C++11 alignas specifiers. cdecl> explain _Alignas(64) int x declare x as int aligned as 16 bytes Added more predefined typedefs More predefined typedefs were added: fd_set, nfds_t, and sigset_t. Reported by: portscout Modified: head/devel/cdecl/Makefile head/devel/cdecl/distinfo Modified: head/devel/cdecl/Makefile ============================================================================== --- head/devel/cdecl/Makefile Wed Jun 19 13:17:53 2019 (r504545) +++ head/devel/cdecl/Makefile Wed Jun 19 13:22:02 2019 (r504546) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cdecl -PORTVERSION= 6.3.2 +PORTVERSION= 6.4 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= devel Modified: head/devel/cdecl/distinfo ============================================================================== --- head/devel/cdecl/distinfo Wed Jun 19 13:17:53 2019 (r504545) +++ head/devel/cdecl/distinfo Wed Jun 19 13:22:02 2019 (r504546) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558632822 -SHA256 (paul-j-lucas-cdecl-cdecl-6.3.2_GH0.tar.gz) = b6de64cf6bf55891ee9ccbb4e0ee0674f6435af7038bdf911fcfb9ff239d5cd0 -SIZE (paul-j-lucas-cdecl-cdecl-6.3.2_GH0.tar.gz) = 366823 +TIMESTAMP = 1560949538 +SHA256 (paul-j-lucas-cdecl-cdecl-6.4_GH0.tar.gz) = a5578736866ba02a8a7149b72325d522a76af73cefd696fdc0e7e899b4239eb7 +SIZE (paul-j-lucas-cdecl-cdecl-6.4_GH0.tar.gz) = 374727 From owner-svn-ports-all@freebsd.org Wed Jun 19 13:25:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 165D815B89BF; Wed, 19 Jun 2019 13:25:51 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B1E208CDB2; Wed, 19 Jun 2019 13:25:50 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8D1DB25010; Wed, 19 Jun 2019 13:25:50 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JDPo1g021682; Wed, 19 Jun 2019 13:25:50 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JDPoBU021680; Wed, 19 Jun 2019 13:25:50 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906191325.x5JDPoBU021680@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 19 Jun 2019 13:25:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504547 - in head: devel games X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head: devel games X-SVN-Commit-Revision: 504547 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B1E208CDB2 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 13:25:51 -0000 Author: danfe Date: Wed Jun 19 13:25:49 2019 New Revision: 504547 URL: https://svnweb.freebsd.org/changeset/ports/504547 Log: Routinely (again) sort category makefiles. Modified: head/devel/Makefile head/games/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 19 13:22:02 2019 (r504546) +++ head/devel/Makefile Wed Jun 19 13:25:49 2019 (r504547) @@ -80,6 +80,7 @@ SUBDIR += R-cran-vcd SUBDIR += R-cran-vctrs SUBDIR += R-cran-withr + SUBDIR += R-cran-zeallot SUBDIR += RStudio SUBDIR += SpecTcl SUBDIR += aap @@ -1237,12 +1238,12 @@ SUBDIR += liblangtag SUBDIR += liblas SUBDIR += liblas12 - SUBDIR += liblpm SUBDIR += liblnk SUBDIR += liblockfile SUBDIR += liblogging SUBDIR += liblognorm SUBDIR += liblouis + SUBDIR += liblpm SUBDIR += libltdl SUBDIR += liblxqt SUBDIR += libmaa @@ -4829,6 +4830,7 @@ SUBDIR += py-pytest-localserver SUBDIR += py-pytest-mock SUBDIR += py-pytest-pycodestyle + SUBDIR += py-pytest-relaxed SUBDIR += py-pytest-runner SUBDIR += py-pytest-sugar SUBDIR += py-pytest-timeout @@ -4849,7 +4851,6 @@ SUBDIR += py-python-jenkins SUBDIR += py-python-magic SUBDIR += py-python-pcre - SUBDIR += py-pytest-relaxed SUBDIR += py-python-socketio SUBDIR += py-python-statsd SUBDIR += py-python-subunit @@ -5261,7 +5262,6 @@ SUBDIR += qtcreator SUBDIR += quickcheck++ SUBDIR += quilt - SUBDIR += R-cran-zeallot SUBDIR += rabs SUBDIR += racer SUBDIR += racerd Modified: head/games/Makefile ============================================================================== --- head/games/Makefile Wed Jun 19 13:22:02 2019 (r504546) +++ head/games/Makefile Wed Jun 19 13:25:49 2019 (r504547) @@ -189,6 +189,7 @@ SUBDIR += cutemaze SUBDIR += cuyo SUBDIR += d2x + SUBDIR += dMagnetic SUBDIR += dangen SUBDIR += dangerdeep SUBDIR += dangerdeep-data @@ -200,7 +201,6 @@ SUBDIR += diaspora SUBDIR += digger-vgl SUBDIR += divide-and-succeed - SUBDIR += dMagnetic SUBDIR += dmjava SUBDIR += dodgindiamond2 SUBDIR += domination From owner-svn-ports-all@freebsd.org Wed Jun 19 13:50:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5981A15B9547; Wed, 19 Jun 2019 13:50:42 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2090E8DD61; Wed, 19 Jun 2019 13:50:42 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E4D0A25378; Wed, 19 Jun 2019 13:50:41 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JDofKh032458; Wed, 19 Jun 2019 13:50:41 GMT (envelope-from meta@FreeBSD.org) Received: (from meta@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JDofjE032456; Wed, 19 Jun 2019 13:50:41 GMT (envelope-from meta@FreeBSD.org) Message-Id: <201906191350.x5JDofjE032456@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: meta set sender to meta@FreeBSD.org using -f From: Koichiro Iwao Date: Wed, 19 Jun 2019 13:50:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504548 - head/lang/php-mode.el X-SVN-Group: ports-head X-SVN-Commit-Author: meta X-SVN-Commit-Paths: head/lang/php-mode.el X-SVN-Commit-Revision: 504548 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2090E8DD61 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 13:50:42 -0000 Author: meta Date: Wed Jun 19 13:50:41 2019 New Revision: 504548 URL: https://svnweb.freebsd.org/changeset/ports/504548 Log: lang/php-mode.el: Update to 1.21.4 While here, * Install some missing files * Switch to pkg-plist PR: 238596 Submitted by: Yasuhiro KIMURA (maintainer) Added: head/lang/php-mode.el/pkg-plist (contents, props changed) Modified: head/lang/php-mode.el/Makefile head/lang/php-mode.el/distinfo Modified: head/lang/php-mode.el/Makefile ============================================================================== --- head/lang/php-mode.el/Makefile Wed Jun 19 13:25:49 2019 (r504547) +++ head/lang/php-mode.el/Makefile Wed Jun 19 13:50:41 2019 (r504548) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= php-mode.el -PORTVERSION= 1.21.0 +PORTVERSION= 1.21.4 DISTVERSIONPREFIX= v CATEGORIES= lang elisp PKGNAMESUFFIX= ${EMACS_PKGNAMESUFFIX} @@ -18,18 +18,22 @@ GH_ACCOUNT= emacs-php GH_PROJECT= ${PORTNAME:S/.el$//} NO_ARCH= yes -PLIST_FILES= ${EMACS_VERSION_SITE_LISPDIR}/php-mode.el \ - ${EMACS_VERSION_SITE_LISPDIR}/php-mode.elc \ - ${EMACS_VERSION_SITE_LISPDIR}/php-project.el \ - ${EMACS_VERSION_SITE_LISPDIR}/php-project.elc do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} ${INSTALL_DATA} \ + ${WRKSRC}/php-face.el \ + ${WRKSRC}/php-face.elc \ + ${WRKSRC}/php-mode-debug.el \ + ${WRKSRC}/php-mode-debug.elc \ + ${WRKSRC}/php-mode-test.el \ + ${WRKSRC}/php-mode-test.elc \ ${WRKSRC}/php-mode.el \ ${WRKSRC}/php-mode.elc \ ${WRKSRC}/php-project.el \ ${WRKSRC}/php-project.elc \ + ${WRKSRC}/php.el \ + ${WRKSRC}/php.elc \ ${STAGEDIR}${PREFIX}/${EMACS_VERSION_SITE_LISPDIR} .include Modified: head/lang/php-mode.el/distinfo ============================================================================== --- head/lang/php-mode.el/distinfo Wed Jun 19 13:25:49 2019 (r504547) +++ head/lang/php-mode.el/distinfo Wed Jun 19 13:50:41 2019 (r504548) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547217434 -SHA256 (emacs-php-php-mode-v1.21.0_GH0.tar.gz) = 947533deea7a00d76104369b545843ec0a3454cf63eaa53102ea1b94c4d586cc -SIZE (emacs-php-php-mode-v1.21.0_GH0.tar.gz) = 97609 +TIMESTAMP = 1560667984 +SHA256 (emacs-php-php-mode-v1.21.4_GH0.tar.gz) = 5e91124d9ed9cb79d5478b9159d1f43627c73631c5671881441e9fbdefb3cb78 +SIZE (emacs-php-php-mode-v1.21.4_GH0.tar.gz) = 83508 Added: head/lang/php-mode.el/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/php-mode.el/pkg-plist Wed Jun 19 13:50:41 2019 (r504548) @@ -0,0 +1,12 @@ +%%EMACS_VERSION_SITE_LISPDIR%%/php-face.el +%%EMACS_VERSION_SITE_LISPDIR%%/php-face.elc +%%EMACS_VERSION_SITE_LISPDIR%%/php-mode-debug.el +%%EMACS_VERSION_SITE_LISPDIR%%/php-mode-debug.elc +%%EMACS_VERSION_SITE_LISPDIR%%/php-mode-test.el +%%EMACS_VERSION_SITE_LISPDIR%%/php-mode-test.elc +%%EMACS_VERSION_SITE_LISPDIR%%/php-mode.el +%%EMACS_VERSION_SITE_LISPDIR%%/php-mode.elc +%%EMACS_VERSION_SITE_LISPDIR%%/php-project.el +%%EMACS_VERSION_SITE_LISPDIR%%/php-project.elc +%%EMACS_VERSION_SITE_LISPDIR%%/php.el +%%EMACS_VERSION_SITE_LISPDIR%%/php.elc From owner-svn-ports-all@freebsd.org Wed Jun 19 13:52:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52B8915B982A; Wed, 19 Jun 2019 13:52:33 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ED5C68E1C0; Wed, 19 Jun 2019 13:52:32 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C7F7F25534; Wed, 19 Jun 2019 13:52:32 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JDqWCm037636; Wed, 19 Jun 2019 13:52:32 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JDqWKL037634; Wed, 19 Jun 2019 13:52:32 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <201906191352.x5JDqWKL037634@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Wed, 19 Jun 2019 13:52:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504549 - in head/editors/libreoffice: . files X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/editors/libreoffice: . files X-SVN-Commit-Revision: 504549 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: ED5C68E1C0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 13:52:33 -0000 Author: lwhsu Date: Wed Jun 19 13:52:32 2019 New Revision: 504549 URL: https://svnweb.freebsd.org/changeset/ports/504549 Log: - Remove dependence on devel/patch PR: 238629 Submitted by: mi Modified: head/editors/libreoffice/Makefile head/editors/libreoffice/files/patch-configure Modified: head/editors/libreoffice/Makefile ============================================================================== --- head/editors/libreoffice/Makefile Wed Jun 19 13:50:41 2019 (r504548) +++ head/editors/libreoffice/Makefile Wed Jun 19 13:52:32 2019 (r504549) @@ -20,7 +20,6 @@ BUILD_DEPENDS= p5-Archive-Zip>=0:archivers/p5-Archive- dmake:devel/dmake \ ${LOCALBASE}/bin/gperf:devel/gperf \ mdds>=1.4:devel/mdds \ - gpatch:devel/patch \ ucpp:devel/ucpp \ ${LOCALBASE}/include/sane/sane.h:graphics/sane-backends \ vigra-config:graphics/vigra \ @@ -253,7 +252,6 @@ CONFIGURE_ARGS= --disable-dependency-tracking \ --with-external-hyph-dir=${LOCALBASE}/share/hyphen \ --with-external-tar=${DISTDIR}/${DIST_SUBDIR} \ --with-external-thes-dir=${LOCALBASE}/share/mythes \ - --with-gnu-patch=${LOCALBASE}/bin/gpatch \ --with-os-version=${OSVERSION} \ --with-parallelism=${MAKE_JOBS_NUMBER} \ --with-system-cppunit \ Modified: head/editors/libreoffice/files/patch-configure ============================================================================== --- head/editors/libreoffice/files/patch-configure Wed Jun 19 13:50:41 2019 (r504548) +++ head/editors/libreoffice/files/patch-configure Wed Jun 19 13:52:32 2019 (r504549) @@ -1,4 +1,4 @@ ---- configure.orig 2018-08-03 03:58:40.000000000 +0800 +--- configure 2018-08-03 03:58:40.000000000 +0800 +++ configure 2018-08-10 05:28:52.021925000 +0800 @@ -31735,7 +31735,7 @@ @@ -9,3 +9,10 @@ && test "$with_system_openssl" != "no"; then with_system_openssl=yes SYSTEM_OPENSSL=TRUE +@@ -34402,5 +34412,5 @@ + fi + +-if test "$_os" = "SunOS" -o "$_os" = "FreeBSD" -o "$_os" = "Darwin"; then ++if test "$_os" = "SunOS" -o "$_os" = "Darwin"; then + if test -z "$with_gnu_patch"; then + GNUPATCH=$PATCH From owner-svn-ports-all@freebsd.org Wed Jun 19 14:14:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C592915BA11B; Wed, 19 Jun 2019 14:14:43 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6BCF68EDC9; Wed, 19 Jun 2019 14:14:43 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 45E8A258B6; Wed, 19 Jun 2019 14:14:43 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JEEhSp048077; Wed, 19 Jun 2019 14:14:43 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JEEhhn048076; Wed, 19 Jun 2019 14:14:43 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906191414.x5JEEhhn048076@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 19 Jun 2019 14:14:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504550 - head/games/vegastrike X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/games/vegastrike X-SVN-Commit-Revision: 504550 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6BCF68EDC9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 14:14:43 -0000 Author: danfe Date: Wed Jun 19 14:14:42 2019 New Revision: 504550 URL: https://svnweb.freebsd.org/changeset/ports/504550 Log: Remove seemingly unused #include and thus undeprecate. Modified: head/games/vegastrike/Makefile Modified: head/games/vegastrike/Makefile ============================================================================== --- head/games/vegastrike/Makefile Wed Jun 19 13:52:32 2019 (r504549) +++ head/games/vegastrike/Makefile Wed Jun 19 14:14:42 2019 (r504550) @@ -11,9 +11,6 @@ DISTNAME= ${PORTNAME}-src-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Open source 3D space simulator -DEPRECATED= Abandonware using sys/dir.h -EXPIRATION_DATE= 2019-07-12 - LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING @@ -64,6 +61,8 @@ post-patch: ${WRKSRC}/configure @${REINPLACE_CMD} -e 's/-lboost_python/-l${PY_BOOST_LIB}/' \ ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e '/#include /d' \ + ${WRKSRC}/setup/src/c/setup.cpp do-install: ${INSTALL_PROGRAM} ${BIN_FILES:S|bin|${WRKSRC}|} \ From owner-svn-ports-all@freebsd.org Wed Jun 19 14:19:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42CAC15BA1FD; Wed, 19 Jun 2019 14:19:10 +0000 (UTC) (envelope-from gjb@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DBE308EF5B; Wed, 19 Jun 2019 14:19:09 +0000 (UTC) (envelope-from gjb@freebsd.org) Received: from FreeBSD.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by freefall.freebsd.org (Postfix) with ESMTPS id 56604C644; Wed, 19 Jun 2019 14:19:09 +0000 (UTC) (envelope-from gjb@freebsd.org) Date: Wed, 19 Jun 2019 14:19:06 +0000 From: Glen Barber To: Jan Beich Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-tags@freebsd.org Subject: Re: svn commit: r504509 - tags/RELEASE_11_3_0 Message-ID: <20190619141906.GB59861@FreeBSD.org> References: <201906190049.x5J0ng43020174@repo.freebsd.org> <1rzq-cee6-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="jy6Sn24JjFx/iggw" Content-Disposition: inline In-Reply-To: <1rzq-cee6-wny@FreeBSD.org> User-Agent: Mutt/1.11.2 (2019-01-07) X-Rspamd-Queue-Id: DBE308EF5B X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.98)[-0.983,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 14:19:10 -0000 --jy6Sn24JjFx/iggw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Jun 19, 2019 at 07:50:25AM +0200, Jan Beich wrote: > Glen Barber writes: >=20 > > Author: gjb > > Date: Wed Jun 19 00:49:42 2019 > > New Revision: 504509 > > URL: https://svnweb.freebsd.org/changeset/ports/504509 > > > > Log: > > Tag ports 2019Q2@r504456 for 11.3-RELEASE. > > =20 > > Approved by: portmgr (implicit, re blanket) > > Sponsored by: The FreeBSD Foundation > > > > Added: > > tags/RELEASE_11_3_0/ > > - copied from r504456, branches/2019Q2/ >=20 > Sadly, this doesn't include recent www/firefox and www/firefox-esr update= s. >=20 This tag is only for populating the dvd1.iso installers, which historically we have always had an unfortunate situation where on-disc packages are likely going to be stale. These packages are provided on the dvd to bootstrap a system, after which 'pkg upgrade' using the quarterly set (2019Q2 in this case) will pull in an updated www/firefox with the fixes. Glen --jy6Sn24JjFx/iggw Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEjRJAPC5sqwhs9k2jAxRYpUeP4pMFAl0KRFYACgkQAxRYpUeP 4pPaag/+Lw/rvBugQ6cAXToj8jj/z2Der/xH0gTMj6x5ib3rregsKCsd9g8nu/Mm H5v9eKDaICcYKFhD2fi/W9W4dsMBEyoOo/2gPIZZkvC94Dwm3t3OaNSUUBde4CUm +AbNJnQilYuH4wY4krdr99UiWa6Ca5xOrcAlkaOsSXE3acCuDdTOzLS34NVlFG6p C4HSmlGybAhMfmPFoFGd0wqGtKkUTO6c/CfMq9SPW5fufNKGbUzUT1JW3GK+Bm88 Yirsy+2U25OVr+TYRHjZC3skIbLfnwA0Mwtow2IKVix73DFWEC1T+jRA0f7A3tuj ETFhjtNRbD5R2xVxyV43Y9PRwv6X2OX8naP3sSdUmQUL9AdciRrwq48CmlMw6XWM TNaglmHMuqknnDvNIpL2zwVc95tHxOZY5lwAEG9201naFkpmnd5FCgOBe4QC+M6T KpuGFEP8pZyuLKXyNTrAKvNkefPjMZEMpaS6ULCskupucdVc5DAaKocDACWwhPcU dWhpIiEoXgFCMhmL+9lU3/SanCyXEqpavuIj3/CgtdTnil9cHd0Y8YULTr5VDJy5 a52aUP947bEHTahBlM9w8gmh05Tmb7iKUG6yuJw8SPtUIanfdzRs0QMLgZMg+bfl t4LM79GazQFz1unsBRb7t40H2cPPyQvNudXNwSscU4ejPHtMyxY= =qnI4 -----END PGP SIGNATURE----- --jy6Sn24JjFx/iggw-- From owner-svn-ports-all@freebsd.org Wed Jun 19 14:31:12 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E611015BA835; Wed, 19 Jun 2019 14:31:11 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 853418F5AA; Wed, 19 Jun 2019 14:31:11 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5F96925AA2; Wed, 19 Jun 2019 14:31:11 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JEVBjj055508; Wed, 19 Jun 2019 14:31:11 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JEVBku055507; Wed, 19 Jun 2019 14:31:11 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906191431.x5JEVBku055507@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Wed, 19 Jun 2019 14:31:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504551 - head/misc/bibletime X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/misc/bibletime X-SVN-Commit-Revision: 504551 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 853418F5AA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 14:31:12 -0000 Author: linimon Date: Wed Jun 19 14:31:10 2019 New Revision: 504551 URL: https://svnweb.freebsd.org/changeset/ports/504551 Log: Add compiler:c11 to USES to unbreak on powerpc64: btosismorphsegmentation.cpp.o: undefined reference to sword::SWOptionFilter::SWOptionFilter Approved by: portmgr (tier-2 blanket) Modified: head/misc/bibletime/Makefile Modified: head/misc/bibletime/Makefile ============================================================================== --- head/misc/bibletime/Makefile Wed Jun 19 14:14:42 2019 (r504550) +++ head/misc/bibletime/Makefile Wed Jun 19 14:31:10 2019 (r504551) @@ -11,12 +11,10 @@ COMMENT= Open source Bible study tool LICENSE= GPLv2 -BROKEN_powerpc64= fails to compile: btosismorphsegmentation.cpp.o: undefined reference to sword::SWOptionFilter::SWOptionFilter - LIB_DEPENDS= libclucene-core.so:textproc/clucene \ libsword.so:misc/sword -USES= cmake qt:5 tar:xz ssl +USES= cmake compiler:c11 qt:5 tar:xz ssl USE_QT= buildtools core dbus gui linguist_build network script svg \ webkit xml qmake_build .include From owner-svn-ports-all@freebsd.org Wed Jun 19 15:20:02 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EFD1515BB945; Wed, 19 Jun 2019 15:20:01 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8B7D06A31A; Wed, 19 Jun 2019 15:20:01 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5F7D226304; Wed, 19 Jun 2019 15:20:01 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JFK1sC079748; Wed, 19 Jun 2019 15:20:01 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JFK0WO079746; Wed, 19 Jun 2019 15:20:00 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906191520.x5JFK0WO079746@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 15:20:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504552 - in head/dns: bind9-devel/files bind911/files bind914/files X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/dns: bind9-devel/files bind911/files bind914/files X-SVN-Commit-Revision: 504552 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8B7D06A31A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.99 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.99)[-0.988,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 15:20:02 -0000 Author: mat Date: Wed Jun 19 15:20:00 2019 New Revision: 504552 URL: https://svnweb.freebsd.org/changeset/ports/504552 Log: Convert BIND9's pkg-message files to UCL. Modified: head/dns/bind9-devel/files/pkg-message.in (contents, props changed) head/dns/bind911/files/pkg-message.in (contents, props changed) head/dns/bind914/files/pkg-message.in (contents, props changed) Modified: head/dns/bind9-devel/files/pkg-message.in ============================================================================== --- head/dns/bind9-devel/files/pkg-message.in Wed Jun 19 14:31:10 2019 (r504551) +++ head/dns/bind9-devel/files/pkg-message.in Wed Jun 19 15:20:00 2019 (r504552) @@ -1,28 +1,29 @@ -********************************************************************** -* _ _____ _____ _____ _ _ _____ ___ ___ _ _ * -* / \|_ _|_ _| ____| \ | |_ _|_ _/ _ \| \ | | * -* / _ \ | | | | | _| | \| | | | | | | | | \| | * -* / ___ \| | | | | |___| |\ | | | | | |_| | |\ | * -* /_/ \_\_| |_| |_____|_| \_| |_| |___\___/|_| \_| * -* * -* BIND requires configuration of rndc, including a "secret" key. * -* The easiest, and most secure way to configure rndc is to run * -* 'rndc-confgen -a' to generate the proper conf file, with a new * -* random key, and appropriate file permissions. * -* * -* The %%PREFIX%%/etc/rc.d/named script will do that for you. * -* * -* If using syslog to log the BIND9 activity, and using a * -* chroot'ed installation, you will need to tell syslog to * -* install a log socket in the BIND9 chroot by running: * -* * -* # sysrc altlog_proglist+=named * -* * -* And then restarting syslogd with: service syslogd restart * -* * -* * -* THIS IS A DEVELOPMENT VERSION OF BIND, IT WILL EAT YOUR DATA * -* * -* * -* * -********************************************************************** +[ +{ +# %!fmt 59 63 + message: < Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B930A15BB978; Wed, 19 Jun 2019 15:20:18 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5E0056A48B; Wed, 19 Jun 2019 15:20:18 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 37BEA26305; Wed, 19 Jun 2019 15:20:18 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JFKIx3079906; Wed, 19 Jun 2019 15:20:18 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JFKHFA079903; Wed, 19 Jun 2019 15:20:17 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906191520.x5JFKHFA079903@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 15:20:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504553 - in head/lang: perl5-devel perl5.26 perl5.28 perl5.30 X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/lang: perl5-devel perl5.26 perl5.28 perl5.30 X-SVN-Commit-Revision: 504553 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5E0056A48B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.99 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.99)[-0.987,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 15:20:19 -0000 Author: mat Date: Wed Jun 19 15:20:17 2019 New Revision: 504553 URL: https://svnweb.freebsd.org/changeset/ports/504553 Log: Convert lang/perl5*'s pkg-message to UCL, and remove it from perl5-devel. The message is 5 years old, no need to carry it on in future versions. Deleted: head/lang/perl5-devel/pkg-message Modified: head/lang/perl5.26/pkg-message (contents, props changed) head/lang/perl5.28/pkg-message (contents, props changed) head/lang/perl5.30/pkg-message (contents, props changed) Modified: head/lang/perl5.26/pkg-message ============================================================================== --- head/lang/perl5.26/pkg-message Wed Jun 19 15:20:00 2019 (r504552) +++ head/lang/perl5.26/pkg-message Wed Jun 19 15:20:17 2019 (r504553) @@ -1,3 +1,6 @@ +[ +{ + message: < Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 29FBE15BB9A7; Wed, 19 Jun 2019 15:20:28 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BDE596A542; Wed, 19 Jun 2019 15:20:27 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B0B1926306; Wed, 19 Jun 2019 15:20:24 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JFKO48080119; Wed, 19 Jun 2019 15:20:24 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JFKNUw080112; Wed, 19 Jun 2019 15:20:23 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906191520.x5JFKNUw080112@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 15:20:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504554 - in head: devel/gitolite/files mail/postfix-policyd-sf net-mgmt/nagios/files net-mgmt/nagios4/files sysutils/munin-contrib/files sysutils/munin-master/files sysutils/munin-node... X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head: devel/gitolite/files mail/postfix-policyd-sf net-mgmt/nagios/files net-mgmt/nagios4/files sysutils/munin-contrib/files sysutils/munin-master/files sysutils/munin-node/files www/ikiwiki X-SVN-Commit-Revision: 504554 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BDE596A542 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.99 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.99)[-0.988,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 15:20:28 -0000 Author: mat Date: Wed Jun 19 15:20:22 2019 New Revision: 504554 URL: https://svnweb.freebsd.org/changeset/ports/504554 Log: Update the rest of my ports to UCL pkg-message. Modified: head/devel/gitolite/files/pkg-message.in (contents, props changed) head/mail/postfix-policyd-sf/pkg-message (contents, props changed) head/net-mgmt/nagios/files/pkg-message.in (contents, props changed) head/net-mgmt/nagios4/files/pkg-message.in (contents, props changed) head/sysutils/munin-contrib/files/pkg-message.in (contents, props changed) head/sysutils/munin-master/files/pkg-message.in (contents, props changed) head/sysutils/munin-node/files/pkg-message.in (contents, props changed) head/www/ikiwiki/pkg-message (contents, props changed) Modified: head/devel/gitolite/files/pkg-message.in ============================================================================== --- head/devel/gitolite/files/pkg-message.in Wed Jun 19 15:20:17 2019 (r504553) +++ head/devel/gitolite/files/pkg-message.in Wed Jun 19 15:20:22 2019 (r504554) @@ -1,5 +1,6 @@ -============================================================================== - +[ +{ +message: < v3 migration procedures: WARNING: gitolite v3 is NOT "API" compatible with gitolite v2. Any local @@ -18,8 +19,12 @@ tl;dr: [0] http://sitaramc.github.com/gitolite/install.html#migr [1] http://sitaramc.github.com/gitolite/master-toc.html - - +EOT + type: upgrade + maximum_version: "2.99" +} +{ + message: < Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 241A615BBBF8; Wed, 19 Jun 2019 15:23:45 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BAD796A966; Wed, 19 Jun 2019 15:23:44 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 93BA1264A4; Wed, 19 Jun 2019 15:23:44 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JFNiNf085050; Wed, 19 Jun 2019 15:23:44 GMT (envelope-from ler@FreeBSD.org) Received: (from ler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JFNiEU085048; Wed, 19 Jun 2019 15:23:44 GMT (envelope-from ler@FreeBSD.org) Message-Id: <201906191523.x5JFNiEU085048@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ler set sender to ler@FreeBSD.org using -f From: Larry Rosenman Date: Wed, 19 Jun 2019 15:23:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504555 - in head/devel/cdecl: . files X-SVN-Group: ports-head X-SVN-Commit-Author: ler X-SVN-Commit-Paths: in head/devel/cdecl: . files X-SVN-Commit-Revision: 504555 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BAD796A966 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.99 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.99)[-0.986,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 15:23:45 -0000 Author: ler Date: Wed Jun 19 15:23:43 2019 New Revision: 504555 URL: https://svnweb.freebsd.org/changeset/ports/504555 Log: devel/cdecl: shut up warnings about POSIX Yacc. Added: head/devel/cdecl/files/ head/devel/cdecl/files/patch-src_Makefile.am (contents, props changed) Modified: head/devel/cdecl/Makefile Modified: head/devel/cdecl/Makefile ============================================================================== --- head/devel/cdecl/Makefile Wed Jun 19 15:20:22 2019 (r504554) +++ head/devel/cdecl/Makefile Wed Jun 19 15:23:43 2019 (r504555) @@ -3,6 +3,7 @@ PORTNAME= cdecl PORTVERSION= 6.4 +PORTREVISION= 1 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= devel Added: head/devel/cdecl/files/patch-src_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cdecl/files/patch-src_Makefile.am Wed Jun 19 15:23:43 2019 (r504555) @@ -0,0 +1,11 @@ +--- src/Makefile.am.orig 2019-06-19 15:19:07 UTC ++++ src/Makefile.am +@@ -21,7 +21,7 @@ + bin_PROGRAMS = cdecl + + AM_CPPFLAGS = -I$(top_srcdir)/lib -I$(top_builddir)/lib +-AM_YFLAGS = -d ++AM_YFLAGS = -d -Wno-yacc + LDADD = $(top_builddir)/lib/libgnu.a + + BUILT_SOURCES = parser.c parser.h lexer.c From owner-svn-ports-all@freebsd.org Wed Jun 19 15:25:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0587B15BBC76; Wed, 19 Jun 2019 15:25:27 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9C51D6AA79; Wed, 19 Jun 2019 15:25:26 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8CD16264A5; Wed, 19 Jun 2019 15:25:26 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JFPQ3H085224; Wed, 19 Jun 2019 15:25:26 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JFPQOS085223; Wed, 19 Jun 2019 15:25:26 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906191525.x5JFPQOS085223@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 15:25:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504556 - head/net X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/net X-SVN-Commit-Revision: 504556 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9C51D6AA79 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.99 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.99)[-0.986,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 15:25:27 -0000 Author: mat Date: Wed Jun 19 15:25:26 2019 New Revision: 504556 URL: https://svnweb.freebsd.org/changeset/ports/504556 Log: More category sorting. Modified: head/net/Makefile (contents, props changed) Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Wed Jun 19 15:23:43 2019 (r504555) +++ head/net/Makefile Wed Jun 19 15:25:26 2019 (r504556) @@ -1279,10 +1279,10 @@ SUBDIR += rubygem-omniauth-oauth SUBDIR += rubygem-omniauth-oauth2 SUBDIR += rubygem-omniauth-openid - SUBDIR += rubygem-omniauth_openid_connect SUBDIR += rubygem-omniauth-salesforce SUBDIR += rubygem-omniauth-twitter SUBDIR += rubygem-omniauth-ultraauth + SUBDIR += rubygem-omniauth_openid_connect SUBDIR += rubygem-open-uri-cached SUBDIR += rubygem-openid_connect SUBDIR += rubygem-opennebula From owner-svn-ports-all@freebsd.org Wed Jun 19 15:28:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A29ED15BBDE0; Wed, 19 Jun 2019 15:28:30 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4723F6AD65; Wed, 19 Jun 2019 15:28:30 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 3A007D9BF; Wed, 19 Jun 2019 15:28:30 +0000 (UTC) Date: Wed, 19 Jun 2019 15:28:30 +0000 From: Alexey Dokuchaev To: Mathieu Arnold Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504556 - head/net Message-ID: <20190619152830.GA94483@FreeBSD.org> References: <201906191525.x5JFPQOS085223@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201906191525.x5JFPQOS085223@repo.freebsd.org> User-Agent: Mutt/1.11.4 (2019-03-13) X-Rspamd-Queue-Id: 4723F6AD65 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.99 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.99)[-0.987,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 15:28:30 -0000 On Wed, Jun 19, 2019 at 03:25:26PM +0000, Mathieu Arnold wrote: > New Revision: 504556 > URL: https://svnweb.freebsd.org/changeset/ports/504556 > > Log: > More category sorting. > > Modified: > head/net/Makefile (contents, props changed) > > Modified: head/net/Makefile > ============================================================================== > --- head/net/Makefile Wed Jun 19 15:23:43 2019 (r504555) > +++ head/net/Makefile Wed Jun 19 15:25:26 2019 (r504556) > @@ -1279,10 +1279,10 @@ > SUBDIR += rubygem-omniauth-oauth > SUBDIR += rubygem-omniauth-oauth2 > SUBDIR += rubygem-omniauth-openid > - SUBDIR += rubygem-omniauth_openid_connect > SUBDIR += rubygem-omniauth-salesforce > SUBDIR += rubygem-omniauth-twitter > SUBDIR += rubygem-omniauth-ultraauth > + SUBDIR += rubygem-omniauth_openid_connect I deliberately excluded this one because it should probably be renamed (s/_/-/). ./danfe From owner-svn-ports-all@freebsd.org Wed Jun 19 16:14:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D174515BD868; Wed, 19 Jun 2019 16:14:42 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7DFC76CD56; Wed, 19 Jun 2019 16:14:42 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 577EA26D4F; Wed, 19 Jun 2019 16:14:42 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGEg67012618; Wed, 19 Jun 2019 16:14:42 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGERE9012543; Wed, 19 Jun 2019 16:14:27 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201906191614.x5JGERE9012543@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Wed, 19 Jun 2019 16:14:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504557 - in head: Mk Mk/Uses archivers/squeeze archivers/thunar-archive-plugin audio/thunar-media-tags-plugin audio/xfce4-mixer audio/xfce4-mpc-plugin audio/xfce4-pulseaudio-plugin aud... X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in head: Mk Mk/Uses archivers/squeeze archivers/thunar-archive-plugin audio/thunar-media-tags-plugin audio/xfce4-mixer audio/xfce4-mpc-plugin audio/xfce4-pulseaudio-plugin audio/xfmpc deskutils/orage ... X-SVN-Commit-Revision: 504557 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7DFC76CD56 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:14:43 -0000 Author: madpilot Date: Wed Jun 19 16:14:27 2019 New Revision: 504557 URL: https://svnweb.freebsd.org/changeset/ports/504557 Log: - Simplify XFCE MASTER_SITES usage - Update XFCE Master sites list Submitted by: olivierd Reviewed by: mat Approved by: portmgr (mat) Differential Revision: https://reviews.freebsd.org/D8416 Modified: head/Mk/Uses/xfce.mk head/Mk/bsd.sites.mk head/archivers/squeeze/Makefile head/archivers/thunar-archive-plugin/Makefile head/audio/thunar-media-tags-plugin/Makefile head/audio/xfce4-mixer/Makefile head/audio/xfce4-mpc-plugin/Makefile head/audio/xfce4-pulseaudio-plugin/Makefile head/audio/xfmpc/Makefile head/deskutils/orage/Makefile head/deskutils/xfce4-notes-plugin/Makefile head/deskutils/xfce4-notifyd/Makefile head/deskutils/xfce4-tumbler/Makefile head/deskutils/xfce4-volumed-pulse/Makefile head/deskutils/xfce4-volumed/Makefile head/deskutils/xfce4-xkb-plugin/Makefile head/devel/thunar-vcs-plugin/Makefile head/devel/xfce4-vala/Makefile head/editors/mousepad/Makefile head/graphics/ristretto/Makefile head/mail/xfce4-mailwatch-plugin/Makefile head/math/xfce4-calculator-plugin/Makefile head/misc/xfce4-weather-plugin/Makefile head/misc/xfce4-wm-themes/Makefile head/multimedia/xfce4-parole/Makefile head/print/xfce4-print/Makefile head/science/xfce4-equake-plugin/Makefile head/sysutils/catfish/Makefile head/sysutils/garcon/Makefile head/sysutils/gigolo/Makefile head/sysutils/xfburn/Makefile head/sysutils/xfce4-battery-plugin/Makefile head/sysutils/xfce4-cpugraph-plugin/Makefile head/sysutils/xfce4-diskperf-plugin/Makefile head/sysutils/xfce4-fsguard-plugin/Makefile head/sysutils/xfce4-genmon-plugin/Makefile head/sysutils/xfce4-mount-plugin/Makefile head/sysutils/xfce4-netload-plugin/Makefile head/sysutils/xfce4-power-manager/Makefile head/sysutils/xfce4-settings/Makefile head/sysutils/xfce4-systemload-plugin/Makefile head/sysutils/xfce4-wavelan-plugin/Makefile head/textproc/xfce4-dict-plugin/Makefile head/www/xfce4-smartbookmark-plugin/Makefile head/x11-clocks/xfce4-datetime-plugin/Makefile head/x11-clocks/xfce4-timer-out-plugin/Makefile head/x11-clocks/xfce4-timer-plugin/Makefile head/x11-fm/thunar-vfs/Makefile head/x11-fm/thunar/Makefile head/x11-themes/gtk-xfce-engine/Makefile head/x11-toolkits/libxfce4gui/Makefile head/x11-wm/xfce4-desktop/Makefile head/x11-wm/xfce4-panel-profiles/Makefile head/x11-wm/xfce4-panel/Makefile head/x11-wm/xfce4-session/Makefile head/x11-wm/xfce4-wm/Makefile head/x11/libexo/Makefile head/x11/libxfce4menu/Makefile head/x11/xfce4-clipman-plugin/Makefile head/x11/xfce4-conf/Makefile head/x11/xfce4-dashboard/Makefile head/x11/xfce4-embed-plugin/Makefile head/x11/xfce4-quicklauncher-plugin/Makefile head/x11/xfce4-screensaver/Makefile head/x11/xfce4-screenshooter-plugin/Makefile head/x11/xfce4-taskmanager/Makefile head/x11/xfce4-terminal/Makefile head/x11/xfce4-verve-plugin/Makefile head/x11/xfce4-whiskermenu-plugin/Makefile head/x11/xfce4-wmdock-plugin/Makefile Modified: head/Mk/Uses/xfce.mk ============================================================================== --- head/Mk/Uses/xfce.mk Wed Jun 19 15:25:26 2019 (r504556) +++ head/Mk/Uses/xfce.mk Wed Jun 19 16:14:27 2019 (r504557) @@ -19,8 +19,6 @@ _USES_POST+= xfce _USE_XFCE_ALL= garcon libexo libgui libmenu libutil panel thunar xfconf -XFCE_MASTER_SITE_VER= 4.12 - xfce_ARGS?= # empty CPPFLAGS+= -I${LOCALBASE}/include Modified: head/Mk/bsd.sites.mk ============================================================================== --- head/Mk/bsd.sites.mk Wed Jun 19 15:25:26 2019 (r504556) +++ head/Mk/bsd.sites.mk Wed Jun 19 16:14:27 2019 (r504557) @@ -1175,15 +1175,15 @@ MASTER_SITE_XCONTRIB+= \ .endif .if !defined(IGNORE_MASTER_SITE_XFCE) +_XFCE_PATH= ${DISTNAME:S/-${DISTVERSIONFULL}//:tl}/${DISTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} + MASTER_SITE_XFCE+= \ - https://mirror.netcologne.de/xfce/%SUBDIR%/ \ - http://ftp.udc.es/xfce/%SUBDIR%/ \ - http://xfce.mirror.uber.com.au/%SUBDIR%/ \ - https://archive.be.xfce.org/%SUBDIR%/ \ - http://archive.be2.xfce.org/%SUBDIR%/ \ - https://archive.al-us.xfce.org/%SUBDIR%/ \ - http://mirrors.tummy.com/pub/archive.xfce.org/%SUBDIR%/ \ - http://mirror.perldude.de/archive.xfce.org/%SUBDIR%/ + https://archive.xfce.org/src/%SUBDIR%/${_XFCE_PATH}/ \ + https://mirror.netcologne.de/xfce/src/%SUBDIR%/${_XFCE_PATH}/ \ + https://ftp.cixug.es/xfce/src/%SUBDIR%/${_XFCE_PATH}/ \ + https://archive.be.xfce.org/src/%SUBDIR%/${_XFCE_PATH}/ \ + https://archive.al-us.xfce.org/src/%SUBDIR%/${_XFCE_PATH}/ \ + http://mirror.perldude.de/archive.xfce.org/src/%SUBDIR%/${_XFCE_PATH}/ .endif .if !defined(IGNORE_MASTER_SITE_XORG) @@ -1262,7 +1262,7 @@ MASTER_SITES_SUBDIRS= APACHE_COMMONS_BINARIES:${PORTNA SAMBA:${PORTNAME} \ SAVANNAH:${PORTNAME:tl} \ SOURCEFORGE:${PORTNAME:tl}/${PORTNAME:tl}/${PORTVERSION} \ - XFCE:xfce/${XFCE_MASTER_SITE_VER}/src + XFCE:xfce .if defined(MASTER_SITES) && ${MASTER_SITES:N*\:/*} Modified: head/archivers/squeeze/Makefile ============================================================================== --- head/archivers/squeeze/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/archivers/squeeze/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= squeeze PORTVERSION= 0.2.3 PORTREVISION= 10 CATEGORIES= archivers xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/archivers/thunar-archive-plugin/Makefile ============================================================================== --- head/archivers/thunar-archive-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/archivers/thunar-archive-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= thunar-archive-plugin PORTVERSION= 0.3.1 PORTREVISION= 6 CATEGORIES= archivers xfce -MASTER_SITES= XFCE/src/thunar-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/thunar-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/audio/thunar-media-tags-plugin/Makefile ============================================================================== --- head/audio/thunar-media-tags-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/audio/thunar-media-tags-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= thunar-media-tags-plugin PORTVERSION= 0.2.1 PORTREVISION= 5 CATEGORIES= audio xfce -MASTER_SITES= XFCE/src/thunar-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/thunar-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/audio/xfce4-mixer/Makefile ============================================================================== --- head/audio/xfce4-mixer/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/audio/xfce4-mixer/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-mixer PORTVERSION= 4.11.0 PORTREVISION= 4 CATEGORIES= audio xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/audio/xfce4-mpc-plugin/Makefile ============================================================================== --- head/audio/xfce4-mpc-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/audio/xfce4-mpc-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-mpc-plugin PORTVERSION= 0.5.1 CATEGORIES= audio xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/audio/xfce4-pulseaudio-plugin/Makefile ============================================================================== --- head/audio/xfce4-pulseaudio-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/audio/xfce4-pulseaudio-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-pulseaudio-plugin PORTVERSION= 0.4.1 PORTREVISION= 2 CATEGORIES= audio xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/audio/xfmpc/Makefile ============================================================================== --- head/audio/xfmpc/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/audio/xfmpc/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfmpc PORTVERSION= 0.2.3 PORTREVISION= 1 CATEGORIES= audio xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/deskutils/orage/Makefile ============================================================================== --- head/deskutils/orage/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/deskutils/orage/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= orage PORTVERSION= 4.12.1 PORTREVISION= 9 CATEGORIES= deskutils xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R}/ +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/deskutils/xfce4-notes-plugin/Makefile ============================================================================== --- head/deskutils/xfce4-notes-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/deskutils/xfce4-notes-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-notes-plugin PORTVERSION= 1.8.1 PORTREVISION= 1 CATEGORIES= deskutils xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/deskutils/xfce4-notifyd/Makefile ============================================================================== --- head/deskutils/xfce4-notifyd/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/deskutils/xfce4-notifyd/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -8,7 +8,7 @@ PORTNAME= xfce4-notifyd PORTVERSION= 0.4.4 CATEGORIES= deskutils xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= ehaupt@FreeBSD.org Modified: head/deskutils/xfce4-tumbler/Makefile ============================================================================== --- head/deskutils/xfce4-tumbler/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/deskutils/xfce4-tumbler/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= tumbler PORTVERSION= 0.2.4 PORTREVISION= 1 CATEGORIES= deskutils xfce -MASTER_SITES= XFCE/src/xfce/${PORTNAME}/${PORTVERSION:R}/ +MASTER_SITES= XFCE PKGNAMEPREFIX= xfce4- DIST_SUBDIR= xfce4 Modified: head/deskutils/xfce4-volumed-pulse/Makefile ============================================================================== --- head/deskutils/xfce4-volumed-pulse/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/deskutils/xfce4-volumed-pulse/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-volumed-pulse PORTVERSION= 0.2.3 PORTREVISION= 2 CATEGORIES= deskutils xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/deskutils/xfce4-volumed/Makefile ============================================================================== --- head/deskutils/xfce4-volumed/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/deskutils/xfce4-volumed/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-volumed PORTVERSION= 0.1.13 PORTREVISION= 3 CATEGORIES= deskutils xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= sergey.dyatko@gmail.com Modified: head/deskutils/xfce4-xkb-plugin/Makefile ============================================================================== --- head/deskutils/xfce4-xkb-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/deskutils/xfce4-xkb-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-xkb-plugin PORTVERSION= 0.8.1 PORTREVISION= 1 CATEGORIES= deskutils xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins MAINTAINER= xfce@FreeBSD.org COMMENT= Keyboard layout switching plugin for the Xfce panel Modified: head/devel/thunar-vcs-plugin/Makefile ============================================================================== --- head/devel/thunar-vcs-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/devel/thunar-vcs-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= thunar-vcs-plugin PORTVERSION= 0.1.5 PORTREVISION= 1 CATEGORIES= devel xfce -MASTER_SITES= XFCE/src/thunar-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/thunar-plugins DIST_SUBDIR= xfce4 MAINTAINER= sergey.dyatko@gmail.com Modified: head/devel/xfce4-vala/Makefile ============================================================================== --- head/devel/xfce4-vala/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/devel/xfce4-vala/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-vala PORTVERSION= 4.10.3 PORTREVISION= 5 CATEGORIES= devel xfce -MASTER_SITES= XFCE/src/bindings/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/bindings DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/editors/mousepad/Makefile ============================================================================== --- head/editors/mousepad/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/editors/mousepad/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= mousepad PORTVERSION= 0.4.1 PORTREVISION= 1 CATEGORIES= editors xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/graphics/ristretto/Makefile ============================================================================== --- head/graphics/ristretto/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/graphics/ristretto/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= ristretto PORTVERSION= 0.8.4 CATEGORIES= graphics xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/mail/xfce4-mailwatch-plugin/Makefile ============================================================================== --- head/mail/xfce4-mailwatch-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/mail/xfce4-mailwatch-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-mailwatch-plugin PORTVERSION= 1.2.0 PORTREVISION= 9 CATEGORIES= mail xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/math/xfce4-calculator-plugin/Makefile ============================================================================== --- head/math/xfce4-calculator-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/math/xfce4-calculator-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-calculator-plugin PORTVERSION= 0.7.0 CATEGORIES= math xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/misc/xfce4-weather-plugin/Makefile ============================================================================== --- head/misc/xfce4-weather-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/misc/xfce4-weather-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-weather-plugin PORTVERSION= 0.9.1 CATEGORIES= misc xfce geography -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/misc/xfce4-wm-themes/Makefile ============================================================================== --- head/misc/xfce4-wm-themes/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/misc/xfce4-wm-themes/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,8 +5,8 @@ PORTNAME= xfce4-wm-themes PORTVERSION= 4.10.0 PORTREVISION= 1 CATEGORIES= misc xfce -MASTER_SITES= XFCE/src/art/xfwm4-themes/${PORTVERSION:R} -DISTNAME= xfwm4-themes-${PORTVERSION} +MASTER_SITES= XFCE/art +DISTNAME= xfwm4-themes-${DISTVERSIONFULL} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/multimedia/xfce4-parole/Makefile ============================================================================== --- head/multimedia/xfce4-parole/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/multimedia/xfce4-parole/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= parole PORTVERSION= 1.0.2 CATEGORIES= multimedia xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R}/ +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/print/xfce4-print/Makefile ============================================================================== --- head/print/xfce4-print/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/print/xfce4-print/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,8 +5,8 @@ PORTNAME= xfce4-print PORTVERSION= 4.6.1 PORTREVISION= 15 CATEGORIES= print xfce -MASTER_SITES= XFCE/src/archive/xfprint/${PORTVERSION:R} -DISTNAME= xfprint-${PORTVERSION} +MASTER_SITES= XFCE/archive +DISTNAME= xfprint-${DISTVERSIONFULL} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/science/xfce4-equake-plugin/Makefile ============================================================================== --- head/science/xfce4-equake-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/science/xfce4-equake-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-equake-plugin PORTVERSION= 1.3.8.1 CATEGORIES= science xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/catfish/Makefile ============================================================================== --- head/sysutils/catfish/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/catfish/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= catfish PORTVERSION= 1.4.7 CATEGORIES= sysutils -MASTER_SITES= XFCE/src/apps/${PORTNAME:tl}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/garcon/Makefile ============================================================================== --- head/sysutils/garcon/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/garcon/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= garcon PORTVERSION= 0.6.2 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/xfce/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/gigolo/Makefile ============================================================================== --- head/sysutils/gigolo/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/gigolo/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= gigolo PORTVERSION= 0.4.91 CATEGORIES= sysutils -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps MAINTAINER= koalative@gmail.com COMMENT= Frontend to easily manage filesystem connections Modified: head/sysutils/xfburn/Makefile ============================================================================== --- head/sysutils/xfburn/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfburn/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfburn PORTVERSION= 0.5.5 PORTREVISION= 1 CATEGORIES= sysutils -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/xfce4-battery-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-battery-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfce4-battery-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-battery-plugin PORTVERSION= 1.1.2 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/xfce4-cpugraph-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-cpugraph-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfce4-cpugraph-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-cpugraph-plugin PORTVERSION= 1.0.5 PORTREVISION= 5 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/xfce4-diskperf-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-diskperf-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfce4-diskperf-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-diskperf-plugin PORTVERSION= 2.6.1 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= danilo@FreeBSD.org Modified: head/sysutils/xfce4-fsguard-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-fsguard-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfce4-fsguard-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-fsguard-plugin PORTVERSION= 1.1.0 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/xfce4-genmon-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-genmon-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfce4-genmon-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-genmon-plugin PORTVERSION= 4.0.1 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/xfce4-mount-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-mount-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfce4-mount-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-mount-plugin PORTVERSION= 1.1.3 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/xfce4-netload-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-netload-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfce4-netload-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-netload-plugin PORTVERSION= 1.3.1 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/xfce4-power-manager/Makefile ============================================================================== --- head/sysutils/xfce4-power-manager/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfce4-power-manager/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-power-manager PORTVERSION= 1.6.2 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/xfce/${PORTNAME}/${PORTVERSION:R}/ +MASTER_SITES= XFCE DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/xfce4-settings/Makefile ============================================================================== --- head/sysutils/xfce4-settings/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfce4-settings/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-settings PORTVERSION= 4.12.4 PORTREVISION= 3 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/xfce/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/xfce4-systemload-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-systemload-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfce4-systemload-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-systemload-plugin PORTVERSION= 1.2.2 PORTREVISION= 1 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/sysutils/xfce4-wavelan-plugin/Makefile ============================================================================== --- head/sysutils/xfce4-wavelan-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/sysutils/xfce4-wavelan-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-wavelan-plugin PORTVERSION= 0.6.0 PORTREVISION= 1 CATEGORIES= sysutils xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/textproc/xfce4-dict-plugin/Makefile ============================================================================== --- head/textproc/xfce4-dict-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/textproc/xfce4-dict-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-dict PORTVERSION= 0.8.2 CATEGORIES= textproc xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps PKGNAMESUFFIX= -plugin DIST_SUBDIR= xfce4 Modified: head/www/xfce4-smartbookmark-plugin/Makefile ============================================================================== --- head/www/xfce4-smartbookmark-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/www/xfce4-smartbookmark-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-smartbookmark-plugin PORTVERSION= 0.5.0 CATEGORIES= www xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-clocks/xfce4-datetime-plugin/Makefile ============================================================================== --- head/x11-clocks/xfce4-datetime-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-clocks/xfce4-datetime-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-datetime-plugin PORTVERSION= 0.7.0 CATEGORIES= x11-clocks xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-clocks/xfce4-timer-out-plugin/Makefile ============================================================================== --- head/x11-clocks/xfce4-timer-out-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-clocks/xfce4-timer-out-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-time-out-plugin PORTVERSION= 1.0.2 PORTREVISION= 2 CATEGORIES= x11-clocks xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-clocks/xfce4-timer-plugin/Makefile ============================================================================== --- head/x11-clocks/xfce4-timer-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-clocks/xfce4-timer-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-timer-plugin PORTVERSION= 1.7.0 PORTREVISION= 1 CATEGORIES= x11-clocks xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-fm/thunar-vfs/Makefile ============================================================================== --- head/x11-fm/thunar-vfs/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-fm/thunar-vfs/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= thunar-vfs PORTVERSION= 1.2.0 PORTREVISION= 12 CATEGORIES= x11-fm xfce -MASTER_SITES= XFCE/src/archive/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/archive DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-fm/thunar/Makefile ============================================================================== --- head/x11-fm/thunar/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-fm/thunar/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= Thunar DISTVERSION= 1.6.17 CATEGORIES= x11-fm xfce -MASTER_SITES= XFCE/src/xfce/${PORTNAME:tl}/${PORTVERSION:R} +MASTER_SITES= XFCE DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-themes/gtk-xfce-engine/Makefile ============================================================================== --- head/x11-themes/gtk-xfce-engine/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-themes/gtk-xfce-engine/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= gtk-xfce-engine PORTVERSION= 3.2.0 CATEGORIES= x11-themes xfce -MASTER_SITES= XFCE/src/xfce/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-toolkits/libxfce4gui/Makefile ============================================================================== --- head/x11-toolkits/libxfce4gui/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-toolkits/libxfce4gui/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,8 +5,8 @@ PORTNAME= libxfce4gui PORTVERSION= 4.10.0 PORTREVISION= 6 CATEGORIES= x11-toolkits xfce -MASTER_SITES= XFCE/src/archive/libxfcegui4/${PORTVERSION:R} -DISTNAME= libxfcegui4-${PORTVERSION} +MASTER_SITES= XFCE/archive +DISTNAME= libxfcegui4-${DISTVERSIONFULL} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-wm/xfce4-desktop/Makefile ============================================================================== --- head/x11-wm/xfce4-desktop/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-wm/xfce4-desktop/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,8 +4,8 @@ PORTNAME= xfce4-desktop PORTVERSION= 4.12.5 CATEGORIES= x11-wm xfce -MASTER_SITES= XFCE/src/xfce/xfdesktop/${PORTVERSION:R}/ -DISTNAME= xfdesktop-${PORTVERSION} +MASTER_SITES= XFCE +DISTNAME= xfdesktop-${DISTVERSIONFULL} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-wm/xfce4-panel-profiles/Makefile ============================================================================== --- head/x11-wm/xfce4-panel-profiles/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-wm/xfce4-panel-profiles/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -3,7 +3,7 @@ PORTNAME= xfce4-panel-profiles PORTVERSION= 1.0.8 CATEGORIES= x11-wm xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-wm/xfce4-panel/Makefile ============================================================================== --- head/x11-wm/xfce4-panel/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-wm/xfce4-panel/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-panel PORTVERSION= 4.12.2 CATEGORIES= x11-wm xfce -MASTER_SITES= XFCE/src/xfce/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-wm/xfce4-session/Makefile ============================================================================== --- head/x11-wm/xfce4-session/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-wm/xfce4-session/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-session PORTVERSION= 4.12.1 PORTREVISION= 6 CATEGORIES= x11-wm xfce -MASTER_SITES= XFCE/src/xfce/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11-wm/xfce4-wm/Makefile ============================================================================== --- head/x11-wm/xfce4-wm/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11-wm/xfce4-wm/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,8 +5,8 @@ PORTNAME= xfce4-wm PORTVERSION= 4.12.5 PORTREVISION= 1 CATEGORIES= x11-wm xfce -MASTER_SITES= XFCE/src/xfce/xfwm4/${PORTVERSION:R} -DISTNAME= xfwm4-${PORTVERSION} +MASTER_SITES= XFCE +DISTNAME= xfwm4-${DISTVERSIONFULL} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/libexo/Makefile ============================================================================== --- head/x11/libexo/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/libexo/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,8 +4,8 @@ PORTNAME= libexo PORTVERSION= 0.12.6 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/xfce/${PORTNAME:C/lib//}/${PORTVERSION:R} -DISTNAME= exo-${PORTVERSION} +MASTER_SITES= XFCE +DISTNAME= exo-${DISTVERSIONFULL} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/libxfce4menu/Makefile ============================================================================== --- head/x11/libxfce4menu/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/libxfce4menu/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,8 +5,8 @@ PORTNAME= libxfce4menu PORTVERSION= 4.12.1 PORTREVISION= 2 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/xfce/libxfce4ui/${PORTVERSION:R} -DISTNAME= libxfce4ui-${PORTVERSION} +MASTER_SITES= XFCE +DISTNAME= libxfce4ui-${DISTVERSIONFULL} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/xfce4-clipman-plugin/Makefile ============================================================================== --- head/x11/xfce4-clipman-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-clipman-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-clipman-plugin PORTVERSION= 1.4.3 PORTREVISION= 1 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/xfce4-conf/Makefile ============================================================================== --- head/x11/xfce4-conf/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-conf/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,8 +4,8 @@ PORTNAME= xfce4-conf PORTVERSION= 4.12.1 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/xfce/xfconf/${PORTVERSION:R} -DISTNAME= xfconf-${PORTVERSION} +MASTER_SITES= XFCE +DISTNAME= xfconf-${DISTVERSIONFULL} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/xfce4-dashboard/Makefile ============================================================================== --- head/x11/xfce4-dashboard/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-dashboard/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= dashboard PORTVERSION= 0.6.1 PORTREVISION= 1 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/apps/xfdashboard/${PORTVERSION:R}/ +MASTER_SITES= XFCE/apps PKGNAMEPREFIX= xfce4- DISTNAME= xfdashboard-${DISTVERSIONFULL} DIST_SUBDIR= xfce4 Modified: head/x11/xfce4-embed-plugin/Makefile ============================================================================== --- head/x11/xfce4-embed-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-embed-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-embed-plugin PORTVERSION= 1.6.0 PORTREVISION= 1 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/xfce4-quicklauncher-plugin/Makefile ============================================================================== --- head/x11/xfce4-quicklauncher-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-quicklauncher-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-quicklauncher-plugin PORTVERSION= 1.9.4 PORTREVISION= 18 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/xfce4-screensaver/Makefile ============================================================================== --- head/x11/xfce4-screensaver/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-screensaver/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -3,7 +3,7 @@ PORTNAME= xfce4-screensaver PORTVERSION= 0.1.5 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/xfce4-screenshooter-plugin/Makefile ============================================================================== --- head/x11/xfce4-screenshooter-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-screenshooter-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,8 +4,8 @@ PORTNAME= xfce4-screenshooter-plugin PORTVERSION= 1.9.5 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/apps/xfce4-screenshooter/${PORTVERSION:R} -DISTNAME= xfce4-screenshooter-${PORTVERSION} +MASTER_SITES= XFCE/apps +DISTNAME= xfce4-screenshooter-${DISTVERSIONFULL} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/xfce4-taskmanager/Makefile ============================================================================== --- head/x11/xfce4-taskmanager/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-taskmanager/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-taskmanager PORTVERSION= 1.2.2 PORTREVISION= 1 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/xfce4-terminal/Makefile ============================================================================== --- head/x11/xfce4-terminal/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-terminal/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-terminal PORTVERSION= 0.8.7.4 PORTREVISION= 2 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/apps/${PORTNAME}/${PORTVERSION:R:R} +MASTER_SITES= XFCE/apps DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/xfce4-verve-plugin/Makefile ============================================================================== --- head/x11/xfce4-verve-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-verve-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,9 +5,9 @@ PORTNAME= verve-plugin PORTVERSION= 1.1.1 PORTREVISION= 1 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/panel-plugins/${PKGNAMEPREFIX}${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins PKGNAMEPREFIX= xfce4- -DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION} +DISTNAME= ${PKGNAMEPREFIX}${PORTNAME}-${DISTVERSIONFULL} DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/xfce4-whiskermenu-plugin/Makefile ============================================================================== --- head/x11/xfce4-whiskermenu-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-whiskermenu-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -4,7 +4,7 @@ PORTNAME= xfce4-whiskermenu-plugin PORTVERSION= 2.3.2 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/panel-plugins/${PORTNAME}/${PORTVERSION:R} +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org Modified: head/x11/xfce4-wmdock-plugin/Makefile ============================================================================== --- head/x11/xfce4-wmdock-plugin/Makefile Wed Jun 19 15:25:26 2019 (r504556) +++ head/x11/xfce4-wmdock-plugin/Makefile Wed Jun 19 16:14:27 2019 (r504557) @@ -5,7 +5,7 @@ PORTNAME= xfce4-wmdock-plugin PORTVERSION= 0.6.0 PORTREVISION= 3 CATEGORIES= x11 xfce -MASTER_SITES= XFCE/src/panel-plugins/xfce4-wmdock-plugin/0.6 +MASTER_SITES= XFCE/panel-plugins DIST_SUBDIR= xfce4 MAINTAINER= xfce@FreeBSD.org From owner-svn-ports-all@freebsd.org Wed Jun 19 16:52:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97BD715BEDD0; Wed, 19 Jun 2019 16:52:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3D2F46E935; Wed, 19 Jun 2019 16:52:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1558C27440; Wed, 19 Jun 2019 16:52:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGqfTf033476; Wed, 19 Jun 2019 16:52:41 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGqf4L033475; Wed, 19 Jun 2019 16:52:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191652.x5JGqf4L033475@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:52:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504558 - head/devel/byacc X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/byacc X-SVN-Commit-Revision: 504558 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3D2F46E935 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:52:42 -0000 Author: sunpoet Date: Wed Jun 19 16:52:41 2019 New Revision: 504558 URL: https://svnweb.freebsd.org/changeset/ports/504558 Log: Update to 20190617 Changes: https://invisible-island.net/byacc/CHANGES.html Modified: head/devel/byacc/Makefile head/devel/byacc/distinfo Modified: head/devel/byacc/Makefile ============================================================================== --- head/devel/byacc/Makefile Wed Jun 19 16:14:27 2019 (r504557) +++ head/devel/byacc/Makefile Wed Jun 19 16:52:41 2019 (r504558) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= byacc -PORTVERSION= 20180609 +PORTVERSION= 20190617 CATEGORIES= devel MASTER_SITES= https://invisible-mirror.net/archives/byacc/ \ LOCAL/sunpoet Modified: head/devel/byacc/distinfo ============================================================================== --- head/devel/byacc/distinfo Wed Jun 19 16:14:27 2019 (r504557) +++ head/devel/byacc/distinfo Wed Jun 19 16:52:41 2019 (r504558) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529610365 -SHA256 (byacc-20180609.tgz) = 5bbb0b3ec3da5981a2488383b652499d6c1e0236b47d8bac5fcdfa12954f749c -SIZE (byacc-20180609.tgz) = 745317 +TIMESTAMP = 1560957696 +SHA256 (byacc-20190617.tgz) = f87868167b920bf2cb30fc32b62f63ae15671181ef329226d1063100be02518d +SIZE (byacc-20190617.tgz) = 799465 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:52:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D84915BEDFF; Wed, 19 Jun 2019 16:52:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D3F8B6E999; Wed, 19 Jun 2019 16:52:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A08B227442; Wed, 19 Jun 2019 16:52:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGqlCt033619; Wed, 19 Jun 2019 16:52:47 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGqlPS033615; Wed, 19 Jun 2019 16:52:47 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191652.x5JGqlPS033615@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:52:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504559 - head/www/tinymce X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/tinymce X-SVN-Commit-Revision: 504559 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D3F8B6E999 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:52:49 -0000 Author: sunpoet Date: Wed Jun 19 16:52:46 2019 New Revision: 504559 URL: https://svnweb.freebsd.org/changeset/ports/504559 Log: Update to 5.0.8 - Add LICENSE_FILE Changes: https://github.com/tinymce/tinymce/blob/master/modules/tinymce/changelog.txt Modified: head/www/tinymce/Makefile head/www/tinymce/distinfo head/www/tinymce/pkg-plist Modified: head/www/tinymce/Makefile ============================================================================== --- head/www/tinymce/Makefile Wed Jun 19 16:52:41 2019 (r504558) +++ head/www/tinymce/Makefile Wed Jun 19 16:52:46 2019 (r504559) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tinymce -PORTVERSION= 5.0.7 +PORTVERSION= 5.0.8 CATEGORIES= www MASTER_SITES= http://download.tiny.cloud/tinymce/community/ \ LOCAL/sunpoet @@ -12,6 +12,7 @@ MAINTAINER= sunpoet@FreeBSD.org COMMENT= Open source JavaScript HTML WYSIWYG editor for web sites LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/js/tinymce/license.txt USES= cpe zip Modified: head/www/tinymce/distinfo ============================================================================== --- head/www/tinymce/distinfo Wed Jun 19 16:52:41 2019 (r504558) +++ head/www/tinymce/distinfo Wed Jun 19 16:52:46 2019 (r504559) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559824520 -SHA256 (tinymce_5.0.7.zip) = b927045a5b3cbe321d9726867bfc758f923bc108af0f2acac0e9250ef16701f5 -SIZE (tinymce_5.0.7.zip) = 620985 +TIMESTAMP = 1560957698 +SHA256 (tinymce_5.0.8.zip) = 19357ecc6229bcec69dd2b3e9e14db348bcb00fdc85e0ac557abdf44a9dd77f3 +SIZE (tinymce_5.0.8.zip) = 633196 Modified: head/www/tinymce/pkg-plist ============================================================================== --- head/www/tinymce/pkg-plist Wed Jun 19 16:52:41 2019 (r504558) +++ head/www/tinymce/pkg-plist Wed Jun 19 16:52:46 2019 (r504559) @@ -3,6 +3,7 @@ %%WWWDIR%%/changelog.txt %%WWWDIR%%/js/tinymce/jquery.tinymce.min.js %%WWWDIR%%/js/tinymce/langs/readme.md +%%WWWDIR%%/js/tinymce/license.txt %%WWWDIR%%/js/tinymce/plugins/advlist/plugin.min.js %%WWWDIR%%/js/tinymce/plugins/anchor/plugin.min.js %%WWWDIR%%/js/tinymce/plugins/autolink/plugin.min.js From owner-svn-ports-all@freebsd.org Wed Jun 19 16:52:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 57A8E15BEE2E; Wed, 19 Jun 2019 16:52:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EEF0A6E9FF; Wed, 19 Jun 2019 16:52:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C9B8727443; Wed, 19 Jun 2019 16:52:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGqqir033741; Wed, 19 Jun 2019 16:52:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGqqRI033739; Wed, 19 Jun 2019 16:52:52 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191652.x5JGqqRI033739@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:52:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504560 - head/www/you-get X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/you-get X-SVN-Commit-Revision: 504560 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EEF0A6E9FF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:52:53 -0000 Author: sunpoet Date: Wed Jun 19 16:52:52 2019 New Revision: 504560 URL: https://svnweb.freebsd.org/changeset/ports/504560 Log: Update to 0.4.1314 Changes: https://github.com/soimort/you-get/commits/develop Modified: head/www/you-get/Makefile head/www/you-get/distinfo Modified: head/www/you-get/Makefile ============================================================================== --- head/www/you-get/Makefile Wed Jun 19 16:52:46 2019 (r504559) +++ head/www/you-get/Makefile Wed Jun 19 16:52:52 2019 (r504560) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= you-get -PORTVERSION= 0.4.1302 +PORTVERSION= 0.4.1314 CATEGORIES= www MASTER_SITES= CHEESESHOP Modified: head/www/you-get/distinfo ============================================================================== --- head/www/you-get/distinfo Wed Jun 19 16:52:46 2019 (r504559) +++ head/www/you-get/distinfo Wed Jun 19 16:52:52 2019 (r504560) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558782868 -SHA256 (you-get-0.4.1302.tar.gz) = 70233161111b4090d0453058bb1e6f36246a1be5270434183f5b1a587cb93126 -SIZE (you-get-0.4.1302.tar.gz) = 146436 +TIMESTAMP = 1560957700 +SHA256 (you-get-0.4.1314.tar.gz) = 2f7ac926dfc2588f3743623ed1f8fea0ef4586d77eeb5506396aa303c6847edd +SIZE (you-get-0.4.1314.tar.gz) = 146655 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:02 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0EBDE15BEE5C; Wed, 19 Jun 2019 16:53:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 44DD76EAC0; Wed, 19 Jun 2019 16:53:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2A82C27444; Wed, 19 Jun 2019 16:52:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGqw1v033866; Wed, 19 Jun 2019 16:52:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGqvJH033864; Wed, 19 Jun 2019 16:52:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191652.x5JGqvJH033864@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:52:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504561 - head/devel/p5-Config-Tiny X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-Config-Tiny X-SVN-Commit-Revision: 504561 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 44DD76EAC0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:02 -0000 Author: sunpoet Date: Wed Jun 19 16:52:57 2019 New Revision: 504561 URL: https://svnweb.freebsd.org/changeset/ports/504561 Log: Update to 2.24 - Take maintainership Changes: https://metacpan.org/changes/distribution/Config-Tiny Modified: head/devel/p5-Config-Tiny/Makefile head/devel/p5-Config-Tiny/distinfo Modified: head/devel/p5-Config-Tiny/Makefile ============================================================================== --- head/devel/p5-Config-Tiny/Makefile Wed Jun 19 16:52:52 2019 (r504560) +++ head/devel/p5-Config-Tiny/Makefile Wed Jun 19 16:52:57 2019 (r504561) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= Config-Tiny -PORTVERSION= 2.23 +PORTVERSION= 2.24 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- -MAINTAINER= perl@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Read/Write .ini style files with as little code as possible LICENSE= ART10 GPLv1+ Modified: head/devel/p5-Config-Tiny/distinfo ============================================================================== --- head/devel/p5-Config-Tiny/distinfo Wed Jun 19 16:52:52 2019 (r504560) +++ head/devel/p5-Config-Tiny/distinfo Wed Jun 19 16:52:57 2019 (r504561) @@ -1,2 +1,3 @@ -SHA256 (Config-Tiny-2.23.tgz) = 9a8a66e3ed420cbc6585c43abeff788368309a46355cf69a64c2a47e1911e50c -SIZE (Config-Tiny-2.23.tgz) = 20487 +TIMESTAMP = 1560957702 +SHA256 (Config-Tiny-2.24.tgz) = 1064948e4bc57e86e318dbc8791c53ca5b9d95b958cc474367c3277981135232 +SIZE (Config-Tiny-2.24.tgz) = 24329 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6F3DC15BEE88; Wed, 19 Jun 2019 16:53:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0ABF06EB38; Wed, 19 Jun 2019 16:53:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 828FE27445; Wed, 19 Jun 2019 16:53:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGr3mB033993; Wed, 19 Jun 2019 16:53:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGr3la033992; Wed, 19 Jun 2019 16:53:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191653.x5JGr3la033992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:53:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504562 - head/devel/p5-Locale-PO X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-Locale-PO X-SVN-Commit-Revision: 504562 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0ABF06EB38 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:05 -0000 Author: sunpoet Date: Wed Jun 19 16:53:02 2019 New Revision: 504562 URL: https://svnweb.freebsd.org/changeset/ports/504562 Log: Use = instead of += Modified: head/devel/p5-Locale-PO/Makefile head/devel/p5-Locale-PO/pkg-descr Modified: head/devel/p5-Locale-PO/Makefile ============================================================================== --- head/devel/p5-Locale-PO/Makefile Wed Jun 19 16:52:57 2019 (r504561) +++ head/devel/p5-Locale-PO/Makefile Wed Jun 19 16:53:02 2019 (r504562) @@ -17,7 +17,8 @@ TEST_DEPENDS= p5-File-Slurp>=0:devel/p5-File-Slurp USES= perl5 USE_PERL5= configure -CONFIGURE_ENV+= LOCALBASE=${LOCALBASE} + +CONFIGURE_ENV= LOCALBASE=${LOCALBASE} NO_ARCH= yes .include Modified: head/devel/p5-Locale-PO/pkg-descr ============================================================================== --- head/devel/p5-Locale-PO/pkg-descr Wed Jun 19 16:52:57 2019 (r504561) +++ head/devel/p5-Locale-PO/pkg-descr Wed Jun 19 16:53:02 2019 (r504562) @@ -1,5 +1,5 @@ -This module provides methods for manipulating objects that represent -entries in a gettext po-file (untranslated and translated strings, with -associated comments). It can load and save complete po-files. +This module provides methods for manipulating objects that represent entries in +a gettext po-file (untranslated and translated strings, with associated +comments). It can load and save complete po-files. WWW: https://metacpan.org/release/Locale-PO From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 031C715BEEB8; Wed, 19 Jun 2019 16:53:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9A4986EBBC; Wed, 19 Jun 2019 16:53:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8C9B227446; Wed, 19 Jun 2019 16:53:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGr8r4034118; Wed, 19 Jun 2019 16:53:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGr8lb034117; Wed, 19 Jun 2019 16:53:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191653.x5JGr8lb034117@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:53:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504563 - head/databases/py-sqlalchemy13 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/databases/py-sqlalchemy13 X-SVN-Commit-Revision: 504563 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9A4986EBBC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:10 -0000 Author: sunpoet Date: Wed Jun 19 16:53:07 2019 New Revision: 504563 URL: https://svnweb.freebsd.org/changeset/ports/504563 Log: Update to 1.3.5 Changes: https://docs.sqlalchemy.org/en/13/changelog/changelog_13.html Modified: head/databases/py-sqlalchemy13/Makefile head/databases/py-sqlalchemy13/distinfo Modified: head/databases/py-sqlalchemy13/Makefile ============================================================================== --- head/databases/py-sqlalchemy13/Makefile Wed Jun 19 16:53:02 2019 (r504562) +++ head/databases/py-sqlalchemy13/Makefile Wed Jun 19 16:53:07 2019 (r504563) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sqlalchemy -PORTVERSION= 1.3.4 +PORTVERSION= 1.3.5 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/databases/py-sqlalchemy13/distinfo ============================================================================== --- head/databases/py-sqlalchemy13/distinfo Wed Jun 19 16:53:02 2019 (r504562) +++ head/databases/py-sqlalchemy13/distinfo Wed Jun 19 16:53:07 2019 (r504563) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559147080 -SHA256 (SQLAlchemy-1.3.4.tar.gz) = c7fef198b43ef31dfd783d094fd5ee435ce8717592e6784c45ba337254998017 -SIZE (SQLAlchemy-1.3.4.tar.gz) = 5877278 +TIMESTAMP = 1560957704 +SHA256 (SQLAlchemy-1.3.5.tar.gz) = c30925d60af95443458ebd7525daf791f55762b106049ae71e18f8dd58084c2f +SIZE (SQLAlchemy-1.3.5.tar.gz) = 5887356 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E39015BEEF7; Wed, 19 Jun 2019 16:53:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DA4DA6EC7C; Wed, 19 Jun 2019 16:53:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EFD2C27447; Wed, 19 Jun 2019 16:53:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGrDQK034243; Wed, 19 Jun 2019 16:53:13 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGrD1h034241; Wed, 19 Jun 2019 16:53:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191653.x5JGrD1h034241@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:53:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504564 - head/devel/py-wrapt X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-wrapt X-SVN-Commit-Revision: 504564 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DA4DA6EC7C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:17 -0000 Author: sunpoet Date: Wed Jun 19 16:53:13 2019 New Revision: 504564 URL: https://svnweb.freebsd.org/changeset/ports/504564 Log: Update to 1.11.2 Changes: https://github.com/GrahamDumpleton/wrapt/blob/develop/docs/changes.rst https://wrapt.readthedocs.io/en/latest/changes.html Modified: head/devel/py-wrapt/Makefile head/devel/py-wrapt/distinfo Modified: head/devel/py-wrapt/Makefile ============================================================================== --- head/devel/py-wrapt/Makefile Wed Jun 19 16:53:07 2019 (r504563) +++ head/devel/py-wrapt/Makefile Wed Jun 19 16:53:13 2019 (r504564) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= wrapt -PORTVERSION= 1.11.1 +PORTVERSION= 1.11.2 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-wrapt/distinfo ============================================================================== --- head/devel/py-wrapt/distinfo Wed Jun 19 16:53:07 2019 (r504563) +++ head/devel/py-wrapt/distinfo Wed Jun 19 16:53:13 2019 (r504564) @@ -1,3 +1,3 @@ -TIMESTAMP = 1548425569 -SHA256 (wrapt-1.11.1.tar.gz) = 4aea003270831cceb8a90ff27c4031da6ead7ec1886023b80ce0dfe0adf61533 -SIZE (wrapt-1.11.1.tar.gz) = 27225 +TIMESTAMP = 1560957706 +SHA256 (wrapt-1.11.2.tar.gz) = 565a021fd19419476b9362b05eeaa094178de64f8361e44468f9e9d7843901e1 +SIZE (wrapt-1.11.2.tar.gz) = 27308 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:22 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C8AC815BEF27; Wed, 19 Jun 2019 16:53:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 65A366ED19; Wed, 19 Jun 2019 16:53:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ECE5C27448; Wed, 19 Jun 2019 16:53:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGrIgN034368; Wed, 19 Jun 2019 16:53:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGrIu5034366; Wed, 19 Jun 2019 16:53:18 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191653.x5JGrIu5034366@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:53:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504565 - head/ftp/py-pycurl X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/ftp/py-pycurl X-SVN-Commit-Revision: 504565 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 65A366ED19 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:23 -0000 Author: sunpoet Date: Wed Jun 19 16:53:18 2019 New Revision: 504565 URL: https://svnweb.freebsd.org/changeset/ports/504565 Log: Update to 7.43.0.3 Changes: http://pycurl.io/docs/latest/release-notes.html Modified: head/ftp/py-pycurl/Makefile head/ftp/py-pycurl/distinfo Modified: head/ftp/py-pycurl/Makefile ============================================================================== --- head/ftp/py-pycurl/Makefile Wed Jun 19 16:53:13 2019 (r504564) +++ head/ftp/py-pycurl/Makefile Wed Jun 19 16:53:18 2019 (r504565) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= pycurl -PORTVERSION= 7.43.0.2 +PORTVERSION= 7.43.0.3 CATEGORIES= ftp python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -19,8 +19,8 @@ LIB_DEPENDS= libcurl.so:ftp/curl OPTIONS_DEFINE= DOCS -USE_PYTHON= autoplist concurrent distutils USES= python ssl +USE_PYTHON= autoplist concurrent distutils PORTDOCS= AUTHORS INSTALL.rst README.rst RELEASE-NOTES.rst Modified: head/ftp/py-pycurl/distinfo ============================================================================== --- head/ftp/py-pycurl/distinfo Wed Jun 19 16:53:13 2019 (r504564) +++ head/ftp/py-pycurl/distinfo Wed Jun 19 16:53:18 2019 (r504565) @@ -1,3 +1,3 @@ -TIMESTAMP = 1528017304 -SHA256 (pycurl-7.43.0.2.tar.gz) = 0f0cdfc7a92d4f2a5c44226162434e34f7d6967d3af416a6f1448649c09a25a4 -SIZE (pycurl-7.43.0.2.tar.gz) = 214212 +TIMESTAMP = 1560957708 +SHA256 (pycurl-7.43.0.3.tar.gz) = 6f08330c5cf79fa8ef68b9912b9901db7ffd34b63e225dce74db56bb21deda8e +SIZE (pycurl-7.43.0.3.tar.gz) = 215003 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22D2E15BEF4F; Wed, 19 Jun 2019 16:53:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8EFAB6ED75; Wed, 19 Jun 2019 16:53:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F251F27449; Wed, 19 Jun 2019 16:53:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGrNbx034495; Wed, 19 Jun 2019 16:53:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGrNiX034493; Wed, 19 Jun 2019 16:53:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191653.x5JGrNiX034493@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:53:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504566 - head/www/py-arxiv X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/py-arxiv X-SVN-Commit-Revision: 504566 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8EFAB6ED75 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:26 -0000 Author: sunpoet Date: Wed Jun 19 16:53:23 2019 New Revision: 504566 URL: https://svnweb.freebsd.org/changeset/ports/504566 Log: Update to 0.5.1 Changes: https://github.com/lukasschwab/arxiv.py/releases https://github.com/lukasschwab/arxiv.py/commits/master Modified: head/www/py-arxiv/Makefile head/www/py-arxiv/distinfo Modified: head/www/py-arxiv/Makefile ============================================================================== --- head/www/py-arxiv/Makefile Wed Jun 19 16:53:18 2019 (r504565) +++ head/www/py-arxiv/Makefile Wed Jun 19 16:53:23 2019 (r504566) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= arxiv -PORTVERSION= 0.5.0 +PORTVERSION= 0.5.1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-arxiv/distinfo ============================================================================== --- head/www/py-arxiv/distinfo Wed Jun 19 16:53:18 2019 (r504565) +++ head/www/py-arxiv/distinfo Wed Jun 19 16:53:23 2019 (r504566) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560671647 -SHA256 (arxiv-0.5.0.tar.gz) = 07493207ea3f9998dd67f34389947f8d1228e178ca315239c693231ddf5a339c -SIZE (arxiv-0.5.0.tar.gz) = 5279 +TIMESTAMP = 1560957710 +SHA256 (arxiv-0.5.1.tar.gz) = 5cfb924b60e3ea0ebb3b5d0c32c849df46a2b000036d0bf578c71fba54512233 +SIZE (arxiv-0.5.1.tar.gz) = 5786 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:32 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 555C115BEF8B; Wed, 19 Jun 2019 16:53:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ED9306EE1E; Wed, 19 Jun 2019 16:53:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 04CD12744A; Wed, 19 Jun 2019 16:53:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGrSUS034619; Wed, 19 Jun 2019 16:53:28 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGrSox034617; Wed, 19 Jun 2019 16:53:28 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191653.x5JGrSox034617@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:53:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504567 - head/www/py-instabot X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/py-instabot X-SVN-Commit-Revision: 504567 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: ED9306EE1E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:32 -0000 Author: sunpoet Date: Wed Jun 19 16:53:28 2019 New Revision: 504567 URL: https://svnweb.freebsd.org/changeset/ports/504567 Log: Update to 0.48.0 Changes: https://github.com/instagrambot/instabot/commits/master Modified: head/www/py-instabot/Makefile head/www/py-instabot/distinfo Modified: head/www/py-instabot/Makefile ============================================================================== --- head/www/py-instabot/Makefile Wed Jun 19 16:53:23 2019 (r504566) +++ head/www/py-instabot/Makefile Wed Jun 19 16:53:28 2019 (r504567) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= instabot -PORTVERSION= 0.47.0 +PORTVERSION= 0.48.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-instabot/distinfo ============================================================================== --- head/www/py-instabot/distinfo Wed Jun 19 16:53:23 2019 (r504566) +++ head/www/py-instabot/distinfo Wed Jun 19 16:53:28 2019 (r504567) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560277227 -SHA256 (instabot-0.47.0.tar.gz) = a0e3c4c098c7dd4626e9e9f9da7b97c234541693ebee5a1133ce9bb42616276b -SIZE (instabot-0.47.0.tar.gz) = 58138 +TIMESTAMP = 1560957712 +SHA256 (instabot-0.48.0.tar.gz) = 2419819ce5fdbadfa1aab00e3d46830329402268352dd5f4e2de921c3f36bbfc +SIZE (instabot-0.48.0.tar.gz) = 59527 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3480715BEFCE; Wed, 19 Jun 2019 16:53:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BDB7B6EEAC; Wed, 19 Jun 2019 16:53:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 519B82744B; Wed, 19 Jun 2019 16:53:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGrYTm034744; Wed, 19 Jun 2019 16:53:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGrX6f034742; Wed, 19 Jun 2019 16:53:33 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191653.x5JGrX6f034742@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:53:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504568 - head/devel/rubygem-aws-sdk X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk X-SVN-Commit-Revision: 504568 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BDB7B6EEAC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:37 -0000 Author: sunpoet Date: Wed Jun 19 16:53:33 2019 New Revision: 504568 URL: https://svnweb.freebsd.org/changeset/ports/504568 Log: Update to 2.11.296 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk/Makefile head/devel/rubygem-aws-sdk/distinfo Modified: head/devel/rubygem-aws-sdk/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk/Makefile Wed Jun 19 16:53:28 2019 (r504567) +++ head/devel/rubygem-aws-sdk/Makefile Wed Jun 19 16:53:33 2019 (r504568) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -DISTVERSION= 2.11.295 +DISTVERSION= 2.11.296 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk/distinfo Wed Jun 19 16:53:28 2019 (r504567) +++ head/devel/rubygem-aws-sdk/distinfo Wed Jun 19 16:53:33 2019 (r504568) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560604467 -SHA256 (rubygem/aws-sdk-2.11.295.gem) = e64d01b35e495eb0bd042ee0824a7f1446e91e1288bbd27d75ee6bd318ae5448 -SIZE (rubygem/aws-sdk-2.11.295.gem) = 4608 +TIMESTAMP = 1560957714 +SHA256 (rubygem/aws-sdk-2.11.296.gem) = f7081c1c1aeb0a5dde137c68421e7aa956f5f50e0b9d5cddee1de785e790ff1e +SIZE (rubygem/aws-sdk-2.11.296.gem) = 4608 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA76915BF00C; Wed, 19 Jun 2019 16:53:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 43E046EF66; Wed, 19 Jun 2019 16:53:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8F6292744C; Wed, 19 Jun 2019 16:53:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGrd1f034869; Wed, 19 Jun 2019 16:53:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGrd0n034868; Wed, 19 Jun 2019 16:53:39 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191653.x5JGrd0n034868@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:53:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504569 - head/devel/rubygem-aws-sdk-core X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk-core X-SVN-Commit-Revision: 504569 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 43E046EF66 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:43 -0000 Author: sunpoet Date: Wed Jun 19 16:53:38 2019 New Revision: 504569 URL: https://svnweb.freebsd.org/changeset/ports/504569 Log: Update to 2.11.296 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk-core/Makefile head/devel/rubygem-aws-sdk-core/distinfo Modified: head/devel/rubygem-aws-sdk-core/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile Wed Jun 19 16:53:33 2019 (r504568) +++ head/devel/rubygem-aws-sdk-core/Makefile Wed Jun 19 16:53:38 2019 (r504569) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -DISTVERSION= 2.11.295 +DISTVERSION= 2.11.296 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-core/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-core/distinfo Wed Jun 19 16:53:33 2019 (r504568) +++ head/devel/rubygem-aws-sdk-core/distinfo Wed Jun 19 16:53:38 2019 (r504569) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560604469 -SHA256 (rubygem/aws-sdk-core-2.11.295.gem) = 89dd3c68dc14597ececea60ddbf122ec6e5759274d68365db000d2985ee3dcd9 -SIZE (rubygem/aws-sdk-core-2.11.295.gem) = 1603584 +TIMESTAMP = 1560957716 +SHA256 (rubygem/aws-sdk-core-2.11.296.gem) = 46a2cd828bab227b9f8cf262517cf728e9d0814c8e034bbee6c564d5da5e6a70 +SIZE (rubygem/aws-sdk-core-2.11.296.gem) = 1603584 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8FA0315BF04F; Wed, 19 Jun 2019 16:53:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2DBDE6EFF7; Wed, 19 Jun 2019 16:53:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D494F2744D; Wed, 19 Jun 2019 16:53:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGriJc034994; Wed, 19 Jun 2019 16:53:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGrirU034992; Wed, 19 Jun 2019 16:53:44 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191653.x5JGrirU034992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:53:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504570 - head/devel/rubygem-aws-sdk-resources X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk-resources X-SVN-Commit-Revision: 504570 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2DBDE6EFF7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:48 -0000 Author: sunpoet Date: Wed Jun 19 16:53:44 2019 New Revision: 504570 URL: https://svnweb.freebsd.org/changeset/ports/504570 Log: Update to 2.11.296 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk-resources/Makefile head/devel/rubygem-aws-sdk-resources/distinfo Modified: head/devel/rubygem-aws-sdk-resources/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile Wed Jun 19 16:53:38 2019 (r504569) +++ head/devel/rubygem-aws-sdk-resources/Makefile Wed Jun 19 16:53:44 2019 (r504570) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -DISTVERSION= 2.11.295 +DISTVERSION= 2.11.296 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-resources/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-resources/distinfo Wed Jun 19 16:53:38 2019 (r504569) +++ head/devel/rubygem-aws-sdk-resources/distinfo Wed Jun 19 16:53:44 2019 (r504570) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560604471 -SHA256 (rubygem/aws-sdk-resources-2.11.295.gem) = 4dfea7b99b9a1e21c740efd47ace2be8c0dfa51661018771fab55f681863cd08 -SIZE (rubygem/aws-sdk-resources-2.11.295.gem) = 48640 +TIMESTAMP = 1560957718 +SHA256 (rubygem/aws-sdk-resources-2.11.296.gem) = e9bdfe3a3ee3f09a6a4d972f7e355ea5f784d21582bed953709e142ca9de29eb +SIZE (rubygem/aws-sdk-resources-2.11.296.gem) = 48640 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D053B15BF092; Wed, 19 Jun 2019 16:53:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 747696F091; Wed, 19 Jun 2019 16:53:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2FB8E2744E; Wed, 19 Jun 2019 16:53:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGrojo035119; Wed, 19 Jun 2019 16:53:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGrnTJ035118; Wed, 19 Jun 2019 16:53:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191653.x5JGrnTJ035118@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:53:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504571 - head/devel/rubygem-equatable X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-equatable X-SVN-Commit-Revision: 504571 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 747696F091 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:54 -0000 Author: sunpoet Date: Wed Jun 19 16:53:49 2019 New Revision: 504571 URL: https://svnweb.freebsd.org/changeset/ports/504571 Log: Update to 0.6.0 Changes: https://github.com/piotrmurach/equatable/blob/master/CHANGELOG.md Modified: head/devel/rubygem-equatable/Makefile head/devel/rubygem-equatable/distinfo Modified: head/devel/rubygem-equatable/Makefile ============================================================================== --- head/devel/rubygem-equatable/Makefile Wed Jun 19 16:53:44 2019 (r504570) +++ head/devel/rubygem-equatable/Makefile Wed Jun 19 16:53:49 2019 (r504571) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= equatable -PORTVERSION= 0.5.0 +PORTVERSION= 0.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -12,8 +12,9 @@ COMMENT= Implement equality comparison and inspection LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes .include Modified: head/devel/rubygem-equatable/distinfo ============================================================================== --- head/devel/rubygem-equatable/distinfo Wed Jun 19 16:53:44 2019 (r504570) +++ head/devel/rubygem-equatable/distinfo Wed Jun 19 16:53:49 2019 (r504571) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520738611 -SHA256 (rubygem/equatable-0.5.0.gem) = fdc8669f9bdc993be5cb6c08ec86343a7e87756e33c68ff5f63dfaa9e44f55ea -SIZE (rubygem/equatable-0.5.0.gem) = 10240 +TIMESTAMP = 1560957720 +SHA256 (rubygem/equatable-0.6.0.gem) = 130efa9e6e56a47158c7651c03df5466be19bdc1b74caea76e495a51d9d6ac66 +SIZE (rubygem/equatable-0.6.0.gem) = 10752 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:53:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABCAE15BF0C8; Wed, 19 Jun 2019 16:53:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48C176F138; Wed, 19 Jun 2019 16:53:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6444C2744F; Wed, 19 Jun 2019 16:53:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGrtCu035254; Wed, 19 Jun 2019 16:53:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGrtQ9035252; Wed, 19 Jun 2019 16:53:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191653.x5JGrtQ9035252@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:53:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504572 - in head/devel/rubygem-pastel: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel/rubygem-pastel: . files X-SVN-Commit-Revision: 504572 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 48C176F138 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:53:59 -0000 Author: sunpoet Date: Wed Jun 19 16:53:54 2019 New Revision: 504572 URL: https://svnweb.freebsd.org/changeset/ports/504572 Log: Update to 0.7.3 Changes: https://github.com/piotrmurach/pastel/blob/master/CHANGELOG.md Deleted: head/devel/rubygem-pastel/files/ Modified: head/devel/rubygem-pastel/Makefile head/devel/rubygem-pastel/distinfo Modified: head/devel/rubygem-pastel/Makefile ============================================================================== --- head/devel/rubygem-pastel/Makefile Wed Jun 19 16:53:49 2019 (r504571) +++ head/devel/rubygem-pastel/Makefile Wed Jun 19 16:53:54 2019 (r504572) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= pastel -PORTVERSION= 0.7.2 -PORTREVISION= 1 +PORTVERSION= 0.7.3 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -13,8 +12,8 @@ COMMENT= Terminal strings styling with intuitive and c LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= rubygem-equatable>=0.5.0:devel/rubygem-equatable \ - rubygem-tty-color>=0.4.0:devel/rubygem-tty-color +RUN_DEPENDS= rubygem-equatable>=0.6:devel/rubygem-equatable \ + rubygem-tty-color>=0.5:devel/rubygem-tty-color USES= gem USE_RUBY= yes Modified: head/devel/rubygem-pastel/distinfo ============================================================================== --- head/devel/rubygem-pastel/distinfo Wed Jun 19 16:53:49 2019 (r504571) +++ head/devel/rubygem-pastel/distinfo Wed Jun 19 16:53:54 2019 (r504572) @@ -1,3 +1,3 @@ -TIMESTAMP = 1520738909 -SHA256 (rubygem/pastel-0.7.2.gem) = e1d21dd8fb965e5052d1b16164a777fc450c6e187bf199f833a9de3f5303c3f9 -SIZE (rubygem/pastel-0.7.2.gem) = 49152 +TIMESTAMP = 1560957722 +SHA256 (rubygem/pastel-0.7.3.gem) = f577708463313119d2f7303eefb24217879d188e94f2eea8a19373fdcee48354 +SIZE (rubygem/pastel-0.7.3.gem) = 22016 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:54:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32FE015BF109; Wed, 19 Jun 2019 16:54:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CCD376F1D6; Wed, 19 Jun 2019 16:54:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A090727450; Wed, 19 Jun 2019 16:54:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGs07I035383; Wed, 19 Jun 2019 16:54:00 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGs00k035382; Wed, 19 Jun 2019 16:54:00 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191654.x5JGs00k035382@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:54:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504573 - in head/devel/rubygem-tty-table: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel/rubygem-tty-table: . files X-SVN-Commit-Revision: 504573 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CCD376F1D6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:54:05 -0000 Author: sunpoet Date: Wed Jun 19 16:53:59 2019 New Revision: 504573 URL: https://svnweb.freebsd.org/changeset/ports/504573 Log: Fix gemspec for rubygem-equatable 0.6.0 update - Bump PORTREVISION for package change Modified: head/devel/rubygem-tty-table/Makefile head/devel/rubygem-tty-table/files/patch-gemspec Modified: head/devel/rubygem-tty-table/Makefile ============================================================================== --- head/devel/rubygem-tty-table/Makefile Wed Jun 19 16:53:54 2019 (r504572) +++ head/devel/rubygem-tty-table/Makefile Wed Jun 19 16:53:59 2019 (r504573) @@ -3,7 +3,7 @@ PORTNAME= tty-table PORTVERSION= 0.10.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-tty-table/files/patch-gemspec ============================================================================== --- head/devel/rubygem-tty-table/files/patch-gemspec Wed Jun 19 16:53:54 2019 (r504572) +++ head/devel/rubygem-tty-table/files/patch-gemspec Wed Jun 19 16:53:59 2019 (r504573) @@ -1,10 +1,12 @@ ---- tty-table.gemspec.orig 2019-05-20 17:30:25 UTC +--- tty-table.gemspec.orig 2019-06-19 15:32:53 UTC +++ tty-table.gemspec -@@ -24,9 +24,9 @@ Gem::Specification.new do |s| +@@ -23,10 +23,10 @@ Gem::Specification.new do |s| + s.specification_version = 4 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q.freeze, ["~> 0.5.0"]) +- s.add_runtime_dependency(%q.freeze, ["~> 0.5.0"]) - s.add_runtime_dependency(%q.freeze, ["~> 0.4.0"]) ++ s.add_runtime_dependency(%q.freeze, ["~> 0.5"]) + s.add_runtime_dependency(%q.freeze, ["~> 0.4"]) s.add_runtime_dependency(%q.freeze, ["~> 0.7.2"]) - s.add_runtime_dependency(%q.freeze, ["~> 0.6.4"]) From owner-svn-ports-all@freebsd.org Wed Jun 19 16:54:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B98515BF141; Wed, 19 Jun 2019 16:54:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 43E156F271; Wed, 19 Jun 2019 16:54:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B8F4B27451; Wed, 19 Jun 2019 16:54:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGs5pg035512; Wed, 19 Jun 2019 16:54:05 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGs50D035509; Wed, 19 Jun 2019 16:54:05 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191654.x5JGs50D035509@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:54:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504574 - head/net/rubygem-asset_sync X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/net/rubygem-asset_sync X-SVN-Commit-Revision: 504574 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 43E156F271 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:54:10 -0000 Author: sunpoet Date: Wed Jun 19 16:54:05 2019 New Revision: 504574 URL: https://svnweb.freebsd.org/changeset/ports/504574 Log: Update to 2.8.0 Changes: https://github.com/AssetSync/asset_sync/blob/master/CHANGELOG.md Modified: head/net/rubygem-asset_sync/Makefile head/net/rubygem-asset_sync/distinfo Modified: head/net/rubygem-asset_sync/Makefile ============================================================================== --- head/net/rubygem-asset_sync/Makefile Wed Jun 19 16:53:59 2019 (r504573) +++ head/net/rubygem-asset_sync/Makefile Wed Jun 19 16:54:05 2019 (r504574) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= asset_sync -PORTVERSION= 2.7.0 +PORTVERSION= 2.8.0 CATEGORIES= net rubygems MASTER_SITES= RG Modified: head/net/rubygem-asset_sync/distinfo ============================================================================== --- head/net/rubygem-asset_sync/distinfo Wed Jun 19 16:53:59 2019 (r504573) +++ head/net/rubygem-asset_sync/distinfo Wed Jun 19 16:54:05 2019 (r504574) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552651748 -SHA256 (rubygem/asset_sync-2.7.0.gem) = 778f96d296439c2204751af8984da2c9758beddd30bf64eb6c28b111a5f4c851 -SIZE (rubygem/asset_sync-2.7.0.gem) = 39424 +TIMESTAMP = 1560957724 +SHA256 (rubygem/asset_sync-2.8.0.gem) = 4fc1d60836d0b32cce62e0a16bd503a9fde9a2fee66fecfebc07eb82747ab473 +SIZE (rubygem/asset_sync-2.8.0.gem) = 39424 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:54:16 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6058D15BF180; Wed, 19 Jun 2019 16:54:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BA9D36F30F; Wed, 19 Jun 2019 16:54:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E71AC27453; Wed, 19 Jun 2019 16:54:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGsADZ035684; Wed, 19 Jun 2019 16:54:10 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGsAMB035683; Wed, 19 Jun 2019 16:54:10 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191654.x5JGsAMB035683@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:54:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504575 - head/textproc/rubygem-asciidoctor-plantuml X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/textproc/rubygem-asciidoctor-plantuml X-SVN-Commit-Revision: 504575 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BA9D36F30F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:54:16 -0000 Author: sunpoet Date: Wed Jun 19 16:54:10 2019 New Revision: 504575 URL: https://svnweb.freebsd.org/changeset/ports/504575 Log: Update to 0.0.9 Changes: https://github.com/hsanson/asciidoctor-plantuml/commits/master Modified: head/textproc/rubygem-asciidoctor-plantuml/Makefile head/textproc/rubygem-asciidoctor-plantuml/distinfo Modified: head/textproc/rubygem-asciidoctor-plantuml/Makefile ============================================================================== --- head/textproc/rubygem-asciidoctor-plantuml/Makefile Wed Jun 19 16:54:05 2019 (r504574) +++ head/textproc/rubygem-asciidoctor-plantuml/Makefile Wed Jun 19 16:54:10 2019 (r504575) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= asciidoctor-plantuml -PORTVERSION= 0.0.8 +PORTVERSION= 0.0.9 CATEGORIES= textproc rubygems MASTER_SITES= RG @@ -11,10 +11,11 @@ COMMENT= Asciidoctor PlantUML extension LICENSE= MIT -RUN_DEPENDS= rubygem-asciidoctor>=1.5:textproc/rubygem-asciidoctor +RUN_DEPENDS= rubygem-asciidoctor>=1.5.6:textproc/rubygem-asciidoctor -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes .include Modified: head/textproc/rubygem-asciidoctor-plantuml/distinfo ============================================================================== --- head/textproc/rubygem-asciidoctor-plantuml/distinfo Wed Jun 19 16:54:05 2019 (r504574) +++ head/textproc/rubygem-asciidoctor-plantuml/distinfo Wed Jun 19 16:54:10 2019 (r504575) @@ -1,3 +1,3 @@ -TIMESTAMP = 1490206283 -SHA256 (rubygem/asciidoctor-plantuml-0.0.8.gem) = ca62ea5c807a02b2392e5f1e489d650a8504c1b5d952f23edbfa5c441b150974 -SIZE (rubygem/asciidoctor-plantuml-0.0.8.gem) = 7680 +TIMESTAMP = 1560957726 +SHA256 (rubygem/asciidoctor-plantuml-0.0.9.gem) = cb5268a1cc47571d2ab67eeac0461fb377b1937614bd4b2d077ce8c34d90fd53 +SIZE (rubygem/asciidoctor-plantuml-0.0.9.gem) = 7680 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:54:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CCFCB15BF1D5; Wed, 19 Jun 2019 16:54:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 65EDE6F390; Wed, 19 Jun 2019 16:54:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DA08B27454; Wed, 19 Jun 2019 16:54:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGsFge035809; Wed, 19 Jun 2019 16:54:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGsFpw035807; Wed, 19 Jun 2019 16:54:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191654.x5JGsFpw035807@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:54:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504576 - head/german/mythes X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/german/mythes X-SVN-Commit-Revision: 504576 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 65EDE6F390 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:54:21 -0000 Author: sunpoet Date: Wed Jun 19 16:54:15 2019 New Revision: 504576 URL: https://svnweb.freebsd.org/changeset/ports/504576 Log: Update to 2019.06.16 Modified: head/german/mythes/Makefile head/german/mythes/distinfo Modified: head/german/mythes/Makefile ============================================================================== --- head/german/mythes/Makefile Wed Jun 19 16:54:10 2019 (r504575) +++ head/german/mythes/Makefile Wed Jun 19 16:54:15 2019 (r504576) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mythes -PORTVERSION= 2019.06.09 +PORTVERSION= 2019.06.16 CATEGORIES= german textproc MASTER_SITES= LOCAL/sunpoet/${PORTNAME} DISTNAME= Deutscher-Thesaurus-${PORTVERSION:C/\.//g} Modified: head/german/mythes/distinfo ============================================================================== --- head/german/mythes/distinfo Wed Jun 19 16:54:10 2019 (r504575) +++ head/german/mythes/distinfo Wed Jun 19 16:54:15 2019 (r504576) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560176106 -SHA256 (mythes/Deutscher-Thesaurus-20190609.oxt) = 4a62c4f5f3ea92b85856392696307c181cb9341fdc86cca2725a128fc6790019 -SIZE (mythes/Deutscher-Thesaurus-20190609.oxt) = 9376293 +TIMESTAMP = 1560957728 +SHA256 (mythes/Deutscher-Thesaurus-20190616.oxt) = 40211fcf869bf19c717bc2b1b2095b24dffb31b976952ec7ac2a248e176c9a11 +SIZE (mythes/Deutscher-Thesaurus-20190616.oxt) = 9387409 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:54:25 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 30A9015BF204; Wed, 19 Jun 2019 16:54:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C11146F40C; Wed, 19 Jun 2019 16:54:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C23A127455; Wed, 19 Jun 2019 16:54:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGsKZw035934; Wed, 19 Jun 2019 16:54:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGsKW7035932; Wed, 19 Jun 2019 16:54:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191654.x5JGsKW7035932@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:54:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504577 - head/polish/hunspell X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/polish/hunspell X-SVN-Commit-Revision: 504577 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C11146F40C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:54:25 -0000 Author: sunpoet Date: Wed Jun 19 16:54:20 2019 New Revision: 504577 URL: https://svnweb.freebsd.org/changeset/ports/504577 Log: Update to 20190615 Modified: head/polish/hunspell/Makefile head/polish/hunspell/distinfo Modified: head/polish/hunspell/Makefile ============================================================================== --- head/polish/hunspell/Makefile Wed Jun 19 16:54:15 2019 (r504576) +++ head/polish/hunspell/Makefile Wed Jun 19 16:54:20 2019 (r504577) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hunspell -PORTVERSION= 20190608 +PORTVERSION= 20190615 CATEGORIES= polish textproc MASTER_SITES= https://sjp.pl/slownik/ort/ \ LOCAL/sunpoet/${PORTNAME} Modified: head/polish/hunspell/distinfo ============================================================================== --- head/polish/hunspell/distinfo Wed Jun 19 16:54:15 2019 (r504576) +++ head/polish/hunspell/distinfo Wed Jun 19 16:54:20 2019 (r504577) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560176112 -SHA256 (hunspell/sjp-myspell-pl-20190608.zip) = 8857f3350c3577e8e12c51dd352a3260eb65aeb797800b85851f715ce1cd8506 -SIZE (hunspell/sjp-myspell-pl-20190608.zip) = 1223137 +TIMESTAMP = 1560957730 +SHA256 (hunspell/sjp-myspell-pl-20190615.zip) = da0dc68a79437d21911286d71b6503c183fb987f888489be91c58880171974a4 +SIZE (hunspell/sjp-myspell-pl-20190615.zip) = 1223219 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:54:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D2E2315BF238; Wed, 19 Jun 2019 16:54:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 743DF6F4AC; Wed, 19 Jun 2019 16:54:30 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 09F6B27456; Wed, 19 Jun 2019 16:54:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGsPEK036060; Wed, 19 Jun 2019 16:54:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGsPWG036058; Wed, 19 Jun 2019 16:54:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191654.x5JGsPWG036058@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:54:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504578 - head/devel/p5-Test-Strict X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-Test-Strict X-SVN-Commit-Revision: 504578 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 743DF6F4AC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:54:31 -0000 Author: sunpoet Date: Wed Jun 19 16:54:25 2019 New Revision: 504578 URL: https://svnweb.freebsd.org/changeset/ports/504578 Log: Update to 0.52 Changes: https://metacpan.org/changes/distribution/Test-Strict Modified: head/devel/p5-Test-Strict/Makefile head/devel/p5-Test-Strict/distinfo Modified: head/devel/p5-Test-Strict/Makefile ============================================================================== --- head/devel/p5-Test-Strict/Makefile Wed Jun 19 16:54:20 2019 (r504577) +++ head/devel/p5-Test-Strict/Makefile Wed Jun 19 16:54:25 2019 (r504578) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Test-Strict -PORTVERSION= 0.51 +PORTVERSION= 0.52 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Test-Strict/distinfo ============================================================================== --- head/devel/p5-Test-Strict/distinfo Wed Jun 19 16:54:20 2019 (r504577) +++ head/devel/p5-Test-Strict/distinfo Wed Jun 19 16:54:25 2019 (r504578) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560671655 -SHA256 (Test-Strict-0.51.tar.gz) = 571ae5fe3857265da553e8d80ea1c8b319e61bb6af488611532ca852f5c32032 -SIZE (Test-Strict-0.51.tar.gz) = 20848 +TIMESTAMP = 1560957732 +SHA256 (Test-Strict-0.52.tar.gz) = 27dbd2f219cfa6f5ea68a468723dad7851fd936ed0aba19676fb6a92df6ca6d8 +SIZE (Test-Strict-0.52.tar.gz) = 20932 From owner-svn-ports-all@freebsd.org Wed Jun 19 16:54:36 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32DA915BF275; Wed, 19 Jun 2019 16:54:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C32886F545; Wed, 19 Jun 2019 16:54:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 341FD27457; Wed, 19 Jun 2019 16:54:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JGsUYd036182; Wed, 19 Jun 2019 16:54:30 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JGsUos036181; Wed, 19 Jun 2019 16:54:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906191654.x5JGsUos036181@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Wed, 19 Jun 2019 16:54:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504579 - head/math/p5-Math-MPFR X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/math/p5-Math-MPFR X-SVN-Commit-Revision: 504579 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C32886F545 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 16:54:36 -0000 Author: sunpoet Date: Wed Jun 19 16:54:30 2019 New Revision: 504579 URL: https://svnweb.freebsd.org/changeset/ports/504579 Log: Update to 4.12 Changes: https://metacpan.org/changes/distribution/Math-MPFR Modified: head/math/p5-Math-MPFR/Makefile head/math/p5-Math-MPFR/distinfo Modified: head/math/p5-Math-MPFR/Makefile ============================================================================== --- head/math/p5-Math-MPFR/Makefile Wed Jun 19 16:54:25 2019 (r504578) +++ head/math/p5-Math-MPFR/Makefile Wed Jun 19 16:54:30 2019 (r504579) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Math-MPFR -PORTVERSION= 4.11 +PORTVERSION= 4.12 CATEGORIES= math perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/math/p5-Math-MPFR/distinfo ============================================================================== --- head/math/p5-Math-MPFR/distinfo Wed Jun 19 16:54:25 2019 (r504578) +++ head/math/p5-Math-MPFR/distinfo Wed Jun 19 16:54:30 2019 (r504579) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553606078 -SHA256 (Math-MPFR-4.11.tar.gz) = aa0329103ea2c01bff70490bbc71e21b4a73b99dfdca4919f9958298d3825765 -SIZE (Math-MPFR-4.11.tar.gz) = 170190 +TIMESTAMP = 1560957734 +SHA256 (Math-MPFR-4.12.tar.gz) = f2e611aa416b6454436cb229e05aaab1bbfce0a844737e6f7c82bc4763567eef +SIZE (Math-MPFR-4.12.tar.gz) = 178266 From owner-svn-ports-all@freebsd.org Wed Jun 19 17:13:58 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 22D9515C01F6; Wed, 19 Jun 2019 17:13:58 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BB496708FE; Wed, 19 Jun 2019 17:13:57 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 901D9277B7; Wed, 19 Jun 2019 17:13:57 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JHDvc6046606; Wed, 19 Jun 2019 17:13:57 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JHDvd2046605; Wed, 19 Jun 2019 17:13:57 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201906191713.x5JHDvd2046605@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Wed, 19 Jun 2019 17:13:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504580 - head/net/ntopng X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: head/net/ntopng X-SVN-Commit-Revision: 504580 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BB496708FE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.962,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 17:13:58 -0000 Author: madpilot Date: Wed Jun 19 17:13:56 2019 New Revision: 504580 URL: https://svnweb.freebsd.org/changeset/ports/504580 Log: Update ntopng to latest upstream release snapshot. Modified: head/net/ntopng/Makefile head/net/ntopng/distinfo Modified: head/net/ntopng/Makefile ============================================================================== --- head/net/ntopng/Makefile Wed Jun 19 16:54:30 2019 (r504579) +++ head/net/ntopng/Makefile Wed Jun 19 17:13:56 2019 (r504580) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ntopng -PORTVERSION= 3.8.d20190327 +PORTVERSION= 3.8.d20190619 PORTEPOCH= 1 CATEGORIES= net @@ -36,7 +36,7 @@ PLIST_SUB= NTOPNGUSER="${USERS}" NTOPNGROUP="${GROUPS} USE_GITHUB= yes GH_ACCOUNT= ntop -GH_TAGNAME= c5da74a +GH_TAGNAME= ae2231f CPE_VENDOR= ntop Modified: head/net/ntopng/distinfo ============================================================================== --- head/net/ntopng/distinfo Wed Jun 19 16:54:30 2019 (r504579) +++ head/net/ntopng/distinfo Wed Jun 19 17:13:56 2019 (r504580) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553804284 -SHA256 (ntop-ntopng-3.8.d20190327-c5da74a_GH0.tar.gz) = b52a07b476687325c903463af43a73ff31ed36eb28c1863e3a319480ecd9ad1b -SIZE (ntop-ntopng-3.8.d20190327-c5da74a_GH0.tar.gz) = 33913143 +TIMESTAMP = 1560946727 +SHA256 (ntop-ntopng-3.8.d20190619-ae2231f_GH0.tar.gz) = 8c6c2b9e238df6b91aae000408189660417302918fdcf3fea9ca7ef8ea1f6af7 +SIZE (ntop-ntopng-3.8.d20190619-ae2231f_GH0.tar.gz) = 33913635 From owner-svn-ports-all@freebsd.org Wed Jun 19 17:18:07 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 393F815C02BF; Wed, 19 Jun 2019 17:18:07 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C898070A82; Wed, 19 Jun 2019 17:18:06 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9EB10277B9; Wed, 19 Jun 2019 17:18:06 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JHI6Uh047008; Wed, 19 Jun 2019 17:18:06 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JHI5s9047002; Wed, 19 Jun 2019 17:18:05 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201906191718.x5JHI5s9047002@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Wed, 19 Jun 2019 17:18:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504581 - in head/net: asterisk13 asterisk15 asterisk16 pjsip pjsip/files X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in head/net: asterisk13 asterisk15 asterisk16 pjsip pjsip/files X-SVN-Commit-Revision: 504581 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C898070A82 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 17:18:07 -0000 Author: madpilot Date: Wed Jun 19 17:18:05 2019 New Revision: 504581 URL: https://svnweb.freebsd.org/changeset/ports/504581 Log: - Update pjsip to 2.9 - Remove patches already applied upstream - Bump PORTREVISION on asterisk ports to avoid crashes Deleted: head/net/pjsip/files/patch-0010-outgoing_connected_line_method_update head/net/pjsip/files/patch-0020-Fixed-2172-Avoid-double-reference-counter-decrements Modified: head/net/asterisk13/Makefile head/net/asterisk15/Makefile head/net/asterisk16/Makefile head/net/pjsip/Makefile head/net/pjsip/distinfo head/net/pjsip/pkg-plist Modified: head/net/asterisk13/Makefile ============================================================================== --- head/net/asterisk13/Makefile Wed Jun 19 17:13:56 2019 (r504580) +++ head/net/asterisk13/Makefile Wed Jun 19 17:18:05 2019 (r504581) @@ -2,6 +2,7 @@ PORTNAME= asterisk PORTVERSION= 13.27.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= https://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ Modified: head/net/asterisk15/Makefile ============================================================================== --- head/net/asterisk15/Makefile Wed Jun 19 17:13:56 2019 (r504580) +++ head/net/asterisk15/Makefile Wed Jun 19 17:18:05 2019 (r504581) @@ -2,7 +2,7 @@ PORTNAME= asterisk PORTVERSION= 15.7.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= https://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ Modified: head/net/asterisk16/Makefile ============================================================================== --- head/net/asterisk16/Makefile Wed Jun 19 17:13:56 2019 (r504580) +++ head/net/asterisk16/Makefile Wed Jun 19 17:18:05 2019 (r504581) @@ -2,6 +2,7 @@ PORTNAME= asterisk PORTVERSION= 16.4.0 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= https://downloads.asterisk.org/pub/telephony/%SUBDIR%/:DEFAULT,g729 MASTER_SITE_SUBDIR= asterisk/ \ Modified: head/net/pjsip/Makefile ============================================================================== --- head/net/pjsip/Makefile Wed Jun 19 17:13:56 2019 (r504580) +++ head/net/pjsip/Makefile Wed Jun 19 17:18:05 2019 (r504581) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= pjsip -PORTVERSION= 2.8 -PORTREVISION= 2 +PORTVERSION= 2.9 CATEGORIES= net MASTER_SITES= http://www.pjsip.org/release/${PORTVERSION}/ DISTNAME= pjproject-${DISTVERSION} Modified: head/net/pjsip/distinfo ============================================================================== --- head/net/pjsip/distinfo Wed Jun 19 17:13:56 2019 (r504580) +++ head/net/pjsip/distinfo Wed Jun 19 17:18:05 2019 (r504581) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544602652 -SHA256 (pjproject-2.8.tar.bz2) = 503d0bd7f9f13dc1492ac9b71b761b1089851fbb608b9a13996edc3c42006f79 -SIZE (pjproject-2.8.tar.bz2) = 4976501 +TIMESTAMP = 1560947683 +SHA256 (pjproject-2.9.tar.bz2) = d185ef7855c8ec07191dde92f54b65a7a4b7a6f7bf8c46f7af35ceeb1da2a636 +SIZE (pjproject-2.9.tar.bz2) = 5009546 Modified: head/net/pjsip/pkg-plist ============================================================================== --- head/net/pjsip/pkg-plist Wed Jun 19 17:13:56 2019 (r504580) +++ head/net/pjsip/pkg-plist Wed Jun 19 17:18:05 2019 (r504581) @@ -220,6 +220,7 @@ include/pjmedia/transport.h include/pjmedia/types.h include/pjmedia/vid_codec_util.h include/pjmedia/vid_codec.h +include/pjmedia/vid_conf.h include/pjmedia/vid_port.h include/pjmedia/vid_stream.h include/pjmedia/vid_tee.h From owner-svn-ports-all@freebsd.org Wed Jun 19 17:25:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D02315C0DFD; Wed, 19 Jun 2019 17:25:19 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A2A1B71391; Wed, 19 Jun 2019 17:25:18 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7A74827960; Wed, 19 Jun 2019 17:25:18 +0000 (UTC) (envelope-from cpm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JHPIuG052185; Wed, 19 Jun 2019 17:25:18 GMT (envelope-from cpm@FreeBSD.org) Received: (from cpm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JHPIQl052184; Wed, 19 Jun 2019 17:25:18 GMT (envelope-from cpm@FreeBSD.org) Message-Id: <201906191725.x5JHPIQl052184@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cpm set sender to cpm@FreeBSD.org using -f From: "Carlos J. Puga Medina" Date: Wed, 19 Jun 2019 17:25:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504582 - head/www/chromium X-SVN-Group: ports-head X-SVN-Commit-Author: cpm X-SVN-Commit-Paths: head/www/chromium X-SVN-Commit-Revision: 504582 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A2A1B71391 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.962,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 17:25:19 -0000 Author: cpm Date: Wed Jun 19 17:25:17 2019 New Revision: 504582 URL: https://svnweb.freebsd.org/changeset/ports/504582 Log: www/chromium: Update to 75.0.3770.100 Changelog: https://chromium.googlesource.com/chromium/src/+log/75.0.3770.90..75.0.3770.100?pretty=fuller&n=10000 Modified: head/www/chromium/Makefile head/www/chromium/distinfo Modified: head/www/chromium/Makefile ============================================================================== --- head/www/chromium/Makefile Wed Jun 19 17:18:05 2019 (r504581) +++ head/www/chromium/Makefile Wed Jun 19 17:25:17 2019 (r504582) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= chromium -PORTVERSION= 75.0.3770.90 -PORTREVISION= 1 +PORTVERSION= 75.0.3770.100 CATEGORIES?= www MASTER_SITES= https://commondatastorage.googleapis.com/chromium-browser-official/ \ LOCAL/cpm/chromium/:fonts Modified: head/www/chromium/distinfo ============================================================================== --- head/www/chromium/distinfo Wed Jun 19 17:18:05 2019 (r504581) +++ head/www/chromium/distinfo Wed Jun 19 17:25:17 2019 (r504582) @@ -1,7 +1,7 @@ -TIMESTAMP = 1560500971 -SHA256 (chromium-75.0.3770.90.tar.xz) = b1b59abbe19ecb88c17d99fa68f5c1c5585a5d66c100858f944aa3b93b943839 -SIZE (chromium-75.0.3770.90.tar.xz) = 708212580 -SHA256 (chromium-75.0.3770.90-testdata.tar.xz) = 56b3778aa3698c2dd8057fe34ec72e6c0cc845ebaeb1dc6e09d6e8e9aabecd65 -SIZE (chromium-75.0.3770.90-testdata.tar.xz) = 352590588 +TIMESTAMP = 1560931290 +SHA256 (chromium-75.0.3770.100.tar.xz) = 9e1360101b6d9f9635e540db77626e3e15b452f413d8750518244ac37b73fca0 +SIZE (chromium-75.0.3770.100.tar.xz) = 708247700 +SHA256 (chromium-75.0.3770.100-testdata.tar.xz) = ed90b63310fb8013b31bef1c0f89700f80f680ceb6e826ec70a69ed334f4310c +SIZE (chromium-75.0.3770.100-testdata.tar.xz) = 352584964 SHA256 (test_fonts.tar.xz) = cf9cbe3b7f1c4c42d426bddc65ec178d333ad7e205a36fe0a606a3c0c545ece1 SIZE (test_fonts.tar.xz) = 200040 From owner-svn-ports-all@freebsd.org Wed Jun 19 17:25:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3501415C0E46; Wed, 19 Jun 2019 17:25:26 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BA844713EE; Wed, 19 Jun 2019 17:25:25 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3F8E527961; Wed, 19 Jun 2019 17:25:24 +0000 (UTC) (envelope-from kmoore@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JHPOD3052348; Wed, 19 Jun 2019 17:25:24 GMT (envelope-from kmoore@FreeBSD.org) Received: (from kmoore@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JHPNuK052345; Wed, 19 Jun 2019 17:25:23 GMT (envelope-from kmoore@FreeBSD.org) Message-Id: <201906191725.x5JHPNuK052345@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kmoore set sender to kmoore@FreeBSD.org using -f From: Kris Moore Date: Wed, 19 Jun 2019 17:25:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504583 - in head/sysutils: openzfs openzfs-kmod X-SVN-Group: ports-head X-SVN-Commit-Author: kmoore X-SVN-Commit-Paths: in head/sysutils: openzfs openzfs-kmod X-SVN-Commit-Revision: 504583 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BA844713EE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 17:25:26 -0000 Author: kmoore Date: Wed Jun 19 17:25:23 2019 New Revision: 504583 URL: https://svnweb.freebsd.org/changeset/ports/504583 Log: - Update OpenZFS to 2019061900 - Adds some missing FreeBSD sysctls - Cleanup messages at kldload time Modified: head/sysutils/openzfs-kmod/Makefile head/sysutils/openzfs-kmod/distinfo head/sysutils/openzfs/Makefile head/sysutils/openzfs/distinfo Modified: head/sysutils/openzfs-kmod/Makefile ============================================================================== --- head/sysutils/openzfs-kmod/Makefile Wed Jun 19 17:25:17 2019 (r504582) +++ head/sysutils/openzfs-kmod/Makefile Wed Jun 19 17:25:23 2019 (r504583) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= openzfs -PORTVERSION= 2019061000 +PORTVERSION= 2019061900 DISTVERSIONPREFIX= v CATEGORIES= sysutils PKGNAMESUFFIX?= -kmod @@ -15,7 +15,7 @@ USES= kmod USE_GITHUB= yes GH_ACCOUNT= zfsonfreebsd GH_PROJECT= ZoF -GH_TAGNAME= ea4b6fc +GH_TAGNAME= 494ac1a KMODTARGET?= openzfs.ko PLIST_FILES= ${KMODDIR}/${KMODTARGET} Modified: head/sysutils/openzfs-kmod/distinfo ============================================================================== --- head/sysutils/openzfs-kmod/distinfo Wed Jun 19 17:25:17 2019 (r504582) +++ head/sysutils/openzfs-kmod/distinfo Wed Jun 19 17:25:23 2019 (r504583) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560197751 -SHA256 (zfsonfreebsd-ZoF-v2019061000-ea4b6fc_GH0.tar.gz) = b54ee5f1956974547aff5c916611e57be4cb435131201f725f0e37c9bd0836c8 -SIZE (zfsonfreebsd-ZoF-v2019061000-ea4b6fc_GH0.tar.gz) = 6749043 +TIMESTAMP = 1560962720 +SHA256 (zfsonfreebsd-ZoF-v2019061900-494ac1a_GH0.tar.gz) = 90e3f8a8976e652139bb2bdbbb429277237748e5975785802b32958edfa2c445 +SIZE (zfsonfreebsd-ZoF-v2019061900-494ac1a_GH0.tar.gz) = 6744878 Modified: head/sysutils/openzfs/Makefile ============================================================================== --- head/sysutils/openzfs/Makefile Wed Jun 19 17:25:17 2019 (r504582) +++ head/sysutils/openzfs/Makefile Wed Jun 19 17:25:23 2019 (r504583) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= openzfs -PORTVERSION= 2019061000 +PORTVERSION= 2019061900 DISTVERSIONPREFIX= v CATEGORIES= sysutils @@ -25,7 +25,7 @@ OPTIONS_SUB= yes USE_GITHUB= yes GH_ACCOUNT= zfsonfreebsd GH_PROJECT= ZoF -GH_TAGNAME= ea4b6fc +GH_TAGNAME= 494ac1a .include Modified: head/sysutils/openzfs/distinfo ============================================================================== --- head/sysutils/openzfs/distinfo Wed Jun 19 17:25:17 2019 (r504582) +++ head/sysutils/openzfs/distinfo Wed Jun 19 17:25:23 2019 (r504583) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560196955 -SHA256 (zfsonfreebsd-ZoF-v2019061000-ea4b6fc_GH0.tar.gz) = b54ee5f1956974547aff5c916611e57be4cb435131201f725f0e37c9bd0836c8 -SIZE (zfsonfreebsd-ZoF-v2019061000-ea4b6fc_GH0.tar.gz) = 6749043 +TIMESTAMP = 1560962703 +SHA256 (zfsonfreebsd-ZoF-v2019061900-494ac1a_GH0.tar.gz) = 90e3f8a8976e652139bb2bdbbb429277237748e5975785802b32958edfa2c445 +SIZE (zfsonfreebsd-ZoF-v2019061900-494ac1a_GH0.tar.gz) = 6744878 From owner-svn-ports-all@freebsd.org Wed Jun 19 17:50:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5BB0C15C487D; Wed, 19 Jun 2019 17:50:37 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A5C4A73243; Wed, 19 Jun 2019 17:50:36 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 648D027CE9; Wed, 19 Jun 2019 17:50:36 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JHoaBo063295; Wed, 19 Jun 2019 17:50:36 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JHoZFQ063246; Wed, 19 Jun 2019 17:50:35 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906191750.x5JHoZFQ063246@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 19 Jun 2019 17:50:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504584 - head/databases/pxtools X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/databases/pxtools X-SVN-Commit-Revision: 504584 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A5C4A73243 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.92 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.92)[-0.925,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 17:50:37 -0000 Author: danfe Date: Wed Jun 19 17:50:35 2019 New Revision: 504584 URL: https://svnweb.freebsd.org/changeset/ports/504584 Log: - Remove broken mirror from the MASTER_SITES - Fix database parsing on 64-bit architectures: it used `void *' pointer (only as a placeholder), while its size was used in read(2) calls which resulted in wrong generated table names - Add a Y2K option (Y2k workaround for Paradox < 7.0) - Convert to USES+=localbase, fix a typo in the port description, and take maintainership as I might be using it sometimes Modified: head/databases/pxtools/Makefile head/databases/pxtools/pkg-descr Modified: head/databases/pxtools/Makefile ============================================================================== --- head/databases/pxtools/Makefile Wed Jun 19 17:25:23 2019 (r504583) +++ head/databases/pxtools/Makefile Wed Jun 19 17:50:35 2019 (r504584) @@ -5,18 +5,23 @@ PORTNAME= pxtools PORTVERSION= 0.0.20 PORTREVISION= 4 CATEGORIES= databases -MASTER_SITES= http://jan.kneschke.de/downloads/pxtools/ \ - http://www.sourcefiles.org/Databases/Utilities/Conversion/ +MASTER_SITES= http://jan.kneschke.de/downloads/pxtools/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= danfe@FreeBSD.org COMMENT= Collection of tools to work with Paradox databases LICENSE= GPLv2 -USES= gettext +USES= gettext localbase GNU_CONFIGURE= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib +OPTIONS_DEFINE= Y2K +Y2K_DESC= Y2k workaround for Paradox < 7.0 + +Y2K_CONFIGURE_ON= --enable-y2k + +post-patch: + @${REINPLACE_CMD} -e 's,void \*ptr,int ptr,' \ + ${WRKSRC}/src/pxparse.c .include Modified: head/databases/pxtools/pkg-descr ============================================================================== --- head/databases/pxtools/pkg-descr Wed Jun 19 17:25:23 2019 (r504583) +++ head/databases/pxtools/pkg-descr Wed Jun 19 17:50:35 2019 (r504584) @@ -5,6 +5,6 @@ pxtools consists of the following: the important information. * pxsqldump/pxcsvdump are utilities to extract the data from a Paradox-database. The output is an SQL-/CSV-dump that can be - used to recreate the database in an SQL-enviroment. + used to recreate the database in an SQL environment. WWW: http://jan.kneschke.de/projects/pxtools/ From owner-svn-ports-all@freebsd.org Wed Jun 19 17:55:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0F2915C531B; Wed, 19 Jun 2019 17:55:43 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 68EBF73A48; Wed, 19 Jun 2019 17:55:43 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 5836D1142E; Wed, 19 Jun 2019 17:55:43 +0000 (UTC) Date: Wed, 19 Jun 2019 17:55:43 +0000 From: Alexey Dokuchaev To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504584 - head/databases/pxtools Message-ID: <20190619175543.GA18758@FreeBSD.org> References: <201906191750.x5JHoZFQ063246@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201906191750.x5JHoZFQ063246@repo.freebsd.org> User-Agent: Mutt/1.11.4 (2019-03-13) X-Rspamd-Queue-Id: 68EBF73A48 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.75 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-1.000,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.75)[-0.746,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 17:55:43 -0000 On Wed, Jun 19, 2019 at 05:50:35PM +0000, Alexey Dokuchaev wrote: > New Revision: 504584 > URL: https://svnweb.freebsd.org/changeset/ports/504584 > > Log: > - Remove broken mirror from the MASTER_SITES > - Fix database parsing on 64-bit architectures: it used `void *' > pointer (only as a placeholder), while its size was used in > read(2) calls which resulted in wrong generated table names No PORTREVISION bump just yet as there're more bugs to fix (currently, conversion on amd64 produces different output than on reference i386) on my corpus of *.DB files. But at least table names are correct now. ./danfe From owner-svn-ports-all@freebsd.org Wed Jun 19 20:07:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC98315C892D; Wed, 19 Jun 2019 20:07:45 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 726E480571; Wed, 19 Jun 2019 20:07:45 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2F789150A; Wed, 19 Jun 2019 20:07:45 +0000 (UTC) (envelope-from eugen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JK7iOf036148; Wed, 19 Jun 2019 20:07:44 GMT (envelope-from eugen@FreeBSD.org) Received: (from eugen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JK7i2r036145; Wed, 19 Jun 2019 20:07:44 GMT (envelope-from eugen@FreeBSD.org) Message-Id: <201906192007.x5JK7i2r036145@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eugen set sender to eugen@FreeBSD.org using -f From: Eugene Grosbein Date: Wed, 19 Jun 2019 20:07:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504585 - in head/net/fping: . files X-SVN-Group: ports-head X-SVN-Commit-Author: eugen X-SVN-Commit-Paths: in head/net/fping: . files X-SVN-Commit-Revision: 504585 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 726E480571 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 20:07:46 -0000 Author: eugen Date: Wed Jun 19 20:07:44 2019 New Revision: 504585 URL: https://svnweb.freebsd.org/changeset/ports/504585 Log: net/fping: fix WITHOUT_IPV6 mode If one builds and uses net/fping version 4.2 with option IPV6 disabled, the command fping -4 always fails with wrong error message: fping: can't specify both -4 and -6 This makes it impossible using fping probes with SmokePing as it runs fping with -4 option. This change fixes this. Also, do not install symlinks for fping6 and manual in this case. PORTREVISION not bumped as default build is not affected. PR: 238327 Approved by: jharris@widomaker.com (maintainter timeout, 2 weeks) Added: head/net/fping/files/ head/net/fping/files/patch-src_fping.c (contents, props changed) Modified: head/net/fping/Makefile head/net/fping/pkg-plist Modified: head/net/fping/Makefile ============================================================================== --- head/net/fping/Makefile Wed Jun 19 17:50:35 2019 (r504584) +++ head/net/fping/Makefile Wed Jun 19 20:07:44 2019 (r504585) @@ -24,10 +24,11 @@ CONFIGURE_ARGS= --bindir="${PREFIX}/sbin" \ --enable-ipv4 INSTALL_TARGET= install-strip -OPTIONS_DEFINE=IPV6 +OPTIONS_DEFINE= IPV6 +OPTIONS_SUB= yes IPV6_CONFIGURE_OFF=--disable-ipv6 -post-install: +post-install-IPV6-on: ${RLN} ${STAGEDIR}${PREFIX}/sbin/fping ${STAGEDIR}${PREFIX}/sbin/fping6 ${RLN} ${STAGEDIR}${PREFIX}/man/man8/fping.8 ${STAGEDIR}${PREFIX}/man/man8/fping6.8 Added: head/net/fping/files/patch-src_fping.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/fping/files/patch-src_fping.c Wed Jun 19 20:07:44 2019 (r504585) @@ -0,0 +1,11 @@ +--- src/fping.c.orig 2019-02-19 20:54:45 UTC ++++ src/fping.c +@@ -427,7 +427,7 @@ int main(int argc, char** argv) + while ((c = optparse_long(&optparse_state, longopts, NULL)) != EOF) { + switch (c) { + case '4': +- if (hints_ai_family != AF_UNSPEC) { ++ if (hints_ai_family == AF_INET6) { + fprintf(stderr, "%s: can't specify both -4 and -6\n", prog); + exit(1); + } Modified: head/net/fping/pkg-plist ============================================================================== --- head/net/fping/pkg-plist Wed Jun 19 17:50:35 2019 (r504584) +++ head/net/fping/pkg-plist Wed Jun 19 20:07:44 2019 (r504585) @@ -1,6 +1,6 @@ @mode 4555 sbin/fping -sbin/fping6 +%%IPV6%%sbin/fping6 @mode man/man8/fping.8.gz -man/man8/fping6.8.gz +%%IPV6%%man/man8/fping6.8.gz From owner-svn-ports-all@freebsd.org Wed Jun 19 21:07:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C612615CA551; Wed, 19 Jun 2019 21:07:26 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6D451831A3; Wed, 19 Jun 2019 21:07:26 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4618F1F88; Wed, 19 Jun 2019 21:07:26 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JL7QMH068022; Wed, 19 Jun 2019 21:07:26 GMT (envelope-from glewis@FreeBSD.org) Received: (from glewis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JL7POd068021; Wed, 19 Jun 2019 21:07:25 GMT (envelope-from glewis@FreeBSD.org) Message-Id: <201906192107.x5JL7POd068021@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glewis set sender to glewis@FreeBSD.org using -f From: Greg Lewis Date: Wed, 19 Jun 2019 21:07:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504586 - head/math/gnuplot X-SVN-Group: ports-head X-SVN-Commit-Author: glewis X-SVN-Commit-Paths: head/math/gnuplot X-SVN-Commit-Revision: 504586 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6D451831A3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 21:07:26 -0000 Author: glewis Date: Wed Jun 19 21:07:25 2019 New Revision: 504586 URL: https://svnweb.freebsd.org/changeset/ports/504586 Log: . Update to 5.2.7 Modified: head/math/gnuplot/Makefile head/math/gnuplot/distinfo Modified: head/math/gnuplot/Makefile ============================================================================== --- head/math/gnuplot/Makefile Wed Jun 19 20:07:44 2019 (r504585) +++ head/math/gnuplot/Makefile Wed Jun 19 21:07:25 2019 (r504586) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= gnuplot -PORTVERSION= 5.2.6 -PORTREVISION= 1 +PORTVERSION= 5.2.7 CATEGORIES= math graphics MASTER_SITES= SF Modified: head/math/gnuplot/distinfo ============================================================================== --- head/math/gnuplot/distinfo Wed Jun 19 20:07:44 2019 (r504585) +++ head/math/gnuplot/distinfo Wed Jun 19 21:07:25 2019 (r504586) @@ -1,3 +1,3 @@ -TIMESTAMP = 1546527828 -SHA256 (gnuplot-5.2.6.tar.gz) = 35dd8f013139e31b3028fac280ee12d4b1346d9bb5c501586d1b5a04ae7a94ee -SIZE (gnuplot-5.2.6.tar.gz) = 5321601 +TIMESTAMP = 1560976099 +SHA256 (gnuplot-5.2.7.tar.gz) = 97fe503ff3b2e356fe2ae32203fc7fd2cf9cef1f46b60fe46dc501a228b9f4ed +SIZE (gnuplot-5.2.7.tar.gz) = 5335673 From owner-svn-ports-all@freebsd.org Wed Jun 19 21:13:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 89DC815CA943; Wed, 19 Jun 2019 21:13:15 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 261B7837CA; Wed, 19 Jun 2019 21:13:15 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E4A37212C; Wed, 19 Jun 2019 21:13:14 +0000 (UTC) (envelope-from glewis@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JLDEA7073314; Wed, 19 Jun 2019 21:13:14 GMT (envelope-from glewis@FreeBSD.org) Received: (from glewis@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JLDEnQ073313; Wed, 19 Jun 2019 21:13:14 GMT (envelope-from glewis@FreeBSD.org) Message-Id: <201906192113.x5JLDEnQ073313@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: glewis set sender to glewis@FreeBSD.org using -f From: Greg Lewis Date: Wed, 19 Jun 2019 21:13:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504587 - head/math/gnuplot-tex-extras X-SVN-Group: ports-head X-SVN-Commit-Author: glewis X-SVN-Commit-Paths: head/math/gnuplot-tex-extras X-SVN-Commit-Revision: 504587 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 261B7837CA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 21:13:15 -0000 Author: glewis Date: Wed Jun 19 21:13:14 2019 New Revision: 504587 URL: https://svnweb.freebsd.org/changeset/ports/504587 Log: . Update to 5.2.7 Modified: head/math/gnuplot-tex-extras/Makefile head/math/gnuplot-tex-extras/distinfo Modified: head/math/gnuplot-tex-extras/Makefile ============================================================================== --- head/math/gnuplot-tex-extras/Makefile Wed Jun 19 21:07:25 2019 (r504586) +++ head/math/gnuplot-tex-extras/Makefile Wed Jun 19 21:13:14 2019 (r504587) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= gnuplot -PORTVERSION= 5.2.6 +PORTVERSION= 5.2.7 CATEGORIES= math graphics MASTER_SITES= SF PKGNAMESUFFIX= -tex-extras Modified: head/math/gnuplot-tex-extras/distinfo ============================================================================== --- head/math/gnuplot-tex-extras/distinfo Wed Jun 19 21:07:25 2019 (r504586) +++ head/math/gnuplot-tex-extras/distinfo Wed Jun 19 21:13:14 2019 (r504587) @@ -1,3 +1,3 @@ -TIMESTAMP = 1546527828 -SHA256 (gnuplot-5.2.6.tar.gz) = 35dd8f013139e31b3028fac280ee12d4b1346d9bb5c501586d1b5a04ae7a94ee -SIZE (gnuplot-5.2.6.tar.gz) = 5321601 +TIMESTAMP = 1560978692 +SHA256 (gnuplot-5.2.7.tar.gz) = 97fe503ff3b2e356fe2ae32203fc7fd2cf9cef1f46b60fe46dc501a228b9f4ed +SIZE (gnuplot-5.2.7.tar.gz) = 5335673 From owner-svn-ports-all@freebsd.org Wed Jun 19 22:19:21 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5BE2A15CB945; Wed, 19 Jun 2019 22:19:21 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EF59C852F3; Wed, 19 Jun 2019 22:19:20 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AA4C12C10; Wed, 19 Jun 2019 22:19:20 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMJKkx005498; Wed, 19 Jun 2019 22:19:20 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMJBO6005453; Wed, 19 Jun 2019 22:19:11 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201906192219.x5JMJBO6005453@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Wed, 19 Jun 2019 22:19:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504588 - in head: Mk/Uses audio/plasma5-plasma-pa deskutils/plasma5-milou deskutils/plasma5-sddm-kcm devel/plasma5-khotkeys devel/plasma5-kwrited devel/plasma5-plasma-sdk security/plas... X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head: Mk/Uses audio/plasma5-plasma-pa deskutils/plasma5-milou deskutils/plasma5-sddm-kcm devel/plasma5-khotkeys devel/plasma5-kwrited devel/plasma5-plasma-sdk security/plasma5-kscreenlocker securit... X-SVN-Commit-Revision: 504588 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EF59C852F3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:19:21 -0000 Author: tcberner Date: Wed Jun 19 22:19:11 2019 New Revision: 504588 URL: https://svnweb.freebsd.org/changeset/ports/504588 Log: Update KDE Plasma Desktop to 5.16.1 Announcement: https://kde.org/announcements/plasma-5.16.1.php Modified: head/Mk/Uses/kde.mk head/audio/plasma5-plasma-pa/distinfo head/deskutils/plasma5-milou/distinfo head/deskutils/plasma5-sddm-kcm/distinfo head/devel/plasma5-khotkeys/distinfo head/devel/plasma5-kwrited/distinfo head/devel/plasma5-plasma-sdk/distinfo head/security/plasma5-kscreenlocker/distinfo head/security/plasma5-ksshaskpass/distinfo head/security/plasma5-kwallet-pam/distinfo head/sysutils/plasma5-discover/distinfo head/sysutils/plasma5-drkonqi/distinfo head/sysutils/plasma5-kde-cli-tools/distinfo head/sysutils/plasma5-kinfocenter/distinfo head/sysutils/plasma5-kmenuedit/distinfo head/sysutils/plasma5-ksysguard/distinfo head/sysutils/plasma5-libksysguard/distinfo head/sysutils/plasma5-polkit-kde-agent-1/distinfo head/sysutils/plasma5-powerdevil/distinfo head/sysutils/plasma5-systemsettings/distinfo head/sysutils/plasma5-user-manager/distinfo head/www/plasma5-plasma-browser-integration/distinfo head/x11-themes/plasma5-breeze-gtk/distinfo head/x11-themes/plasma5-breeze/distinfo head/x11-themes/plasma5-kde-gtk-config/distinfo head/x11-themes/plasma5-oxygen/distinfo head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo head/x11-toolkits/plasma5-kdeplasma-addons/distinfo head/x11-wm/plasma5-kdecoration/distinfo head/x11-wm/plasma5-kwin/distinfo head/x11/plasma5-kactivitymanagerd/distinfo head/x11/plasma5-kgamma5/distinfo head/x11/plasma5-kscreen/distinfo head/x11/plasma5-kwayland-integration/distinfo head/x11/plasma5-libkscreen/distinfo head/x11/plasma5-plasma-desktop/distinfo head/x11/plasma5-plasma-desktop/pkg-plist head/x11/plasma5-plasma-integration/distinfo head/x11/plasma5-plasma-workspace/distinfo head/x11/plasma5-plasma-workspace/pkg-plist Modified: head/Mk/Uses/kde.mk ============================================================================== --- head/Mk/Uses/kde.mk Wed Jun 19 21:13:14 2019 (r504587) +++ head/Mk/Uses/kde.mk Wed Jun 19 22:19:11 2019 (r504588) @@ -54,7 +54,7 @@ _KDE_RELNAME= KDE${_KDE_VERSION} # === VERSIONS OF THE DIFFERENT COMPONENTS ===================================== # Current KDE desktop. -KDE_PLASMA_VERSION?= 5.16.0 +KDE_PLASMA_VERSION?= 5.16.1 KDE_PLASMA_BRANCH?= stable # Current KDE frameworks. Modified: head/audio/plasma5-plasma-pa/distinfo ============================================================================== --- head/audio/plasma5-plasma-pa/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/audio/plasma5-plasma-pa/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882302 -SHA256 (KDE/plasma/5.16.0/plasma-pa-5.16.0.tar.xz) = abdd38458c75103bde1278a90b5b8660b75c2e4fa41d38c5c990b409896af5e2 -SIZE (KDE/plasma/5.16.0/plasma-pa-5.16.0.tar.xz) = 100608 +TIMESTAMP = 1560918266 +SHA256 (KDE/plasma/5.16.1/plasma-pa-5.16.1.tar.xz) = 693e48a8db6f5d60c49b540f6570f431390a326ff21f654ed758a4aab1848f88 +SIZE (KDE/plasma/5.16.1/plasma-pa-5.16.1.tar.xz) = 100584 Modified: head/deskutils/plasma5-milou/distinfo ============================================================================== --- head/deskutils/plasma5-milou/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/deskutils/plasma5-milou/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882302 -SHA256 (KDE/plasma/5.16.0/milou-5.16.0.tar.xz) = 047658479fdddb6b3290ca4b6c4263827d80d70bc9de7c88bdc6b5707ba47e3e -SIZE (KDE/plasma/5.16.0/milou-5.16.0.tar.xz) = 57304 +TIMESTAMP = 1560918267 +SHA256 (KDE/plasma/5.16.1/milou-5.16.1.tar.xz) = e99556b7253ee3719b980adfe7481c9111741fb79e1b60f7b99679bb2bdbf788 +SIZE (KDE/plasma/5.16.1/milou-5.16.1.tar.xz) = 57372 Modified: head/deskutils/plasma5-sddm-kcm/distinfo ============================================================================== --- head/deskutils/plasma5-sddm-kcm/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/deskutils/plasma5-sddm-kcm/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882303 -SHA256 (KDE/plasma/5.16.0/sddm-kcm-5.16.0.tar.xz) = dba4bf7e730553459f00b2102c56b468a385ca5dfe32ce7a13d10414e109ff80 -SIZE (KDE/plasma/5.16.0/sddm-kcm-5.16.0.tar.xz) = 62152 +TIMESTAMP = 1560918267 +SHA256 (KDE/plasma/5.16.1/sddm-kcm-5.16.1.tar.xz) = 4ff7cf23bd2f132c1cdf122564fdf85934fd268da27f60517bbc0ea02d81c72d +SIZE (KDE/plasma/5.16.1/sddm-kcm-5.16.1.tar.xz) = 62128 Modified: head/devel/plasma5-khotkeys/distinfo ============================================================================== --- head/devel/plasma5-khotkeys/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/devel/plasma5-khotkeys/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882303 -SHA256 (KDE/plasma/5.16.0/khotkeys-5.16.0.tar.xz) = 111c1f2af7d89a327baf5e8902a1045068727038f75b680435c1600d8e41df18 -SIZE (KDE/plasma/5.16.0/khotkeys-5.16.0.tar.xz) = 1865856 +TIMESTAMP = 1560918269 +SHA256 (KDE/plasma/5.16.1/khotkeys-5.16.1.tar.xz) = 7fae2a0b09f266cce0012037d4151dc6794e19206b729be83bba3da3f12adf2c +SIZE (KDE/plasma/5.16.1/khotkeys-5.16.1.tar.xz) = 1865916 Modified: head/devel/plasma5-kwrited/distinfo ============================================================================== --- head/devel/plasma5-kwrited/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/devel/plasma5-kwrited/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882304 -SHA256 (KDE/plasma/5.16.0/kwrited-5.16.0.tar.xz) = 26561775a280f326b7323170d6466d39447d98d0d5f593e7aaea5a62ef001559 -SIZE (KDE/plasma/5.16.0/kwrited-5.16.0.tar.xz) = 20024 +TIMESTAMP = 1560918270 +SHA256 (KDE/plasma/5.16.1/kwrited-5.16.1.tar.xz) = 492db456650545101b8ecf1426cf31647ebf1b119af9dd05684ea902861f92f3 +SIZE (KDE/plasma/5.16.1/kwrited-5.16.1.tar.xz) = 20012 Modified: head/devel/plasma5-plasma-sdk/distinfo ============================================================================== --- head/devel/plasma5-plasma-sdk/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/devel/plasma5-plasma-sdk/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882304 -SHA256 (KDE/plasma/5.16.0/plasma-sdk-5.16.0.tar.xz) = 3012268273a318049ad51a37a416f22b4d08a54fa14b51a29a3bbc980aa0a50d -SIZE (KDE/plasma/5.16.0/plasma-sdk-5.16.0.tar.xz) = 250368 +TIMESTAMP = 1560918271 +SHA256 (KDE/plasma/5.16.1/plasma-sdk-5.16.1.tar.xz) = 1a579e961a76ca4d0c38e319bd3a7d4906280344ad602a6281b09d7cc0ec7a44 +SIZE (KDE/plasma/5.16.1/plasma-sdk-5.16.1.tar.xz) = 250368 Modified: head/security/plasma5-kscreenlocker/distinfo ============================================================================== --- head/security/plasma5-kscreenlocker/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/security/plasma5-kscreenlocker/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882304 -SHA256 (KDE/plasma/5.16.0/kscreenlocker-5.16.0.tar.xz) = 4c349a02a62ae0c7e7f22ec1669e28f5e7574ddb5d0319e0a8136e81e41dd7c4 -SIZE (KDE/plasma/5.16.0/kscreenlocker-5.16.0.tar.xz) = 122632 +TIMESTAMP = 1560918272 +SHA256 (KDE/plasma/5.16.1/kscreenlocker-5.16.1.tar.xz) = 7590084a2a4ecbfa3a048ac48281db44bb6a441b333c0bcffef2f10301348788 +SIZE (KDE/plasma/5.16.1/kscreenlocker-5.16.1.tar.xz) = 122576 Modified: head/security/plasma5-ksshaskpass/distinfo ============================================================================== --- head/security/plasma5-ksshaskpass/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/security/plasma5-ksshaskpass/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882305 -SHA256 (KDE/plasma/5.16.0/ksshaskpass-5.16.0.tar.xz) = 49e7a3d0245503a984c4712c855931ae3eeac147a66d4301840a8023a2c47813 -SIZE (KDE/plasma/5.16.0/ksshaskpass-5.16.0.tar.xz) = 21364 +TIMESTAMP = 1560918273 +SHA256 (KDE/plasma/5.16.1/ksshaskpass-5.16.1.tar.xz) = c04a583d44d732e5e4557d983cbec9a9f5522f4c29cf3d579fded62e305f0838 +SIZE (KDE/plasma/5.16.1/ksshaskpass-5.16.1.tar.xz) = 21368 Modified: head/security/plasma5-kwallet-pam/distinfo ============================================================================== --- head/security/plasma5-kwallet-pam/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/security/plasma5-kwallet-pam/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882305 -SHA256 (KDE/plasma/5.16.0/kwallet-pam-5.16.0.tar.xz) = 498425290ca53b31a82d763d1191b8f0f489311e69f070cda3c4885f951b6581 -SIZE (KDE/plasma/5.16.0/kwallet-pam-5.16.0.tar.xz) = 19648 +TIMESTAMP = 1560918273 +SHA256 (KDE/plasma/5.16.1/kwallet-pam-5.16.1.tar.xz) = b14119ab3ad42b173441b8a048880ec385605c3051c636649af87644bdab5413 +SIZE (KDE/plasma/5.16.1/kwallet-pam-5.16.1.tar.xz) = 19636 Modified: head/sysutils/plasma5-discover/distinfo ============================================================================== --- head/sysutils/plasma5-discover/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/sysutils/plasma5-discover/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882305 -SHA256 (KDE/plasma/5.16.0/discover-5.16.0.tar.xz) = 809f0d5e5acb9733991fc8cc43cf7376e7a636ac2ec3dd4295d0271f4d0541b9 -SIZE (KDE/plasma/5.16.0/discover-5.16.0.tar.xz) = 10448044 +TIMESTAMP = 1560918279 +SHA256 (KDE/plasma/5.16.1/discover-5.16.1.tar.xz) = 118ffdbb3645172166ca24257693fe1b7b1e0d80ebbcd762417d632572bb8f89 +SIZE (KDE/plasma/5.16.1/discover-5.16.1.tar.xz) = 10448112 Modified: head/sysutils/plasma5-drkonqi/distinfo ============================================================================== --- head/sysutils/plasma5-drkonqi/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/sysutils/plasma5-drkonqi/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882306 -SHA256 (KDE/plasma/5.16.0/drkonqi-5.16.0.tar.xz) = 5faf9a71393d1d46ca5a49be8610637e4b7b482f6d5d1799560b29b9c18f86c0 -SIZE (KDE/plasma/5.16.0/drkonqi-5.16.0.tar.xz) = 740852 +TIMESTAMP = 1560918280 +SHA256 (KDE/plasma/5.16.1/drkonqi-5.16.1.tar.xz) = 9e65f25b13e98b272bc2d7338b003d7ee6ebdd6a326265782a91ecf716efa45e +SIZE (KDE/plasma/5.16.1/drkonqi-5.16.1.tar.xz) = 741440 Modified: head/sysutils/plasma5-kde-cli-tools/distinfo ============================================================================== --- head/sysutils/plasma5-kde-cli-tools/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/sysutils/plasma5-kde-cli-tools/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882306 -SHA256 (KDE/plasma/5.16.0/kde-cli-tools-5.16.0.tar.xz) = 4f5e22a53d9f708696a3fd85702fb5f2a48280e8cd537265fb5201a8596fa9d8 -SIZE (KDE/plasma/5.16.0/kde-cli-tools-5.16.0.tar.xz) = 587192 +TIMESTAMP = 1560918281 +SHA256 (KDE/plasma/5.16.1/kde-cli-tools-5.16.1.tar.xz) = 92ef3c635d67a5377deca1dd2305b56311701d1aae0c72e64ed1597a8ff48099 +SIZE (KDE/plasma/5.16.1/kde-cli-tools-5.16.1.tar.xz) = 587280 Modified: head/sysutils/plasma5-kinfocenter/distinfo ============================================================================== --- head/sysutils/plasma5-kinfocenter/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/sysutils/plasma5-kinfocenter/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882317 -SHA256 (KDE/plasma/5.16.0/kinfocenter-5.16.0.tar.xz) = 5779cd6d59d51c81b8d1478b3424a3c3813b097bcde781958e13e180c63a2dd6 -SIZE (KDE/plasma/5.16.0/kinfocenter-5.16.0.tar.xz) = 1322544 +TIMESTAMP = 1560918293 +SHA256 (KDE/plasma/5.16.1/kinfocenter-5.16.1.tar.xz) = acc9221f08a4680cb69c58d0ae216b362ffc17e002ef0f708dac4e1b334f0e97 +SIZE (KDE/plasma/5.16.1/kinfocenter-5.16.1.tar.xz) = 1322776 Modified: head/sysutils/plasma5-kmenuedit/distinfo ============================================================================== --- head/sysutils/plasma5-kmenuedit/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/sysutils/plasma5-kmenuedit/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882183 -SHA256 (KDE/plasma/5.16.0/kmenuedit-5.16.0.tar.xz) = 03927410260a58fe13120e06f36c7fe4e993ecf8d4ba428a84c93422f23b908b -SIZE (KDE/plasma/5.16.0/kmenuedit-5.16.0.tar.xz) = 811552 +TIMESTAMP = 1560918294 +SHA256 (KDE/plasma/5.16.1/kmenuedit-5.16.1.tar.xz) = 34f7c3e01c54d94a597a26e88f610738995a7db02dc526e00fdd11f9886c3056 +SIZE (KDE/plasma/5.16.1/kmenuedit-5.16.1.tar.xz) = 811496 Modified: head/sysutils/plasma5-ksysguard/distinfo ============================================================================== --- head/sysutils/plasma5-ksysguard/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/sysutils/plasma5-ksysguard/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882184 -SHA256 (KDE/plasma/5.16.0/ksysguard-5.16.0.tar.xz) = bf902d3f4f3410bd5dce1c647599625b296859dc1a5dd9ccd694ff5e77e11256 -SIZE (KDE/plasma/5.16.0/ksysguard-5.16.0.tar.xz) = 500380 +TIMESTAMP = 1560918295 +SHA256 (KDE/plasma/5.16.1/ksysguard-5.16.1.tar.xz) = ad9062787654b1c749a0878c9dc7bc7aee78ad60ad31c7418b7ab8e07a8a7b24 +SIZE (KDE/plasma/5.16.1/ksysguard-5.16.1.tar.xz) = 500428 Modified: head/sysutils/plasma5-libksysguard/distinfo ============================================================================== --- head/sysutils/plasma5-libksysguard/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/sysutils/plasma5-libksysguard/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882184 -SHA256 (KDE/plasma/5.16.0/libksysguard-5.16.0.tar.xz) = 7e1cf76408824fe4b30e133e12d2b276594bd042a633b6b5cc4d33d0a9954b33 -SIZE (KDE/plasma/5.16.0/libksysguard-5.16.0.tar.xz) = 580092 +TIMESTAMP = 1560918296 +SHA256 (KDE/plasma/5.16.1/libksysguard-5.16.1.tar.xz) = d48fe4623430ca1505674834bbb3632bb9a7e01ef1287155909ff388ed0ca239 +SIZE (KDE/plasma/5.16.1/libksysguard-5.16.1.tar.xz) = 579992 Modified: head/sysutils/plasma5-polkit-kde-agent-1/distinfo ============================================================================== --- head/sysutils/plasma5-polkit-kde-agent-1/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/sysutils/plasma5-polkit-kde-agent-1/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882184 -SHA256 (KDE/plasma/5.16.0/polkit-kde-agent-1-5.16.0.tar.xz) = 1bc1545656e7c9066e0a2967e98869194e0c0300380cd3b9d79d620f220b3a2c -SIZE (KDE/plasma/5.16.0/polkit-kde-agent-1-5.16.0.tar.xz) = 42688 +TIMESTAMP = 1560918296 +SHA256 (KDE/plasma/5.16.1/polkit-kde-agent-1-5.16.1.tar.xz) = 423a34ae90566e13fa3fb40f85f3f941fcd9d81157183ab113cadf79e164aa32 +SIZE (KDE/plasma/5.16.1/polkit-kde-agent-1-5.16.1.tar.xz) = 42984 Modified: head/sysutils/plasma5-powerdevil/distinfo ============================================================================== --- head/sysutils/plasma5-powerdevil/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/sysutils/plasma5-powerdevil/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882185 -SHA256 (KDE/plasma/5.16.0/powerdevil-5.16.0.tar.xz) = 640781709afb1a595061f918b9686fafb75e78bb72db0169a76a4d94d9e48a1d -SIZE (KDE/plasma/5.16.0/powerdevil-5.16.0.tar.xz) = 589988 +TIMESTAMP = 1560918297 +SHA256 (KDE/plasma/5.16.1/powerdevil-5.16.1.tar.xz) = 474fdf8f41221169baa7d7eebd7bf4f0c56123807e5dfaf7d9180a74281e1108 +SIZE (KDE/plasma/5.16.1/powerdevil-5.16.1.tar.xz) = 590044 Modified: head/sysutils/plasma5-systemsettings/distinfo ============================================================================== --- head/sysutils/plasma5-systemsettings/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/sysutils/plasma5-systemsettings/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882185 -SHA256 (KDE/plasma/5.16.0/systemsettings-5.16.0.tar.xz) = dcbff775f7ed6dfaf5dce4937d65e9202fa0e4e8f5b57c6f16642c22ebe7cc54 -SIZE (KDE/plasma/5.16.0/systemsettings-5.16.0.tar.xz) = 178684 +TIMESTAMP = 1560918298 +SHA256 (KDE/plasma/5.16.1/systemsettings-5.16.1.tar.xz) = 8cf55e4734f1106719d763d1711fa88d2e4dd60bb6e7d85d00261cc2065b0a70 +SIZE (KDE/plasma/5.16.1/systemsettings-5.16.1.tar.xz) = 178624 Modified: head/sysutils/plasma5-user-manager/distinfo ============================================================================== --- head/sysutils/plasma5-user-manager/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/sysutils/plasma5-user-manager/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882186 -SHA256 (KDE/plasma/5.16.0/user-manager-5.16.0.tar.xz) = fc0448c62c76baaa43df8acb216fbae3a97d3fe0378eba848142afc24ff65f82 -SIZE (KDE/plasma/5.16.0/user-manager-5.16.0.tar.xz) = 546876 +TIMESTAMP = 1560918299 +SHA256 (KDE/plasma/5.16.1/user-manager-5.16.1.tar.xz) = 4411d1c31b39765441950cd8a8c9cf41f46320c051f6d346149415c0ad000f6e +SIZE (KDE/plasma/5.16.1/user-manager-5.16.1.tar.xz) = 547224 Modified: head/www/plasma5-plasma-browser-integration/distinfo ============================================================================== --- head/www/plasma5-plasma-browser-integration/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/www/plasma5-plasma-browser-integration/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882186 -SHA256 (KDE/plasma/5.16.0/plasma-browser-integration-5.16.0.tar.xz) = 0aa69ee733dab6d9435cf82a71bc85011dfe4b703909656e2c67fbf40df2839e -SIZE (KDE/plasma/5.16.0/plasma-browser-integration-5.16.0.tar.xz) = 122676 +TIMESTAMP = 1560918300 +SHA256 (KDE/plasma/5.16.1/plasma-browser-integration-5.16.1.tar.xz) = 1569c2dd3ca2f25d85cb2efc17062d35e9764deabe59131f7a0613e8ca2de6a4 +SIZE (KDE/plasma/5.16.1/plasma-browser-integration-5.16.1.tar.xz) = 122676 Modified: head/x11-themes/plasma5-breeze-gtk/distinfo ============================================================================== --- head/x11-themes/plasma5-breeze-gtk/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11-themes/plasma5-breeze-gtk/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882197 -SHA256 (KDE/plasma/5.16.0/breeze-gtk-5.16.0.tar.xz) = 605f2fa40a05f882f2f7950075603c0bded2d3ea498a77fb3aaddf5f40e928b2 -SIZE (KDE/plasma/5.16.0/breeze-gtk-5.16.0.tar.xz) = 47544 +TIMESTAMP = 1560918318 +SHA256 (KDE/plasma/5.16.1/breeze-gtk-5.16.1.tar.xz) = e6920bbbbdddca564f82fc0c07ac78fb11a7d5cf300fe2ec5e411c48d5d11665 +SIZE (KDE/plasma/5.16.1/breeze-gtk-5.16.1.tar.xz) = 47572 Modified: head/x11-themes/plasma5-breeze/distinfo ============================================================================== --- head/x11-themes/plasma5-breeze/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11-themes/plasma5-breeze/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882186 -SHA256 (KDE/plasma/5.16.0/breeze-5.16.0.tar.xz) = eb37e75b6a463648edd1b421e06531054a361af9b60e0e4fb1588a36212a4dae -SIZE (KDE/plasma/5.16.0/breeze-5.16.0.tar.xz) = 16593496 +TIMESTAMP = 1560918308 +SHA256 (KDE/plasma/5.16.1/breeze-5.16.1.tar.xz) = bf4fba98f83311365f249d706689f327380db2de61ca7bb2a8442472e0b1316e +SIZE (KDE/plasma/5.16.1/breeze-5.16.1.tar.xz) = 16593620 Modified: head/x11-themes/plasma5-kde-gtk-config/distinfo ============================================================================== --- head/x11-themes/plasma5-kde-gtk-config/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11-themes/plasma5-kde-gtk-config/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882207 -SHA256 (KDE/plasma/5.16.0/kde-gtk-config-5.16.0.tar.xz) = 539f6ea694d5709b4be14ff8c1d1b70dc8c01737ab86cc1b7055e9ac1463da93 -SIZE (KDE/plasma/5.16.0/kde-gtk-config-5.16.0.tar.xz) = 154312 +TIMESTAMP = 1560918329 +SHA256 (KDE/plasma/5.16.1/kde-gtk-config-5.16.1.tar.xz) = 2942c47fac3eca6905b2d1bb1a453cd793215c2b319256cecdeecde09e3ddac3 +SIZE (KDE/plasma/5.16.1/kde-gtk-config-5.16.1.tar.xz) = 154244 Modified: head/x11-themes/plasma5-oxygen/distinfo ============================================================================== --- head/x11-themes/plasma5-oxygen/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11-themes/plasma5-oxygen/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882208 -SHA256 (KDE/plasma/5.16.0/oxygen-5.16.0.tar.xz) = e32d5e81ea4bab06a89d937ee7438445af73292f2d52d2547f8fec11b52cb988 -SIZE (KDE/plasma/5.16.0/oxygen-5.16.0.tar.xz) = 4473772 +TIMESTAMP = 1560918332 +SHA256 (KDE/plasma/5.16.1/oxygen-5.16.1.tar.xz) = 89adb92e2c6cd77b21d7fa5cd42963637919dc7d472254cf684db5374a36d567 +SIZE (KDE/plasma/5.16.1/oxygen-5.16.1.tar.xz) = 4471840 Modified: head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo ============================================================================== --- head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11-themes/plasma5-plasma-workspace-wallpapers/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882208 -SHA256 (KDE/plasma/5.16.0/plasma-workspace-wallpapers-5.16.0.tar.xz) = 1e1fdbe7873c5028bf86793d6b37af0ad1e5afd298841df05f45e8a26e823965 -SIZE (KDE/plasma/5.16.0/plasma-workspace-wallpapers-5.16.0.tar.xz) = 34172768 +TIMESTAMP = 1560918347 +SHA256 (KDE/plasma/5.16.1/plasma-workspace-wallpapers-5.16.1.tar.xz) = a533e814d38ebfce4f24e7dee6b21470cb17fc0987a8322850b9954412ae3c15 +SIZE (KDE/plasma/5.16.1/plasma-workspace-wallpapers-5.16.1.tar.xz) = 34173268 Modified: head/x11-toolkits/plasma5-kdeplasma-addons/distinfo ============================================================================== --- head/x11-toolkits/plasma5-kdeplasma-addons/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11-toolkits/plasma5-kdeplasma-addons/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882208 -SHA256 (KDE/plasma/5.16.0/kdeplasma-addons-5.16.0.tar.xz) = d7fc80d63c7e1aea37a9ba28e5309bd538ac0c3c889b3dd9af1730a25acb8eb6 -SIZE (KDE/plasma/5.16.0/kdeplasma-addons-5.16.0.tar.xz) = 594596 +TIMESTAMP = 1560918348 +SHA256 (KDE/plasma/5.16.1/kdeplasma-addons-5.16.1.tar.xz) = 89d6eb92729ee2752032d5b2ff58bdf65dfa77b3503b0d891807178675e53f96 +SIZE (KDE/plasma/5.16.1/kdeplasma-addons-5.16.1.tar.xz) = 594404 Modified: head/x11-wm/plasma5-kdecoration/distinfo ============================================================================== --- head/x11-wm/plasma5-kdecoration/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11-wm/plasma5-kdecoration/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882209 -SHA256 (KDE/plasma/5.16.0/kdecoration-5.16.0.tar.xz) = 87f97de50c64cf60b8322c6e883fc8d06659f5089643f4d11487ade84c98d758 -SIZE (KDE/plasma/5.16.0/kdecoration-5.16.0.tar.xz) = 42832 +TIMESTAMP = 1560918349 +SHA256 (KDE/plasma/5.16.1/kdecoration-5.16.1.tar.xz) = 37d8bd4eb28b268536d7eab88746a6bc37a82e99eade9b3e3ee6663a8aa3263c +SIZE (KDE/plasma/5.16.1/kdecoration-5.16.1.tar.xz) = 42808 Modified: head/x11-wm/plasma5-kwin/distinfo ============================================================================== --- head/x11-wm/plasma5-kwin/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11-wm/plasma5-kwin/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882219 -SHA256 (KDE/plasma/5.16.0/kwin-5.16.0.tar.xz) = 82685526c32830a54ecd2034049d86dd5b59b97c434788798da1b5c217f2495e -SIZE (KDE/plasma/5.16.0/kwin-5.16.0.tar.xz) = 6261676 +TIMESTAMP = 1560918363 +SHA256 (KDE/plasma/5.16.1/kwin-5.16.1.tar.xz) = e5cb08a116e1a60a60fb1f375e72cb4f8d01c8f31b3456b48bc5c72b5907260f +SIZE (KDE/plasma/5.16.1/kwin-5.16.1.tar.xz) = 6262808 Modified: head/x11/plasma5-kactivitymanagerd/distinfo ============================================================================== --- head/x11/plasma5-kactivitymanagerd/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11/plasma5-kactivitymanagerd/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882220 -SHA256 (KDE/plasma/5.16.0/kactivitymanagerd-5.16.0.tar.xz) = 1708191667f74b920765a570704c0cb9ce4a307facbfd3e40d10aee59b1d857b -SIZE (KDE/plasma/5.16.0/kactivitymanagerd-5.16.0.tar.xz) = 84756 +TIMESTAMP = 1560918363 +SHA256 (KDE/plasma/5.16.1/kactivitymanagerd-5.16.1.tar.xz) = 63562dac3bd11421a8acddbe7bc4bafb61cb1b9cab706825c91b4b6dd5851c0d +SIZE (KDE/plasma/5.16.1/kactivitymanagerd-5.16.1.tar.xz) = 84772 Modified: head/x11/plasma5-kgamma5/distinfo ============================================================================== --- head/x11/plasma5-kgamma5/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11/plasma5-kgamma5/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882220 -SHA256 (KDE/plasma/5.16.0/kgamma5-5.16.0.tar.xz) = e60118149d43c0a8c86146647f03d0817e1658b074c3d5c7676f0b05e9ce4f11 -SIZE (KDE/plasma/5.16.0/kgamma5-5.16.0.tar.xz) = 79292 +TIMESTAMP = 1560918364 +SHA256 (KDE/plasma/5.16.1/kgamma5-5.16.1.tar.xz) = 85b343ccd1568795846ab2430b4ac8b3ac1d1e5a8890ff20312590fe71f548f1 +SIZE (KDE/plasma/5.16.1/kgamma5-5.16.1.tar.xz) = 79272 Modified: head/x11/plasma5-kscreen/distinfo ============================================================================== --- head/x11/plasma5-kscreen/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11/plasma5-kscreen/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882220 -SHA256 (KDE/plasma/5.16.0/kscreen-5.16.0.tar.xz) = 058243275c88bb6824f33223cf9a9fd6d5fd982ac06396ba33468362acfd8176 -SIZE (KDE/plasma/5.16.0/kscreen-5.16.0.tar.xz) = 122576 +TIMESTAMP = 1560918365 +SHA256 (KDE/plasma/5.16.1/kscreen-5.16.1.tar.xz) = b90531c0164fdff9fc9f9977aae188c70918d5acc065de47bbe25f3fc06c4c28 +SIZE (KDE/plasma/5.16.1/kscreen-5.16.1.tar.xz) = 122564 Modified: head/x11/plasma5-kwayland-integration/distinfo ============================================================================== --- head/x11/plasma5-kwayland-integration/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11/plasma5-kwayland-integration/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882221 -SHA256 (KDE/plasma/5.16.0/kwayland-integration-5.16.0.tar.xz) = 3f3e53ef60d0f8725095278c247df7b2f1b02bb6a082327042e0cb5d997233c6 -SIZE (KDE/plasma/5.16.0/kwayland-integration-5.16.0.tar.xz) = 19512 +TIMESTAMP = 1560918366 +SHA256 (KDE/plasma/5.16.1/kwayland-integration-5.16.1.tar.xz) = a519924e719d08a7ed81a84f18650cac0c46d2866e825ca8d102582fad9e6bd1 +SIZE (KDE/plasma/5.16.1/kwayland-integration-5.16.1.tar.xz) = 19508 Modified: head/x11/plasma5-libkscreen/distinfo ============================================================================== --- head/x11/plasma5-libkscreen/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11/plasma5-libkscreen/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882221 -SHA256 (KDE/plasma/5.16.0/libkscreen-5.16.0.tar.xz) = 6ae883fc34c0a15882d34c0aba1f37f31de944b42639f46a1f495c9dda2f8bf7 -SIZE (KDE/plasma/5.16.0/libkscreen-5.16.0.tar.xz) = 80984 +TIMESTAMP = 1560918367 +SHA256 (KDE/plasma/5.16.1/libkscreen-5.16.1.tar.xz) = 6a81bd1c4cf4aebecf8220cd024feea2305a0f635daf7de0703354a8b6b7e17e +SIZE (KDE/plasma/5.16.1/libkscreen-5.16.1.tar.xz) = 80980 Modified: head/x11/plasma5-plasma-desktop/distinfo ============================================================================== --- head/x11/plasma5-plasma-desktop/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11/plasma5-plasma-desktop/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559967905 -SHA256 (KDE/plasma/5.16.0/plasma-desktop-5.16.0.tar.xz) = 7ef395413acbea604383b15e7e575365ad7c5cbbc47dd39d6e4abfa627a3051c -SIZE (KDE/plasma/5.16.0/plasma-desktop-5.16.0.tar.xz) = 9486620 +TIMESTAMP = 1560918382 +SHA256 (KDE/plasma/5.16.1/plasma-desktop-5.16.1.tar.xz) = df04d08beba47871c734ed4ed245746f56c24a5bd53bedae0881e943356049fa +SIZE (KDE/plasma/5.16.1/plasma-desktop-5.16.1.tar.xz) = 9490708 Modified: head/x11/plasma5-plasma-desktop/pkg-plist ============================================================================== --- head/x11/plasma5-plasma-desktop/pkg-plist Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11/plasma5-plasma-desktop/pkg-plist Wed Jun 19 22:19:11 2019 (r504588) @@ -2082,6 +2082,7 @@ share/locale/eu/LC_MESSAGES/plasma_runner_kwin.mo share/locale/eu/LC_MESSAGES/plasma_runner_plasma-desktop.mo share/locale/eu/LC_MESSAGES/plasma_shell_org.kde.plasma.desktop.mo share/locale/eu/LC_MESSAGES/plasma_toolbox_org.kde.desktoptoolbox.mo +share/locale/eu/LC_MESSAGES/plasma_toolbox_org.kde.paneltoolbox.mo share/locale/eu/LC_MESSAGES/plasmaactivitymanager.mo share/locale/fa/LC_MESSAGES/attica_kde_plugin.mo share/locale/fa/LC_MESSAGES/kaccess.mo Modified: head/x11/plasma5-plasma-integration/distinfo ============================================================================== --- head/x11/plasma5-plasma-integration/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11/plasma5-plasma-integration/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882366 -SHA256 (KDE/plasma/5.16.0/plasma-integration-5.16.0.tar.xz) = ce297e9a6e97f7d50bae6fe31d25051a46f860abfeb82c34b95c57d245ad2914 -SIZE (KDE/plasma/5.16.0/plasma-integration-5.16.0.tar.xz) = 55700 +TIMESTAMP = 1560918383 +SHA256 (KDE/plasma/5.16.1/plasma-integration-5.16.1.tar.xz) = 59cc0b12b6a997e079b18870828d1a339711aa27de137773161e4c041b40b26a +SIZE (KDE/plasma/5.16.1/plasma-integration-5.16.1.tar.xz) = 55728 Modified: head/x11/plasma5-plasma-workspace/distinfo ============================================================================== --- head/x11/plasma5-plasma-workspace/distinfo Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11/plasma5-plasma-workspace/distinfo Wed Jun 19 22:19:11 2019 (r504588) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559882367 -SHA256 (KDE/plasma/5.16.0/plasma-workspace-5.16.0.tar.xz) = 52da11a30708b375136ec5c280d75948e2651ecdb03f745e596d10168ab0ffae -SIZE (KDE/plasma/5.16.0/plasma-workspace-5.16.0.tar.xz) = 4891740 +TIMESTAMP = 1560918386 +SHA256 (KDE/plasma/5.16.1/plasma-workspace-5.16.1.tar.xz) = 9407c127fd410c77adf346b09da329968aec3b84aace51fa00391266ab35198d +SIZE (KDE/plasma/5.16.1/plasma-workspace-5.16.1.tar.xz) = 4892428 Modified: head/x11/plasma5-plasma-workspace/pkg-plist ============================================================================== --- head/x11/plasma5-plasma-workspace/pkg-plist Wed Jun 19 21:13:14 2019 (r504587) +++ head/x11/plasma5-plasma-workspace/pkg-plist Wed Jun 19 22:19:11 2019 (r504588) @@ -4703,6 +4703,7 @@ share/plasma/wallpapers/org.kde.slideshow/contents/ui/ share/plasma/wallpapers/org.kde.slideshow/metadata.desktop share/plasma/wallpapers/org.kde.slideshow/metadata.json share/sddm/themes/breeze/Background.qml +share/sddm/themes/breeze/BreezeMenuStyle.qml share/sddm/themes/breeze/KeyboardButton.qml share/sddm/themes/breeze/Login.qml share/sddm/themes/breeze/Main.qml From owner-svn-ports-all@freebsd.org Wed Jun 19 22:37:14 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3891F15CBE4C; Wed, 19 Jun 2019 22:37:14 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CDB1F85AD2; Wed, 19 Jun 2019 22:37:13 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A58B02F69; Wed, 19 Jun 2019 22:37:13 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMbD9Y016142; Wed, 19 Jun 2019 22:37:13 GMT (envelope-from timur@FreeBSD.org) Received: (from timur@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMbCwq016133; Wed, 19 Jun 2019 22:37:12 GMT (envelope-from timur@FreeBSD.org) Message-Id: <201906192237.x5JMbCwq016133@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: timur set sender to timur@FreeBSD.org using -f From: "Timur I. Bakeyev" Date: Wed, 19 Jun 2019 22:37:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504589 - in head: databases/ldb databases/ldb12 databases/ldb13 databases/tdb1 devel/talloc1 devel/tevent1 X-SVN-Group: ports-head X-SVN-Commit-Author: timur X-SVN-Commit-Paths: in head: databases/ldb databases/ldb12 databases/ldb13 databases/tdb1 devel/talloc1 devel/tevent1 X-SVN-Commit-Revision: 504589 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CDB1F85AD2 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:37:14 -0000 Author: timur Date: Wed Jun 19 22:37:11 2019 New Revision: 504589 URL: https://svnweb.freebsd.org/changeset/ports/504589 Log: Fix conflicts and dependencies for legacy ports Modified: head/databases/ldb/Makefile head/databases/ldb12/Makefile head/databases/ldb13/Makefile head/databases/tdb1/Makefile head/devel/talloc1/Makefile head/devel/tevent1/Makefile Modified: head/databases/ldb/Makefile ============================================================================== --- head/databases/ldb/Makefile Wed Jun 19 22:19:11 2019 (r504588) +++ head/databases/ldb/Makefile Wed Jun 19 22:37:11 2019 (r504589) @@ -2,7 +2,7 @@ PORTNAME= ldb PORTVERSION= 1.1.29 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 0 CATEGORIES= databases MASTER_SITES= SAMBA @@ -17,12 +17,12 @@ IGNORE_NONTHREAD_PYTHON=needs port lang/python${PYTHON BUILD_DEPENDS= ${LDB_DEPENDS} RUN_DEPENDS= ${LDB_DEPENDS} -LDB_DEPENDS= talloc>=2.1.8:devel/talloc \ - tevent>=0.9.31:devel/tevent \ - tdb>=1.3.12,1:databases/tdb \ +LDB_DEPENDS= talloc1>=2.1.8:devel/talloc1 \ + tevent1>=0.9.31:devel/tevent1 \ + tdb1>=1.3.12,1:databases/tdb1 \ popt>=0:devel/popt -CONFLICTS_INSTALL= ldb1[23]-1.* +CONFLICTS_INSTALL= ldb1[2-6]-1.* #FLAVORS= default nopython #nopython_PKGNAMESUFFIX= -nopython Modified: head/databases/ldb12/Makefile ============================================================================== --- head/databases/ldb12/Makefile Wed Jun 19 22:19:11 2019 (r504588) +++ head/databases/ldb12/Makefile Wed Jun 19 22:37:11 2019 (r504589) @@ -2,7 +2,7 @@ PORTNAME= ldb PORTVERSION= 1.2.3 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 0 CATEGORIES= databases MASTER_SITES= SAMBA @@ -18,13 +18,13 @@ IGNORE_NONTHREAD_PYTHON=needs port lang/python${PYTHON BUILD_DEPENDS= ${LDB_DEPENDS} RUN_DEPENDS= ${LDB_DEPENDS} -LDB_DEPENDS= talloc>=2.1.10:devel/talloc \ - tevent>=0.9.34:devel/tevent \ - tdb>=1.3.15:databases/tdb \ +LDB_DEPENDS= talloc1>=2.1.10:devel/talloc1 \ + tevent1>=0.9.34:devel/tevent1 \ + tdb1>=1.3.15:databases/tdb1 \ cmocka>=1.1.1:sysutils/cmocka \ popt>=0:devel/popt -CONFLICTS_INSTALL= ldb-1.1.* ldb13-1.3.* +CONFLICTS_INSTALL= ldb-1.1.* ldb1[3-6]-1.* #FLAVORS= default nopython #nopython_PKGNAMESUFFIX= -nopython Modified: head/databases/ldb13/Makefile ============================================================================== --- head/databases/ldb13/Makefile Wed Jun 19 22:19:11 2019 (r504588) +++ head/databases/ldb13/Makefile Wed Jun 19 22:37:11 2019 (r504589) @@ -2,7 +2,7 @@ PORTNAME= ldb PORTVERSION= 1.3.8 -PORTREVISION= 0 +PORTREVISION= 1 PORTEPOCH= 0 CATEGORIES= databases MASTER_SITES= SAMBA @@ -18,13 +18,13 @@ IGNORE_NONTHREAD_PYTHON=needs port lang/python${PYTHON BUILD_DEPENDS= ${LDB_DEPENDS} RUN_DEPENDS= ${LDB_DEPENDS} -LDB_DEPENDS= talloc>=2.1.14:devel/talloc \ - tevent>=0.9.37:devel/tevent \ - tdb>=1.3.16:databases/tdb \ +LDB_DEPENDS= talloc1>=2.1.14:devel/talloc1 \ + tevent1>=0.9.37:devel/tevent1 \ + tdb1>=1.3.16:databases/tdb1 \ cmocka>=1.1.1:sysutils/cmocka \ popt>=0:devel/popt -CONFLICTS_INSTALL= ldb-1.1.* ldb12-1.2.* +CONFLICTS_INSTALL= ldb-1.1.* ldb1[24-6]-1.* #FLAVORS= default nopython #nopython_PKGNAMESUFFIX= -nopython Modified: head/databases/tdb1/Makefile ============================================================================== --- head/databases/tdb1/Makefile Wed Jun 19 22:19:11 2019 (r504588) +++ head/databases/tdb1/Makefile Wed Jun 19 22:37:11 2019 (r504589) @@ -15,6 +15,8 @@ LICENSE= GPLv3 IGNORE_NONTHREAD_PYTHON=needs port lang/python${PYTHON_SUFFIX} to be build with THREADS support +CONFLICTS_INSTALL= tdb-* + #FLAVORS= default nopython debug #nopython_PKGNAMESUFFIX= -nopython #debug_PKGNAMESUFFIX= -debug Modified: head/devel/talloc1/Makefile ============================================================================== --- head/devel/talloc1/Makefile Wed Jun 19 22:19:11 2019 (r504588) +++ head/devel/talloc1/Makefile Wed Jun 19 22:37:11 2019 (r504589) @@ -14,6 +14,8 @@ LICENSE= LGPL3 IGNORE_NONTHREAD_PYTHON=needs port lang/python${PYTHON_SUFFIX} to be build with THREADS support +CONFLICTS_INSTALL= talloc-* + #FLAVORS= default nopython #nopython_PKGNAMESUFFIX= -nopython #nopython_CONFLICTS= talloc Modified: head/devel/tevent1/Makefile ============================================================================== --- head/devel/tevent1/Makefile Wed Jun 19 22:19:11 2019 (r504588) +++ head/devel/tevent1/Makefile Wed Jun 19 22:37:11 2019 (r504589) @@ -15,8 +15,10 @@ LICENSE= LGPL3 IGNORE_NONTHREAD_PYTHON=needs port lang/python${PYTHON_SUFFIX} to be build with THREADS support -BUILD_DEPENDS= talloc>=2.1.11:devel/talloc -RUN_DEPENDS= talloc>=2.1.11:devel/talloc +BUILD_DEPENDS= talloc1>=2.1.11:devel/talloc1 +RUN_DEPENDS= talloc1>=2.1.11:devel/talloc1 + +CONFLICTS_INSTALL= tevent-* #FLAVORS= default nopython #nopython_PKGNAMESUFFIX= -nopython From owner-svn-ports-all@freebsd.org Wed Jun 19 22:40:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 153F515CBEBA; Wed, 19 Jun 2019 22:40:54 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AC04F85C0B; Wed, 19 Jun 2019 22:40:53 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 87B862F84; Wed, 19 Jun 2019 22:40:53 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMeroS017192; Wed, 19 Jun 2019 22:40:53 GMT (envelope-from timur@FreeBSD.org) Received: (from timur@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMequU017187; Wed, 19 Jun 2019 22:40:52 GMT (envelope-from timur@FreeBSD.org) Message-Id: <201906192240.x5JMequU017187@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: timur set sender to timur@FreeBSD.org using -f From: "Timur I. Bakeyev" Date: Wed, 19 Jun 2019 22:40:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504590 - in head/net: samba46 samba47 samba48 X-SVN-Group: ports-head X-SVN-Commit-Author: timur X-SVN-Commit-Paths: in head/net: samba46 samba47 samba48 X-SVN-Commit-Revision: 504590 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AC04F85C0B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:40:54 -0000 Author: timur Date: Wed Jun 19 22:40:52 2019 New Revision: 504590 URL: https://svnweb.freebsd.org/changeset/ports/504590 Log: Make legacy ports use legacy libs. Modified: head/net/samba46/Makefile head/net/samba47/Makefile head/net/samba48/Makefile Modified: head/net/samba46/Makefile ============================================================================== --- head/net/samba46/Makefile Wed Jun 19 22:37:11 2019 (r504589) +++ head/net/samba46/Makefile Wed Jun 19 22:40:52 2019 (r504590) @@ -3,7 +3,7 @@ PORTNAME?= ${SAMBA4_BASENAME}46 PORTVERSION?= ${SAMBA4_VERSION} -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} @@ -131,16 +131,16 @@ BUILD_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}iso8601>=0.1. RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}iso8601>=0.1.11:devel/py-iso8601@${PY_FLAVOR} PLIST_SUB+= PY_ISO8601="@comment " # talloc -BUILD_DEPENDS+= talloc>=2.1.9:devel/talloc -RUN_DEPENDS+= talloc>=2.1.9:devel/talloc +BUILD_DEPENDS+= talloc1>=2.1.9:devel/talloc1 +RUN_DEPENDS+= talloc1>=2.1.9:devel/talloc1 SAMBA4_BUNDLED_LIBS+= !talloc # tevent -BUILD_DEPENDS+= tevent>=0.9.34:devel/tevent -RUN_DEPENDS+= tevent>=0.9.34:devel/tevent +BUILD_DEPENDS+= tevent1>=0.9.34:devel/tevent1 +RUN_DEPENDS+= tevent1>=0.9.34:devel/tevent1 SAMBA4_BUNDLED_LIBS+= !tevent # tdb -BUILD_DEPENDS+= tdb>=1.3.12:databases/tdb -RUN_DEPENDS+= tdb>=1.3.12:databases/tdb +BUILD_DEPENDS+= tdb1>=1.3.12:databases/tdb1 +RUN_DEPENDS+= tdb1>=1.3.12:databases/tdb1 SAMBA4_BUNDLED_LIBS+= !tdb # ldb BUILD_DEPENDS+= ldb>=1.1.29:databases/ldb Modified: head/net/samba47/Makefile ============================================================================== --- head/net/samba47/Makefile Wed Jun 19 22:37:11 2019 (r504589) +++ head/net/samba47/Makefile Wed Jun 19 22:40:52 2019 (r504590) @@ -3,7 +3,7 @@ PORTNAME= ${SAMBA4_BASENAME}47 PORTVERSION= ${SAMBA4_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} @@ -171,39 +171,39 @@ SUB_LIST+= SAMBA4_BUNDLED_CMOCKA="@comment " # talloc .if defined(SAMBA4_BUNDLED_TALLOC) SAMBA4_BUNDLED_LIBS+= talloc -CONFLICTS+= talloc-2.* +CONFLICTS+= talloc1-2.* PLIST_SUB+= SAMBA4_BUNDLED_TALLOC="" SUB_LIST+= SAMBA4_BUNDLED_TALLOC="" .else SAMBA4_BUNDLED_LIBS+= !talloc -BUILD_DEPENDS+= talloc>=2.1.11:devel/talloc -RUN_DEPENDS+= talloc>=2.1.11:devel/talloc +BUILD_DEPENDS+= talloc1>=2.1.11:devel/talloc1 +RUN_DEPENDS+= talloc1>=2.1.11:devel/talloc1 PLIST_SUB+= SAMBA4_BUNDLED_TALLOC="@comment " SUB_LIST+= SAMBA4_BUNDLED_TALLOC="@comment " .endif # tevent .if defined(SAMBA4_BUNDLED_TEVENT) SAMBA4_BUNDLED_LIBS+= tevent -CONFLICTS+= tevent-0.* +CONFLICTS+= tevent1-0.* PLIST_SUB+= SAMBA4_BUNDLED_TEVENT="" SUB_LIST+= SAMBA4_BUNDLED_TEVENT="" .else SAMBA4_BUNDLED_LIBS+= !tevent -BUILD_DEPENDS+= tevent>=0.9.36:devel/tevent -RUN_DEPENDS+= tevent>=0.9.36:devel/tevent +BUILD_DEPENDS+= tevent1>=0.9.36:devel/tevent1 +RUN_DEPENDS+= tevent1>=0.9.36:devel/tevent1 PLIST_SUB+= SAMBA4_BUNDLED_TEVENT="@comment " SUB_LIST+= SAMBA4_BUNDLED_TEVENT="@comment " .endif # tdb .if defined(SAMBA4_BUNDLED_TDB) SAMBA4_BUNDLED_LIBS+= tdb -CONFLICTS+= tdb-1.* +CONFLICTS+= tdb1-1.* PLIST_SUB+= SAMBA4_BUNDLED_TDB="" SUB_LIST+= SAMBA4_BUNDLED_TDB="" .else SAMBA4_BUNDLED_LIBS+= !tdb -BUILD_DEPENDS+= tdb>=1.3.15:databases/tdb -RUN_DEPENDS+= tdb>=1.3.15:databases/tdb +BUILD_DEPENDS+= tdb1>=1.3.15:databases/tdb1 +RUN_DEPENDS+= tdb1>=1.3.15:databases/tdb1 PLIST_SUB+= SAMBA4_BUNDLED_TDB="@comment " SUB_LIST+= SAMBA4_BUNDLED_TDB="@comment " .endif Modified: head/net/samba48/Makefile ============================================================================== --- head/net/samba48/Makefile Wed Jun 19 22:37:11 2019 (r504589) +++ head/net/samba48/Makefile Wed Jun 19 22:40:52 2019 (r504590) @@ -3,7 +3,7 @@ PORTNAME= ${SAMBA4_BASENAME}48 PORTVERSION= ${SAMBA4_VERSION} -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES?= net MASTER_SITES= SAMBA/samba/stable SAMBA/samba/rc DISTNAME= ${SAMBA4_DISTNAME} @@ -178,39 +178,39 @@ SUB_LIST+= SAMBA4_BUNDLED_CMOCKA="@comment " # talloc .if defined(SAMBA4_BUNDLED_TALLOC) && ${SAMBA4_BUNDLED_TALLOC} == yes SAMBA4_BUNDLED_LIBS+= talloc -CONFLICTS+= talloc-2.* +CONFLICTS+= talloc1-2.* PLIST_SUB+= SAMBA4_BUNDLED_TALLOC="" SUB_LIST+= SAMBA4_BUNDLED_TALLOC="" .else SAMBA4_BUNDLED_LIBS+= !talloc -BUILD_DEPENDS+= talloc>=2.1.14:devel/talloc -RUN_DEPENDS+= talloc>=2.1.14:devel/talloc +BUILD_DEPENDS+= talloc1>=2.1.14:devel/talloc1 +RUN_DEPENDS+= talloc1>=2.1.14:devel/talloc1 PLIST_SUB+= SAMBA4_BUNDLED_TALLOC="@comment " SUB_LIST+= SAMBA4_BUNDLED_TALLOC="@comment " .endif # tevent .if defined(SAMBA4_BUNDLED_TEVENT) && ${SAMBA4_BUNDLED_TEVENT} == yes SAMBA4_BUNDLED_LIBS+= tevent -CONFLICTS+= tevent-0.* +CONFLICTS+= tevent1-0.* PLIST_SUB+= SAMBA4_BUNDLED_TEVENT="" SUB_LIST+= SAMBA4_BUNDLED_TEVENT="" .else SAMBA4_BUNDLED_LIBS+= !tevent -BUILD_DEPENDS+= tevent>=0.9.37:devel/tevent -RUN_DEPENDS+= tevent>=0.9.37:devel/tevent +BUILD_DEPENDS+= tevent1>=0.9.37:devel/tevent1 +RUN_DEPENDS+= tevent1>=0.9.37:devel/tevent1 PLIST_SUB+= SAMBA4_BUNDLED_TEVENT="@comment " SUB_LIST+= SAMBA4_BUNDLED_TEVENT="@comment " .endif # tdb .if defined(SAMBA4_BUNDLED_TDB) && ${SAMBA4_BUNDLED_TDB} == yes SAMBA4_BUNDLED_LIBS+= tdb -CONFLICTS+= tdb-1.* +CONFLICTS+= tdb1-1.* PLIST_SUB+= SAMBA4_BUNDLED_TDB="" SUB_LIST+= SAMBA4_BUNDLED_TDB="" .else SAMBA4_BUNDLED_LIBS+= !tdb -BUILD_DEPENDS+= tdb>=1.3.15:databases/tdb -RUN_DEPENDS+= tdb>=1.3.15:databases/tdb +BUILD_DEPENDS+= tdb1>=1.3.15:databases/tdb1 +RUN_DEPENDS+= tdb1>=1.3.15:databases/tdb1 PLIST_SUB+= SAMBA4_BUNDLED_TDB="@comment " SUB_LIST+= SAMBA4_BUNDLED_TDB="@comment " .endif @@ -499,6 +499,8 @@ MAKE_ENV+= NOCOLOR=yes WAF_LOG_FORMAT='%(c1)s%(zone) .if ${CHOSEN_COMPILER_TYPE} == clang CFLAGS+= -fno-color-diagnostics .endif +# Allow rpcgen ti find proper CPP +MAKE_ENV+= RPCGEN_CPP="${CPP}" #.if ${readline_ARGS} == port #CFLAGS+= -D_FUNCTION_DEF #.endif From owner-svn-ports-all@freebsd.org Wed Jun 19 22:41:16 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C620C15CBEE7; Wed, 19 Jun 2019 22:41:16 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6CAF085E50; Wed, 19 Jun 2019 22:41:16 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 495CE2F9E; Wed, 19 Jun 2019 22:41:16 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMfGP8018120; Wed, 19 Jun 2019 22:41:16 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMfG5d018119; Wed, 19 Jun 2019 22:41:16 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906192241.x5JMfG5d018119@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 22:41:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504591 - head/devel/p5-Regexp-Compare X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/devel/p5-Regexp-Compare X-SVN-Commit-Revision: 504591 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6CAF085E50 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:41:16 -0000 Author: mat Date: Wed Jun 19 22:41:15 2019 New Revision: 504591 URL: https://svnweb.freebsd.org/changeset/ports/504591 Log: Does not work with Perl 5.30. With hat: perl@ Modified: head/devel/p5-Regexp-Compare/Makefile (contents, props changed) Modified: head/devel/p5-Regexp-Compare/Makefile ============================================================================== --- head/devel/p5-Regexp-Compare/Makefile Wed Jun 19 22:40:52 2019 (r504590) +++ head/devel/p5-Regexp-Compare/Makefile Wed Jun 19 22:41:15 2019 (r504591) @@ -19,4 +19,10 @@ USES= perl5 post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Regexp/Compare/Compare.so -.include +.include + +.if ${PERL_LEVEL} >= 503000 +BROKEN= does not support 5.30+ +.endif + +.include From owner-svn-ports-all@freebsd.org Wed Jun 19 22:41:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EBD1415CBF26; Wed, 19 Jun 2019 22:41:46 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9311985F8A; Wed, 19 Jun 2019 22:41:46 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7F6E430E0; Wed, 19 Jun 2019 22:41:46 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMfk2q018233; Wed, 19 Jun 2019 22:41:46 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMfkTx018232; Wed, 19 Jun 2019 22:41:46 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906192241.x5JMfkTx018232@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 22:41:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504592 - head/lang/p5-ePerl/files X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/lang/p5-ePerl/files X-SVN-Commit-Revision: 504592 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9311985F8A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:41:47 -0000 Author: mat Date: Wed Jun 19 22:41:46 2019 New Revision: 504592 URL: https://svnweb.freebsd.org/changeset/ports/504592 Log: Fix build with Perl 5.30+. With hat: perl@ Modified: head/lang/p5-ePerl/files/patch-configure (contents, props changed) Modified: head/lang/p5-ePerl/files/patch-configure ============================================================================== --- head/lang/p5-ePerl/files/patch-configure Wed Jun 19 22:41:15 2019 (r504591) +++ head/lang/p5-ePerl/files/patch-configure Wed Jun 19 22:41:46 2019 (r504592) @@ -14,7 +14,7 @@ echo "$ac_t""$perlprog v$perlvers" 1>&6 case $perlvers in - 5.003* | 5.004* | 5.005* | 5.006* ) -+ 5.003* | 5.004* | 5.005* | 5.006* | 5.008* | 5.01* | 5.02* ) ++ 5.003* | 5.004* | 5.005* | 5.006* | 5.008* | 5.01* | 5.02* | 5.03* ) ;; * ) echo "" echo "Latest Perl found on your system is $perlvers," From owner-svn-ports-all@freebsd.org Wed Jun 19 22:41:50 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44BC615CBF53; Wed, 19 Jun 2019 22:41:50 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D910885FA1; Wed, 19 Jun 2019 22:41:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B318830E6; Wed, 19 Jun 2019 22:41:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMfnOx018355; Wed, 19 Jun 2019 22:41:49 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMfnWe018353; Wed, 19 Jun 2019 22:41:49 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906192241.x5JMfnWe018353@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 22:41:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504593 - head/textproc/p5-Pod-Parser X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/textproc/p5-Pod-Parser X-SVN-Commit-Revision: 504593 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D910885FA1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:41:50 -0000 Author: mat Date: Wed Jun 19 22:41:48 2019 New Revision: 504593 URL: https://svnweb.freebsd.org/changeset/ports/504593 Log: Pod::Parser was removed from CORE in 5.31.0. While there, sort plist. With hat: perl@ Modified: head/textproc/p5-Pod-Parser/Makefile (contents, props changed) head/textproc/p5-Pod-Parser/pkg-plist (contents, props changed) Modified: head/textproc/p5-Pod-Parser/Makefile ============================================================================== --- head/textproc/p5-Pod-Parser/Makefile Wed Jun 19 22:41:46 2019 (r504592) +++ head/textproc/p5-Pod-Parser/Makefile Wed Jun 19 22:41:48 2019 (r504593) @@ -3,6 +3,7 @@ PORTNAME= Pod-Parser PORTVERSION= 1.63 +PORTREVISION= 1 CATEGORIES= textproc perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- @@ -16,7 +17,14 @@ LICENSE_COMB= dual USES= perl5 dos2unix USE_PERL5= configure +.include + +.if ${PERL_LEVEL} < 503100 +PLIST_SUB+= EXE_FILES="@comment " post-patch: @${REINPLACE_CMD} -e '/EXE_FILES/d' ${WRKSRC}/Makefile.PL +.else +PLIST_SUB+= EXE_FILES="" +.endif -.include +.include Modified: head/textproc/p5-Pod-Parser/pkg-plist ============================================================================== --- head/textproc/p5-Pod-Parser/pkg-plist Wed Jun 19 22:41:46 2019 (r504592) +++ head/textproc/p5-Pod-Parser/pkg-plist Wed Jun 19 22:41:48 2019 (r504593) @@ -1,12 +1,14 @@ -%%PERL5_MAN3%%/Pod::Find.3.gz -%%PERL5_MAN3%%/Pod::InputObjects.3.gz -%%PERL5_MAN3%%/Pod::ParseUtils.3.gz -%%PERL5_MAN3%%/Pod::Parser.3.gz -%%PERL5_MAN3%%/Pod::PlainText.3.gz -%%PERL5_MAN3%%/Pod::Select.3.gz +%%EXE_FILES%%bin/podselect %%SITE_PERL%%/Pod/Find.pm %%SITE_PERL%%/Pod/InputObjects.pm %%SITE_PERL%%/Pod/ParseUtils.pm %%SITE_PERL%%/Pod/Parser.pm %%SITE_PERL%%/Pod/PlainText.pm %%SITE_PERL%%/Pod/Select.pm +%%EXE_FILES%%%%PERL5_MAN1%%/podselect.1.gz +%%PERL5_MAN3%%/Pod::Find.3.gz +%%PERL5_MAN3%%/Pod::InputObjects.3.gz +%%PERL5_MAN3%%/Pod::ParseUtils.3.gz +%%PERL5_MAN3%%/Pod::Parser.3.gz +%%PERL5_MAN3%%/Pod::PlainText.3.gz +%%PERL5_MAN3%%/Pod::Select.3.gz From owner-svn-ports-all@freebsd.org Wed Jun 19 22:41:55 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1DD115CBF79; Wed, 19 Jun 2019 22:41:55 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 745D886062; Wed, 19 Jun 2019 22:41:55 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D7FB730EC; Wed, 19 Jun 2019 22:41:52 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMfqtt018485; Wed, 19 Jun 2019 22:41:52 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMfq8C018483; Wed, 19 Jun 2019 22:41:52 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906192241.x5JMfq8C018483@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 22:41:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504594 - in head: audio/xmms2 x11-toolkits/p5-Gtk2-Ex-PodViewer X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head: audio/xmms2 x11-toolkits/p5-Gtk2-Ex-PodViewer X-SVN-Commit-Revision: 504594 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 745D886062 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:41:56 -0000 Author: mat Date: Wed Jun 19 22:41:52 2019 New Revision: 504594 URL: https://svnweb.freebsd.org/changeset/ports/504594 Log: Fix build with Perl 5.31+ With hat: perl@ Modified: head/audio/xmms2/Makefile (contents, props changed) head/x11-toolkits/p5-Gtk2-Ex-PodViewer/Makefile (contents, props changed) Modified: head/audio/xmms2/Makefile ============================================================================== --- head/audio/xmms2/Makefile Wed Jun 19 22:41:48 2019 (r504593) +++ head/audio/xmms2/Makefile Wed Jun 19 22:41:52 2019 (r504594) @@ -200,6 +200,10 @@ EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src-clients-vi .include +.if defined(XMMS2_SLAVE) && ${XMMS2_SLAVE} == perl && ${PERL_LEVEL} >= 503100 +BUILD_DEPENDS+= p5-Pod-Parser>=0:textproc/p5-Pod-Parser +.endif + # Force to nothing to avoid bsd.openssl.mk adding definitions # to it when AIRPLAY option is active, waf does not understand it anyway. MAKE_ARGS= Modified: head/x11-toolkits/p5-Gtk2-Ex-PodViewer/Makefile ============================================================================== --- head/x11-toolkits/p5-Gtk2-Ex-PodViewer/Makefile Wed Jun 19 22:41:48 2019 (r504593) +++ head/x11-toolkits/p5-Gtk2-Ex-PodViewer/Makefile Wed Jun 19 22:41:52 2019 (r504594) @@ -24,4 +24,10 @@ RUN_DEPENDS= p5-Gtk2>=0:x11-toolkits/p5-Gtk2 \ USES= perl5 USE_PERL5= configure -.include +.include + +.if ${PERL_LEVEL} >= 503100 +BUILD_DEPENDS+= p5-Pod-Parser>=0:textproc/p5-Pod-Parser +.endif + +.include From owner-svn-ports-all@freebsd.org Wed Jun 19 22:42:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 843CE15CC125; Wed, 19 Jun 2019 22:42:46 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2B8F886289; Wed, 19 Jun 2019 22:42:46 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 03B2E3123; Wed, 19 Jun 2019 22:42:46 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMgj1R021832; Wed, 19 Jun 2019 22:42:45 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMgjo0021830; Wed, 19 Jun 2019 22:42:45 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906192242.x5JMgjo0021830@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 22:42:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504595 - in head/dns/bind911: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/dns/bind911: . files X-SVN-Commit-Revision: 504595 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2B8F886289 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:42:46 -0000 Author: mat Date: Wed Jun 19 22:42:45 2019 New Revision: 504595 URL: https://svnweb.freebsd.org/changeset/ports/504595 Log: Update to 9.11.8. MFH: 2019Q2 (security blanket) Security: CVE-2019-6471 Modified: head/dns/bind911/Makefile (contents, props changed) head/dns/bind911/distinfo (contents, props changed) head/dns/bind911/files/patch-configure (contents, props changed) Modified: head/dns/bind911/Makefile ============================================================================== --- head/dns/bind911/Makefile Wed Jun 19 22:41:52 2019 (r504594) +++ head/dns/bind911/Makefile Wed Jun 19 22:42:45 2019 (r504595) @@ -20,7 +20,7 @@ RUN_DEPENDS= bind-tools>0:dns/bind-tools USES= cpe libedit # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.11.7 +ISCVERSION= 9.11.8 CPE_VENDOR= isc CPE_VERSION= ${ISCVERSION:C/-.*//} Modified: head/dns/bind911/distinfo ============================================================================== --- head/dns/bind911/distinfo Wed Jun 19 22:41:52 2019 (r504594) +++ head/dns/bind911/distinfo Wed Jun 19 22:42:45 2019 (r504595) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557990453 -SHA256 (bind-9.11.7.tar.gz) = 5b9e86dc5711a1a7448356c02ddb23bb1dd78c9e02a69f9b2e2ce31d39f5a0fd -SIZE (bind-9.11.7.tar.gz) = 8124611 +TIMESTAMP = 1560947427 +SHA256 (bind-9.11.8.tar.gz) = 669fcc02a9a1864d93992e526d2186ec8923511c0260b2c037fec8ea45406651 +SIZE (bind-9.11.8.tar.gz) = 8119490 Modified: head/dns/bind911/files/patch-configure ============================================================================== --- head/dns/bind911/files/patch-configure Wed Jun 19 22:41:52 2019 (r504594) +++ head/dns/bind911/files/patch-configure Wed Jun 19 22:42:45 2019 (r504595) @@ -1,6 +1,6 @@ ---- configure.orig 2019-05-10 05:03:58 UTC +--- configure.orig 2019-06-04 16:01:00 UTC +++ configure -@@ -15159,27 +15159,9 @@ done +@@ -15170,27 +15170,9 @@ done # problems start to show up. saved_libs="$LIBS" for TRY_LIBS in \ @@ -30,7 +30,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5 $as_echo_n "checking linking as $TRY_LIBS... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext -@@ -15222,47 +15204,7 @@ $as_echo "no" >&6; } ;; +@@ -15233,47 +15215,7 @@ $as_echo "no" >&6; } ;; no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;; esac @@ -79,7 +79,7 @@ DNS_GSSAPI_LIBS="$LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5 -@@ -24315,7 +24257,7 @@ $as_echo "" >&6; } +@@ -24332,7 +24274,7 @@ $as_echo "" >&6; } # Check other locations for includes. # Order is important (sigh). From owner-svn-ports-all@freebsd.org Wed Jun 19 22:42:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1E27215CC155; Wed, 19 Jun 2019 22:42:53 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A4ECF862FF; Wed, 19 Jun 2019 22:42:52 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7C2613125; Wed, 19 Jun 2019 22:42:51 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMgpxB021996; Wed, 19 Jun 2019 22:42:51 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMgoi9021991; Wed, 19 Jun 2019 22:42:50 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906192242.x5JMgoi9021991@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 22:42:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504596 - in head/dns/bind914: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/dns/bind914: . files X-SVN-Commit-Revision: 504596 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A4ECF862FF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:42:53 -0000 Author: mat Date: Wed Jun 19 22:42:50 2019 New Revision: 504596 URL: https://svnweb.freebsd.org/changeset/ports/504596 Log: Update to 9.14.3. MFH: 2019Q2 (security blanket) Security: CVE-2019-6471 Deleted: head/dns/bind914/files/patch-lib_isc_unix_socket.c Modified: head/dns/bind914/Makefile (contents, props changed) head/dns/bind914/distinfo (contents, props changed) head/dns/bind914/files/patch-configure (contents, props changed) Modified: head/dns/bind914/Makefile ============================================================================== --- head/dns/bind914/Makefile Wed Jun 19 22:42:45 2019 (r504595) +++ head/dns/bind914/Makefile Wed Jun 19 22:42:50 2019 (r504596) @@ -8,7 +8,7 @@ PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc PORTREVISION= 0 .else # dns/bind914 here -PORTREVISION= 2 +PORTREVISION= 0 .endif CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} @@ -36,7 +36,7 @@ RUN_DEPENDS= bind-tools>0:dns/bind-tools USES= compiler:c11 cpe libedit pkgconfig ssl # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.14.2 +ISCVERSION= 9.14.3 CPE_VENDOR= isc CPE_VERSION= ${ISCVERSION:C/-.*//} Modified: head/dns/bind914/distinfo ============================================================================== --- head/dns/bind914/distinfo Wed Jun 19 22:42:45 2019 (r504595) +++ head/dns/bind914/distinfo Wed Jun 19 22:42:50 2019 (r504596) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557990570 -SHA256 (bind-9.14.2.tar.gz) = 0e4027573726502ec038db3973a086c02508671723a4845e21da1769a5c27f0c -SIZE (bind-9.14.2.tar.gz) = 6263879 +TIMESTAMP = 1560947468 +SHA256 (bind-9.14.3.tar.gz) = ce878aabcf01b61ed114522c32fff9e268b02da55b3c248349860bc3d0c8bdfa +SIZE (bind-9.14.3.tar.gz) = 6258311 Modified: head/dns/bind914/files/patch-configure ============================================================================== --- head/dns/bind914/files/patch-configure Wed Jun 19 22:42:45 2019 (r504595) +++ head/dns/bind914/files/patch-configure Wed Jun 19 22:42:50 2019 (r504596) @@ -1,6 +1,6 @@ ---- configure.orig 2019-05-10 04:51:34 UTC +--- configure.orig 2019-06-04 15:20:04 UTC +++ configure -@@ -16320,27 +16320,9 @@ done +@@ -16347,27 +16347,9 @@ done # problems start to show up. saved_libs="$LIBS" for TRY_LIBS in \ @@ -30,7 +30,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5 $as_echo_n "checking linking as $TRY_LIBS... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext -@@ -16383,47 +16365,7 @@ $as_echo "no" >&6; } ;; +@@ -16410,47 +16392,7 @@ $as_echo "no" >&6; } ;; no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;; esac @@ -79,7 +79,7 @@ DNS_GSSAPI_LIBS="$LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5 -@@ -20927,7 +20869,7 @@ $as_echo "" >&6; } +@@ -20960,7 +20902,7 @@ $as_echo "" >&6; } # Check other locations for includes. # Order is important (sigh). From owner-svn-ports-all@freebsd.org Wed Jun 19 22:44:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9451015CC1D2; Wed, 19 Jun 2019 22:44:30 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 40A92864A0; Wed, 19 Jun 2019 22:44:30 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 03DAA3128; Wed, 19 Jun 2019 22:44:30 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMiTqV022772; Wed, 19 Jun 2019 22:44:29 GMT (envelope-from timur@FreeBSD.org) Received: (from timur@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMiPjP022749; Wed, 19 Jun 2019 22:44:25 GMT (envelope-from timur@FreeBSD.org) Message-Id: <201906192244.x5JMiPjP022749@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: timur set sender to timur@FreeBSD.org using -f From: "Timur I. Bakeyev" Date: Wed, 19 Jun 2019 22:44:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504597 - in head: databases/tdb databases/tdb/files devel/talloc devel/talloc/files devel/tevent devel/tevent/files X-SVN-Group: ports-head X-SVN-Commit-Author: timur X-SVN-Commit-Paths: in head: databases/tdb databases/tdb/files devel/talloc devel/talloc/files devel/tevent devel/tevent/files X-SVN-Commit-Revision: 504597 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 40A92864A0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:44:31 -0000 Author: timur Date: Wed Jun 19 22:44:25 2019 New Revision: 504597 URL: https://svnweb.freebsd.org/changeset/ports/504597 Log: Upgrade Samba supplimentary ports to the new build system. Effectively they are dependent now from Python 3.4+ for the build, unless NO_PYTHON is specified, in which case ports still can be build with Python 2.7. That should address legacy Python dependencies for some non-Samba ports as well. Added: head/databases/tdb/files/patch-buildtools_wafsamba_samba__autoconf.py - copied, changed from r504596, head/databases/tdb/files/patch-buildtools__wafsamba__samba_autoconf.py head/databases/tdb/files/patch-buildtools_wafsamba_samba__install.py - copied, changed from r504596, head/databases/tdb/files/patch-buildtools__wafsamba__samba_install.py head/databases/tdb/files/patch-buildtools_wafsamba_wscript - copied, changed from r504596, head/databases/tdb/files/patch-buildtools__wafsamba__wscript head/databases/tdb/files/patch-lib_replace_wscript - copied, changed from r504596, head/databases/tdb/files/patch-lib__replace__wscript head/devel/talloc/files/patch-buildtools_wafsamba_samba__autoconf.py - copied, changed from r504596, head/devel/talloc/files/patch-buildtools__wafsamba__samba_autoconf.py head/devel/talloc/files/patch-buildtools_wafsamba_samba__install.py - copied, changed from r504596, head/devel/talloc/files/patch-buildtools__wafsamba__samba_install.py head/devel/talloc/files/patch-buildtools_wafsamba_wscript - copied, changed from r504596, head/devel/talloc/files/patch-buildtools__wafsamba__wscript head/devel/talloc/files/patch-lib_replace_wscript - copied, changed from r504596, head/devel/talloc/files/patch-lib__replace__wscript head/devel/tevent/files/patch-buildtools_wafsamba_samba__autoconf.py - copied, changed from r504596, head/devel/tevent/files/patch-buildtools__wafsamba__samba_autoconf.py head/devel/tevent/files/patch-buildtools_wafsamba_samba__install.py - copied, changed from r504596, head/devel/tevent/files/patch-buildtools__wafsamba__samba_install.py head/devel/tevent/files/patch-buildtools_wafsamba_wscript - copied, changed from r504596, head/devel/tevent/files/patch-buildtools__wafsamba__wscript head/devel/tevent/files/patch-lib_replace_wscript - copied, changed from r504596, head/devel/tevent/files/patch-lib__replace__wscript Deleted: head/databases/tdb/files/patch-buildtools__wafsamba__samba_autoconf.py head/databases/tdb/files/patch-buildtools__wafsamba__samba_install.py head/databases/tdb/files/patch-buildtools__wafsamba__samba_python.py head/databases/tdb/files/patch-buildtools__wafsamba__wscript head/databases/tdb/files/patch-lib__replace__wscript head/devel/talloc/files/patch-buildtools__wafsamba__samba_autoconf.py head/devel/talloc/files/patch-buildtools__wafsamba__samba_install.py head/devel/talloc/files/patch-buildtools__wafsamba__samba_python.py head/devel/talloc/files/patch-buildtools__wafsamba__wscript head/devel/talloc/files/patch-lib__replace__wscript head/devel/talloc/files/patch-third_party__waf__wafadmin__Tools__cc.py head/devel/tevent/files/patch-buildtools__wafsamba__samba_autoconf.py head/devel/tevent/files/patch-buildtools__wafsamba__samba_install.py head/devel/tevent/files/patch-buildtools__wafsamba__samba_python.py head/devel/tevent/files/patch-buildtools__wafsamba__wscript head/devel/tevent/files/patch-lib__replace__wscript head/devel/tevent/files/patch-third_party__waf__wafadmin__Tools__cc.py Modified: head/databases/tdb/Makefile head/databases/tdb/distinfo head/databases/tdb/files/patch-wscript head/devel/talloc/Makefile head/devel/talloc/distinfo head/devel/talloc/files/patch-talloc.c head/devel/talloc/files/patch-wscript head/devel/talloc/files/talloc.3 head/devel/tevent/Makefile head/devel/tevent/distinfo head/devel/tevent/files/patch-wscript Modified: head/databases/tdb/Makefile ============================================================================== --- head/databases/tdb/Makefile Wed Jun 19 22:42:50 2019 (r504596) +++ head/databases/tdb/Makefile Wed Jun 19 22:44:25 2019 (r504597) @@ -1,9 +1,9 @@ # $FreeBSD$ PORTNAME= tdb -PORTVERSION= 1.3.16 +PORTVERSION= 1.4.0 PORTREVISION= 0 -PORTEPOCH= 1 +PORTEPOCH= 0 CATEGORIES= databases MASTER_SITES= SAMBA @@ -14,6 +14,8 @@ LICENSE= GPLv3 IGNORE_NONTHREAD_PYTHON=needs port lang/python${PYTHON_SUFFIX} to be build with THREADS support +CONFLICTS_INSTALL= tdb1-* + #FLAVORS= default nopython debug #nopython_PKGNAMESUFFIX= -nopython #debug_PKGNAMESUFFIX= -debug @@ -21,7 +23,7 @@ IGNORE_NONTHREAD_PYTHON=needs port lang/python${PYTHON #debug_CONFLICTS= tdb tdb-nopython #default_CONFLICTS= tdb-nopython tdb-debug -USES= compiler pkgconfig waf +USES= compiler gettext-runtime pkgconfig waf USE_LDCONFIG= yes WAF_CMD= buildtools/bin/waf CONFIGURE_LOG= bin/config.log @@ -33,9 +35,13 @@ CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ --disable-rpath \ --without-gettext -OPTIONS_DEFINE= MANPAGES +OPTIONS_DEFINE= MANPAGES DEBUG MANPAGES_DESC= Build and install manpages (requires textproc/docbook-xsl) +DEBUG_CONFIGURE_ON= --verbose --enable-debug +DEBUG_MAKE_ARGS= --verbose +DEBUG_FLAGS= -g -ggdb3 -O0 -DTDB_TRACE=1 + .include TDB_BINS= bin/tdbbackup \ @@ -49,44 +55,17 @@ PLIST_FILES+= include/tdb.h \ lib/libtdb.so.1 \ ${PKGCONFIGDIR}/tdb.pc -.if defined(SAMBA4_DEBUG) -CFLAGS+= -DTDB_TRACE=1 -.endif .if defined(NO_PYTHON) -USES+= python:2.7,build +USES+= python:2.7+,build,test CONFIGURE_ARGS+= --disable-python .else -USES+= python:2.7 +USES+= python:3.4+ PLIST_FILES+= ${PYTHON_SITELIBDIR}/tdb.so \ ${PYTHON_SITELIBDIR}/_tdb_text.py -# XXX: This is a gross hack to make port use both Python 2.7+ and 3.3+ -# This is not officially supported, use at your own risk -.if defined(WITH_SAMBA4_PYTHON3) && ${WITH_SAMBA4_PYTHON3:M3\.[0-9]} -SAMBA4_PYTHON3_VERSION= ${WITH_SAMBA4_PYTHON3} -SAMBA4_PYTHON3= python${SAMBA4_PYTHON3_VERSION} -SAMBA4_PYTHON3_VER= ${SAMBA4_PYTHON3_VERSION:C/\.//} -.if !exists(${PORTSDIR}/lang/python${SAMBA4_PYTHON3_VER}) -.error unsupported or unknown Python version ${SAMBA4_PYTHON3_VERSION} .endif -BUILD_DEPENDS+= ${SAMBA4_PYTHON3}:lang/python${SAMBA4_PYTHON3_VER} -RUN_DEPENDS+= ${SAMBA4_PYTHON3}:lang/python${SAMBA4_PYTHON3_VER} -# cpython-36m -SAMBA4_PYTHON3_SO_ABI!= [ ! -f "${LOCALBASE}/bin/${SAMBA4_PYTHON3}" ] || ${LOCALBASE}/bin/${SAMBA4_PYTHON3} -c 'import sysconfig; print(sysconfig.get_config_var("SOABI") or "")' 2>/dev/null -SAMBA4_PYTHON3_SITELIBDIR=lib/python${SAMBA4_PYTHON3_VERSION}/site-packages -CONFIGURE_ENV+= PYTHON3_SO_ABI_FLAG=.${SAMBA4_PYTHON3_SO_ABI} -CONFIGURE_ARGS+= --extra-python=${LOCALBASE}/bin/${SAMBA4_PYTHON3} - -PLIST_SUB+= SAMBA4_PYTHON3_SO_ABI=${SAMBA4_PYTHON3_SO_ABI} \ - SAMBA4_PYTHON3_SITELIBDIR=${SAMBA4_PYTHON3_SITELIBDIR} - -PLIST_FILES+= ${SAMBA4_PYTHON3_SITELIBDIR}/tdb.${SAMBA4_PYTHON3_SO_ABI}.so \ - ${SAMBA4_PYTHON3_SITELIBDIR}/_tdb_text.py -.endif -.endif - .include .if ! ${PORT_OPTIONS:MMANPAGES} @@ -134,9 +113,6 @@ post-install: .endfor .if !defined(NO_PYTHON) ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/tdb.so -.if defined(SAMBA4_PYTHON3) - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SAMBA4_PYTHON3_SITELIBDIR}/tdb.${SAMBA4_PYTHON3_SO_ABI}.so -.endif .endif .include Modified: head/databases/tdb/distinfo ============================================================================== --- head/databases/tdb/distinfo Wed Jun 19 22:42:50 2019 (r504596) +++ head/databases/tdb/distinfo Wed Jun 19 22:44:25 2019 (r504597) @@ -1,3 +1,3 @@ -TIMESTAMP = 1531611906 -SHA256 (tdb-1.3.16.tar.gz) = 6a3fc2616567f23993984ada3cea97d953a27669ffd1bfbbe961f26e0cf96cc5 -SIZE (tdb-1.3.16.tar.gz) = 504330 +TIMESTAMP = 1560369252 +SHA256 (tdb-1.4.0.tar.gz) = c1a0729c5400fb495465fa4bd953ae290db43c28dacd0506aef50dc482132d35 +SIZE (tdb-1.4.0.tar.gz) = 696994 Copied and modified: head/databases/tdb/files/patch-buildtools_wafsamba_samba__autoconf.py (from r504596, head/databases/tdb/files/patch-buildtools__wafsamba__samba_autoconf.py) ============================================================================== --- head/databases/tdb/files/patch-buildtools__wafsamba__samba_autoconf.py Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/databases/tdb/files/patch-buildtools_wafsamba_samba__autoconf.py Wed Jun 19 22:44:25 2019 (r504597) @@ -1,6 +1,6 @@ ---- buildtools/wafsamba/samba_autoconf.py.orig 2016-10-07 04:45:35 UTC +--- buildtools/wafsamba/samba_autoconf.py.orig 2019-02-26 06:44:21 UTC +++ buildtools/wafsamba/samba_autoconf.py -@@ -548,7 +548,7 @@ def library_flags(self, libs): +@@ -573,7 +573,7 @@ def library_flags(self, libs): @conf @@ -9,7 +9,7 @@ '''check if a set of libraries exist as system libraries returns the sublist of libs that do exist as a syslib or [] -@@ -568,11 +568,29 @@ int foo() +@@ -593,11 +593,14 @@ int foo() ret.append(lib) continue @@ -17,36 +17,20 @@ + msg = 'Checking for library %s' % lib + (ccflags, ldflags, cpppath) = library_flags(conf, lib) -+ if shlib: -- res = conf.check(features='c cshlib', fragment=fragment, lib=lib, uselib_store=lib, ccflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) -+ res = conf.check(features='c cshlib', -+ fragment=fragment, -+ lib=lib, -+ uselib_store=lib, -+ ccflags=ccflags, -+ ldflags=ldflags, -+ uselib=lib.upper(), -+ mandatory=False, -+ msg=msg) +- res = conf.check(features='c cshlib', fragment=fragment, lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) ++ res = conf.check(features='c cshlib', fragment=fragment, lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False, msg=msg) else: -- res = conf.check(lib=lib, uselib_store=lib, ccflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) -+ res = conf.check(lib=lib, -+ uselib_store=lib, -+ ccflags=ccflags, -+ ldflags=ldflags, -+ uselib=lib.upper(), -+ mandatory=False, -+ msg=msg) +- res = conf.check(lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) ++ res = conf.check(lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False, msg=msg) if not res: if mandatory: -@@ -873,7 +891,7 @@ def SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS(c +@@ -925,6 +928,5 @@ def SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS(c conf.env.undefined_ldflags = conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True) if not sys.platform.startswith("openbsd") and conf.env.undefined_ignore_ldflags == []: - if conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup']): + if conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup'] + conf.env.WERROR_CFLAGS): conf.env.undefined_ignore_ldflags = ['-undefined', 'dynamic_lookup'] - - @conf +- Copied and modified: head/databases/tdb/files/patch-buildtools_wafsamba_samba__install.py (from r504596, head/databases/tdb/files/patch-buildtools__wafsamba__samba_install.py) ============================================================================== --- head/databases/tdb/files/patch-buildtools__wafsamba__samba_install.py Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/databases/tdb/files/patch-buildtools_wafsamba_samba__install.py Wed Jun 19 22:44:25 2019 (r504597) @@ -1,4 +1,4 @@ ---- buildtools/wafsamba/samba_install.py.orig 2015-12-10 11:01:40 UTC +--- buildtools/wafsamba/samba_install.py.orig 2019-02-14 11:21:38 UTC +++ buildtools/wafsamba/samba_install.py @@ -118,7 +118,7 @@ def install_library(self): inst_name = bld.make_libname(t.target) Copied and modified: head/databases/tdb/files/patch-buildtools_wafsamba_wscript (from r504596, head/databases/tdb/files/patch-buildtools__wafsamba__wscript) ============================================================================== --- head/databases/tdb/files/patch-buildtools__wafsamba__wscript Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/databases/tdb/files/patch-buildtools_wafsamba_wscript Wed Jun 19 22:44:25 2019 (r504597) @@ -1,6 +1,6 @@ ---- buildtools/wafsamba/wscript.orig 2017-04-28 11:57:26 UTC +--- buildtools/wafsamba/wscript.orig 2019-02-26 06:44:21 UTC +++ buildtools/wafsamba/wscript -@@ -76,10 +76,10 @@ def set_options(opt): +@@ -82,10 +82,10 @@ def options(opt): opt.add_option('--with-libiconv', help='additional directory to search for libiconv', Copied and modified: head/databases/tdb/files/patch-lib_replace_wscript (from r504596, head/databases/tdb/files/patch-lib__replace__wscript) ============================================================================== --- head/databases/tdb/files/patch-lib__replace__wscript Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/databases/tdb/files/patch-lib_replace_wscript Wed Jun 19 22:44:25 2019 (r504597) @@ -1,11 +1,11 @@ ---- lib/replace/wscript.orig 2017-08-24 11:27:53 UTC +--- lib/replace/wscript.orig 2019-02-26 06:44:21 UTC +++ lib/replace/wscript -@@ -81,7 +81,7 @@ def configure(conf): - conf.CHECK_HEADERS('sys/atomic.h') +@@ -119,7 +119,7 @@ def configure(conf): + conf.CHECK_HEADERS('sys/atomic.h stdatomic.h') conf.CHECK_HEADERS('libgen.h') - if conf.CHECK_CFLAGS('-Wno-format-truncation'): + if conf.CHECK_CFLAGS(['-Wno-format-truncation'] + conf.env.WERROR_CFLAGS): conf.define('HAVE_WNO_FORMAT_TRUNCATION', '1') - # Check for process set name support + if conf.CHECK_CFLAGS('-Wno-unused-function'): Modified: head/databases/tdb/files/patch-wscript ============================================================================== --- head/databases/tdb/files/patch-wscript Wed Jun 19 22:42:50 2019 (r504596) +++ head/databases/tdb/files/patch-wscript Wed Jun 19 22:44:25 2019 (r504597) @@ -1,6 +1,6 @@ ---- wscript.orig 2017-08-24 11:29:08 UTC +--- wscript.orig 2019-02-26 07:02:52 UTC +++ wscript -@@ -115,7 +115,7 @@ def build(bld): +@@ -121,7 +121,7 @@ def build(bld): COMMON_SRC = bld.SUBDIR('common', COMMON_FILES) if bld.env.standalone_tdb: Modified: head/devel/talloc/Makefile ============================================================================== --- head/devel/talloc/Makefile Wed Jun 19 22:42:50 2019 (r504596) +++ head/devel/talloc/Makefile Wed Jun 19 22:44:25 2019 (r504597) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= talloc -PORTVERSION= 2.1.14 +PORTVERSION= 2.2.0 PORTREVISION= 0 CATEGORIES= devel MASTER_SITES= SAMBA @@ -13,6 +13,8 @@ LICENSE= LGPL3 IGNORE_NONTHREAD_PYTHON=needs port lang/python${PYTHON_SUFFIX} to be build with THREADS support +CONFLICTS_INSTALL= talloc1-* + #FLAVORS= default nopython #nopython_PKGNAMESUFFIX= -nopython #nopython_CONFLICTS= talloc @@ -30,9 +32,13 @@ CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ --disable-rpath \ --without-gettext -OPTIONS_DEFINE= MANPAGES +OPTIONS_DEFINE= MANPAGES DEBUG MANPAGES_DESC= Build and install manpages (requires textproc/docbook-xsl) +DEBUG_CONFIGURE_ON= --verbose --enable-debug +DEBUG_MAKE_ARGS= --verbose +DEBUG_FLAGS= -g -ggdb3 -O0 + .include PLIST_FILES+= include/talloc.h \ @@ -41,44 +47,18 @@ PLIST_FILES+= include/talloc.h \ ${PKGCONFIGDIR}/talloc.pc .if defined(NO_PYTHON) -USES+= python:2.7,build +USES+= python:2.7+,build,test CONFIGURE_ARGS+= --disable-python .else -USES+= python:2.7 +USES+= python:3.4+ PLIST_FILES+= include/pytalloc.h \ lib/libpytalloc-util.so \ lib/libpytalloc-util.so.2 \ ${PYTHON_SITELIBDIR}/talloc.so \ ${PKGCONFIGDIR}/pytalloc-util.pc -# XXX: This is a gross hack to make port use both Python 2.7+ and 3.3+ -# This is not officially supported, use at your own risk -.if defined(WITH_SAMBA4_PYTHON3) && ${WITH_SAMBA4_PYTHON3:M3\.[0-9]} -SAMBA4_PYTHON3_VERSION= ${WITH_SAMBA4_PYTHON3} -SAMBA4_PYTHON3= python${SAMBA4_PYTHON3_VERSION} -SAMBA4_PYTHON3_VER= ${SAMBA4_PYTHON3_VERSION:C/\.//} -.if !exists(${PORTSDIR}/lang/python${SAMBA4_PYTHON3_VER}) -.error unsupported or unknown Python version ${SAMBA4_PYTHON3_VERSION} .endif -BUILD_DEPENDS+= ${SAMBA4_PYTHON3}:lang/python${SAMBA4_PYTHON3_VER} -RUN_DEPENDS+= ${SAMBA4_PYTHON3}:lang/python${SAMBA4_PYTHON3_VER} -# cpython-36m -SAMBA4_PYTHON3_SO_ABI!= [ ! -f "${LOCALBASE}/bin/${SAMBA4_PYTHON3}" ] || ${LOCALBASE}/bin/${SAMBA4_PYTHON3} -c 'import sysconfig; print(sysconfig.get_config_var("SOABI") or "")' 2>/dev/null -SAMBA4_PYTHON3_SITELIBDIR=lib/python${SAMBA4_PYTHON3_VERSION}/site-packages -CONFIGURE_ENV+= PYTHON3_SO_ABI_FLAG=.${SAMBA4_PYTHON3_SO_ABI} -CONFIGURE_ARGS+= --extra-python=${LOCALBASE}/bin/${SAMBA4_PYTHON3} - -PLIST_SUB+= SAMBA4_PYTHON3_SO_ABI=${SAMBA4_PYTHON3_SO_ABI} \ - SAMBA4_PYTHON3_SITELIBDIR=${SAMBA4_PYTHON3_SITELIBDIR} - -PLIST_FILES+= lib/libpytalloc-util.${SAMBA4_PYTHON3_SO_ABI}.so \ - lib/libpytalloc-util.${SAMBA4_PYTHON3_SO_ABI}.so.2 \ - ${SAMBA4_PYTHON3_SITELIBDIR}/talloc.${SAMBA4_PYTHON3_SO_ABI}.so \ - ${PKGCONFIGDIR}/pytalloc-util.${SAMBA4_PYTHON3_SO_ABI}.pc -.endif -.endif - .include .if ! ${PORT_OPTIONS:MMANPAGES} @@ -122,10 +102,6 @@ post-install: .if !defined(NO_PYTHON) ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpytalloc-util.so ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/talloc.so -.if defined(SAMBA4_PYTHON3) - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libpytalloc-util.${SAMBA4_PYTHON3_SO_ABI}.so - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SAMBA4_PYTHON3_SITELIBDIR}/talloc.${SAMBA4_PYTHON3_SO_ABI}.so -.endif .endif .include Modified: head/devel/talloc/distinfo ============================================================================== --- head/devel/talloc/distinfo Wed Jun 19 22:42:50 2019 (r504596) +++ head/devel/talloc/distinfo Wed Jun 19 22:44:25 2019 (r504597) @@ -1,3 +1,3 @@ -TIMESTAMP = 1531611950 -SHA256 (talloc-2.1.14.tar.gz) = b185602756a628bac507fa8af8b9df92ace69d27c0add5dab93190ad7c3367ce -SIZE (talloc-2.1.14.tar.gz) = 444589 +TIMESTAMP = 1558143287 +SHA256 (talloc-2.2.0.tar.gz) = 5c6f6a45ef96b3fd0b28942673a68d0c6af5dcca9d676a2e4d57ce7e86c22ebc +SIZE (talloc-2.2.0.tar.gz) = 633467 Copied and modified: head/devel/talloc/files/patch-buildtools_wafsamba_samba__autoconf.py (from r504596, head/devel/talloc/files/patch-buildtools__wafsamba__samba_autoconf.py) ============================================================================== --- head/devel/talloc/files/patch-buildtools__wafsamba__samba_autoconf.py Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/devel/talloc/files/patch-buildtools_wafsamba_samba__autoconf.py Wed Jun 19 22:44:25 2019 (r504597) @@ -1,6 +1,6 @@ ---- buildtools/wafsamba/samba_autoconf.py.orig 2016-10-07 04:45:35 UTC +--- buildtools/wafsamba/samba_autoconf.py.orig 2019-03-21 10:12:32 UTC +++ buildtools/wafsamba/samba_autoconf.py -@@ -548,7 +548,7 @@ def library_flags(self, libs): +@@ -573,7 +573,7 @@ def library_flags(self, libs): @conf @@ -9,7 +9,7 @@ '''check if a set of libraries exist as system libraries returns the sublist of libs that do exist as a syslib or [] -@@ -568,11 +568,29 @@ int foo() +@@ -593,11 +593,14 @@ int foo() ret.append(lib) continue @@ -17,36 +17,20 @@ + msg = 'Checking for library %s' % lib + (ccflags, ldflags, cpppath) = library_flags(conf, lib) -+ if shlib: -- res = conf.check(features='c cshlib', fragment=fragment, lib=lib, uselib_store=lib, ccflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) -+ res = conf.check(features='c cshlib', -+ fragment=fragment, -+ lib=lib, -+ uselib_store=lib, -+ ccflags=ccflags, -+ ldflags=ldflags, -+ uselib=lib.upper(), -+ mandatory=False, -+ msg=msg) +- res = conf.check(features='c cshlib', fragment=fragment, lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) ++ res = conf.check(features='c cshlib', fragment=fragment, lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False, msg=msg) else: -- res = conf.check(lib=lib, uselib_store=lib, ccflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) -+ res = conf.check(lib=lib, -+ uselib_store=lib, -+ ccflags=ccflags, -+ ldflags=ldflags, -+ uselib=lib.upper(), -+ mandatory=False, -+ msg=msg) +- res = conf.check(lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) ++ res = conf.check(lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False, msg=msg) if not res: if mandatory: -@@ -873,7 +891,7 @@ def SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS(c +@@ -925,6 +928,5 @@ def SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS(c conf.env.undefined_ldflags = conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True) if not sys.platform.startswith("openbsd") and conf.env.undefined_ignore_ldflags == []: - if conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup']): + if conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup'] + conf.env.WERROR_CFLAGS): conf.env.undefined_ignore_ldflags = ['-undefined', 'dynamic_lookup'] - - @conf +- Copied and modified: head/devel/talloc/files/patch-buildtools_wafsamba_samba__install.py (from r504596, head/devel/talloc/files/patch-buildtools__wafsamba__samba_install.py) ============================================================================== --- head/devel/talloc/files/patch-buildtools__wafsamba__samba_install.py Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/devel/talloc/files/patch-buildtools_wafsamba_samba__install.py Wed Jun 19 22:44:25 2019 (r504597) @@ -1,6 +1,6 @@ ---- buildtools/wafsamba/samba_install.py.orig 2015-12-10 11:01:40 UTC +--- buildtools/wafsamba/samba_install.py.orig 2019-03-21 10:12:32 UTC +++ buildtools/wafsamba/samba_install.py -@@ -118,7 +118,7 @@ def install_library(self): +@@ -115,7 +115,7 @@ def install_library(self): inst_name = bld.make_libname(t.target) elif self.vnum: vnum_base = self.vnum.split('.')[0] @@ -8,4 +8,4 @@ + install_name = bld.make_libname(target_name, version=vnum_base) install_link = bld.make_libname(target_name, version=vnum_base) inst_name = bld.make_libname(t.target) - if not self.private_library: + if not self.private_library or not t.env.SONAME_ST: Copied and modified: head/devel/talloc/files/patch-buildtools_wafsamba_wscript (from r504596, head/devel/talloc/files/patch-buildtools__wafsamba__wscript) ============================================================================== --- head/devel/talloc/files/patch-buildtools__wafsamba__wscript Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/devel/talloc/files/patch-buildtools_wafsamba_wscript Wed Jun 19 22:44:25 2019 (r504597) @@ -1,6 +1,6 @@ ---- buildtools/wafsamba/wscript.orig 2017-04-28 11:57:26 UTC +--- buildtools/wafsamba/wscript.orig 2019-03-21 10:12:32 UTC +++ buildtools/wafsamba/wscript -@@ -76,10 +76,10 @@ def set_options(opt): +@@ -82,10 +82,10 @@ def options(opt): opt.add_option('--with-libiconv', help='additional directory to search for libiconv', Copied and modified: head/devel/talloc/files/patch-lib_replace_wscript (from r504596, head/devel/talloc/files/patch-lib__replace__wscript) ============================================================================== --- head/devel/talloc/files/patch-lib__replace__wscript Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/devel/talloc/files/patch-lib_replace_wscript Wed Jun 19 22:44:25 2019 (r504597) @@ -1,11 +1,11 @@ ---- lib/replace/wscript.orig 2017-07-02 20:22:14 UTC +--- lib/replace/wscript.orig 2019-03-21 10:12:32 UTC +++ lib/replace/wscript -@@ -81,7 +81,7 @@ def configure(conf): - conf.CHECK_HEADERS('sys/atomic.h') +@@ -119,7 +119,7 @@ def configure(conf): + conf.CHECK_HEADERS('sys/atomic.h stdatomic.h') conf.CHECK_HEADERS('libgen.h') - if conf.CHECK_CFLAGS('-Wno-format-truncation'): + if conf.CHECK_CFLAGS(['-Wno-format-truncation'] + conf.env.WERROR_CFLAGS): conf.define('HAVE_WNO_FORMAT_TRUNCATION', '1') - # Check for process set name support + if conf.CHECK_CFLAGS('-Wno-unused-function'): Modified: head/devel/talloc/files/patch-talloc.c ============================================================================== --- head/devel/talloc/files/patch-talloc.c Wed Jun 19 22:42:50 2019 (r504596) +++ head/devel/talloc/files/patch-talloc.c Wed Jun 19 22:44:25 2019 (r504597) @@ -1,6 +1,6 @@ ---- talloc.c.orig 2018-01-13 09:07:51 UTC +--- talloc.c.orig 2019-03-21 10:12:32 UTC +++ talloc.c -@@ -387,6 +387,9 @@ void talloc_lib_init(void) __attribute__ +@@ -396,6 +396,9 @@ void talloc_lib_init(void) __attribute__ void talloc_lib_init(void) { uint32_t random_value; @@ -10,7 +10,7 @@ #if defined(HAVE_GETAUXVAL) && defined(AT_RANDOM) uint8_t *p; /* -@@ -420,6 +423,7 @@ void talloc_lib_init(void) +@@ -429,6 +432,7 @@ void talloc_lib_init(void) */ random_value = ((uintptr_t)talloc_lib_init & 0xFFFFFFFF); } Modified: head/devel/talloc/files/patch-wscript ============================================================================== --- head/devel/talloc/files/patch-wscript Wed Jun 19 22:42:50 2019 (r504596) +++ head/devel/talloc/files/patch-wscript Wed Jun 19 22:44:25 2019 (r504597) @@ -1,6 +1,6 @@ ---- wscript.orig 2018-01-13 09:07:51 UTC +--- wscript.orig 2019-03-21 10:12:32 UTC +++ wscript -@@ -46,13 +46,14 @@ def configure(conf): +@@ -45,13 +45,14 @@ def configure(conf): conf.env.TALLOC_COMPAT1 = False if conf.env.standalone_talloc: conf.env.TALLOC_COMPAT1 = Options.options.TALLOC_COMPAT1 Modified: head/devel/talloc/files/talloc.3 ============================================================================== --- head/devel/talloc/files/talloc.3 Wed Jun 19 22:42:50 2019 (r504596) +++ head/devel/talloc/files/talloc.3 Wed Jun 19 22:44:25 2019 (r504597) @@ -1,7 +1,7 @@ '\" t .\" Title: talloc .\" Author: [see the "AUTHOR" section] -.\" Generator: DocBook XSL Stylesheets v1.76.1 +.\" Generator: DocBook XSL Stylesheets v1.79.1 .\" Date: 2015-04-10 .\" Manual: System Administration tools .\" Source: Samba 4.0 @@ -131,8 +131,6 @@ From the 2\&.0 version of talloc, as a special case, t .PP To help you find problems in your code caused by this behaviour, if you do try and free a pointer with more than one parent then the talloc logging function will be called to give output like this: .PP - -.sp .if n \{\ .RS 4 .\} @@ -163,8 +161,6 @@ is NULL, then the function is a no\-op, and simply ret .PP After creating a reference you can free it in one of the following ways: .PP - -.sp .RS 4 .ie n \{\ \h'-04'\(bu\h'+03'\c @@ -365,8 +361,6 @@ It is possible to produce loops in the parent/child re .PP Note that if you try and call talloc_steal() on a pointer that has more than one parent then the result is ambiguous\&. Talloc will choose to remove the parent that is currently indicated by talloc_parent() and replace it with the chosen parent\&. You will also get a message like this via the talloc logging functions: .PP - -.sp .if n \{\ .RS 4 .\} Modified: head/devel/tevent/Makefile ============================================================================== --- head/devel/tevent/Makefile Wed Jun 19 22:42:50 2019 (r504596) +++ head/devel/tevent/Makefile Wed Jun 19 22:44:25 2019 (r504597) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tevent -PORTVERSION= 0.9.37 +PORTVERSION= 0.10.0 PORTREVISION= 0 PORTEPOCH= 0 CATEGORIES= devel @@ -14,15 +14,17 @@ LICENSE= LGPL3 IGNORE_NONTHREAD_PYTHON=needs port lang/python${PYTHON_SUFFIX} to be build with THREADS support -BUILD_DEPENDS= talloc>=2.1.11:devel/talloc -RUN_DEPENDS= talloc>=2.1.11:devel/talloc +BUILD_DEPENDS= talloc>=2.2.0:devel/talloc +RUN_DEPENDS= talloc>=2.2.0:devel/talloc +CONFLICTS_INSTALL= tevent1-* + #FLAVORS= default nopython #nopython_PKGNAMESUFFIX= -nopython #nopython_CONFLICTS= tevent #default_CONFLICTS= tevent-nopython -USES= compiler pkgconfig waf +USES= compiler gettext-runtime pkgconfig waf USE_LDCONFIG= yes WAF_CMD= buildtools/bin/waf CONFIGURE_LOG= bin/config.log @@ -36,9 +38,13 @@ CONFIGURE_ARGS+= --mandir=${MANPREFIX}/man \ --disable-rpath \ --without-gettext -OPTIONS_DEFINE= MANPAGES +OPTIONS_DEFINE= MANPAGES DEBUG MANPAGES_DESC= Build and install manpages (requires textproc/docbook-xsl) +DEBUG_CONFIGURE_ON= --verbose --enable-debug +DEBUG_MAKE_ARGS= --verbose +DEBUG_FLAGS= -g -ggdb3 -O0 + .include PLIST_FILES+= include/tevent.h \ @@ -47,43 +53,15 @@ PLIST_FILES+= include/tevent.h \ ${PKGCONFIGDIR}/tevent.pc .if defined(NO_PYTHON) -USES+= python:2.7,build +USES+= python:2.7+,build,test CONFIGURE_ARGS+= --disable-python .else -USES+= python:2.7 +USES+= python:3.4+ PLIST_FILES+= ${PYTHON_SITELIBDIR}/_tevent.so \ - ${PYTHON_SITELIBDIR}/tevent.py \ - ${PYTHON_SITELIBDIR}/tevent.pyc \ - ${PYTHON_SITELIBDIR}/tevent.pyo -# XXX: This is a gross hack to make port use both Python 2.7+ and 3.3+ -# This is not officially supported, use at your own risk -.if defined(WITH_SAMBA4_PYTHON3) && ${WITH_SAMBA4_PYTHON3:M3\.[0-9]} -SAMBA4_PYTHON3_VERSION= ${WITH_SAMBA4_PYTHON3} -SAMBA4_PYTHON3= python${SAMBA4_PYTHON3_VERSION} -SAMBA4_PYTHON3_VER= ${SAMBA4_PYTHON3_VERSION:C/\.//} -.if !exists(${PORTSDIR}/lang/python${SAMBA4_PYTHON3_VER}) -.error unsupported or unknown Python version ${SAMBA4_PYTHON3_VERSION} + ${PYTHON_SITELIBDIR}/tevent.py .endif -BUILD_DEPENDS+= ${SAMBA4_PYTHON3}:lang/python${SAMBA4_PYTHON3_VER} -RUN_DEPENDS+= ${SAMBA4_PYTHON3}:lang/python${SAMBA4_PYTHON3_VER} -# cpython-36m -SAMBA4_PYTHON3_SO_ABI!= [ ! -f "${LOCALBASE}/bin/${SAMBA4_PYTHON3}" ] || ${LOCALBASE}/bin/${SAMBA4_PYTHON3} -c 'import sysconfig; print(sysconfig.get_config_var("SOABI") or "")' 2>/dev/null -SAMBA4_PYTHON3_SITELIBDIR=lib/python${SAMBA4_PYTHON3_VERSION}/site-packages -CONFIGURE_ENV+= PYTHON3_SO_ABI_FLAG=.${SAMBA4_PYTHON3_SO_ABI} -CONFIGURE_ARGS+= --extra-python=${LOCALBASE}/bin/${SAMBA4_PYTHON3} - -PLIST_SUB+= SAMBA4_PYTHON3_SO_ABI=${SAMBA4_PYTHON3_SO_ABI} \ - SAMBA4_PYTHON3_SITELIBDIR=${SAMBA4_PYTHON3_SITELIBDIR} - -PLIST_FILES+= ${SAMBA4_PYTHON3_SITELIBDIR}/_tevent.${SAMBA4_PYTHON3_SO_ABI}.so \ - ${SAMBA4_PYTHON3_SITELIBDIR}/tevent.py \ - ${SAMBA4_PYTHON3_SITELIBDIR}/tevent.pyc \ - ${SAMBA4_PYTHON3_SITELIBDIR}/tevent.pyo -.endif -.endif - .include .if ! ${PORT_OPTIONS:MMANPAGES} @@ -112,19 +90,10 @@ pre-configure: ${FALSE}; \ fi -.if !defined(NO_PYTHON) -post-build: - ${PYTHON_CMD} -m py_compile ${BUILD_WRKSRC}/tevent.py - ${PYTHON_CMD} -O -m py_compile ${BUILD_WRKSRC}/tevent.py -.endif - post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libtevent.so .if !defined(NO_PYTHON) ${STRIP_CMD} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/_tevent.so -.if defined(SAMBA4_PYTHON3) - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SAMBA4_PYTHON3_SITELIBDIR}/_tevent.${SAMBA4_PYTHON3_SO_ABI}.so -.endif .endif .include Modified: head/devel/tevent/distinfo ============================================================================== --- head/devel/tevent/distinfo Wed Jun 19 22:42:50 2019 (r504596) +++ head/devel/tevent/distinfo Wed Jun 19 22:44:25 2019 (r504597) @@ -1,3 +1,3 @@ -TIMESTAMP = 1531613973 -SHA256 (tevent-0.9.37.tar.gz) = 168345ed65eac03785cf77b95238e7dc66cbb473a42811693a6b0916e5dae7e0 -SIZE (tevent-0.9.37.tar.gz) = 603859 +TIMESTAMP = 1560369699 +SHA256 (tevent-0.10.0.tar.gz) = 33f39612cd6d1ae6a737245784581494846f5bb07827983d2f41f942446aa4e6 +SIZE (tevent-0.10.0.tar.gz) = 794845 Copied and modified: head/devel/tevent/files/patch-buildtools_wafsamba_samba__autoconf.py (from r504596, head/devel/tevent/files/patch-buildtools__wafsamba__samba_autoconf.py) ============================================================================== --- head/devel/tevent/files/patch-buildtools__wafsamba__samba_autoconf.py Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/devel/tevent/files/patch-buildtools_wafsamba_samba__autoconf.py Wed Jun 19 22:44:25 2019 (r504597) @@ -1,6 +1,6 @@ ---- buildtools/wafsamba/samba_autoconf.py.orig 2016-10-07 04:45:35 UTC +--- buildtools/wafsamba/samba_autoconf.py.orig 2019-03-21 10:12:32 UTC +++ buildtools/wafsamba/samba_autoconf.py -@@ -548,7 +548,7 @@ def library_flags(self, libs): +@@ -573,7 +573,7 @@ def library_flags(self, libs): @conf @@ -9,7 +9,7 @@ '''check if a set of libraries exist as system libraries returns the sublist of libs that do exist as a syslib or [] -@@ -568,11 +568,29 @@ int foo() +@@ -593,11 +593,14 @@ int foo() ret.append(lib) continue @@ -17,36 +17,20 @@ + msg = 'Checking for library %s' % lib + (ccflags, ldflags, cpppath) = library_flags(conf, lib) -+ if shlib: -- res = conf.check(features='c cshlib', fragment=fragment, lib=lib, uselib_store=lib, ccflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) -+ res = conf.check(features='c cshlib', -+ fragment=fragment, -+ lib=lib, -+ uselib_store=lib, -+ ccflags=ccflags, -+ ldflags=ldflags, -+ uselib=lib.upper(), -+ mandatory=False, -+ msg=msg) +- res = conf.check(features='c cshlib', fragment=fragment, lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) ++ res = conf.check(features='c cshlib', fragment=fragment, lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False, msg=msg) else: -- res = conf.check(lib=lib, uselib_store=lib, ccflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) -+ res = conf.check(lib=lib, -+ uselib_store=lib, -+ ccflags=ccflags, -+ ldflags=ldflags, -+ uselib=lib.upper(), -+ mandatory=False, -+ msg=msg) +- res = conf.check(lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False) ++ res = conf.check(lib=lib, uselib_store=lib, cflags=ccflags, ldflags=ldflags, uselib=lib.upper(), mandatory=False, msg=msg) if not res: if mandatory: -@@ -873,7 +891,7 @@ def SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS(c +@@ -925,6 +928,5 @@ def SAMBA_CHECK_UNDEFINED_SYMBOL_FLAGS(c conf.env.undefined_ldflags = conf.ADD_LDFLAGS('-Wl,-no-undefined', testflags=True) if not sys.platform.startswith("openbsd") and conf.env.undefined_ignore_ldflags == []: - if conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup']): + if conf.CHECK_LDFLAGS(['-undefined', 'dynamic_lookup'] + conf.env.WERROR_CFLAGS): conf.env.undefined_ignore_ldflags = ['-undefined', 'dynamic_lookup'] - - @conf +- Copied and modified: head/devel/tevent/files/patch-buildtools_wafsamba_samba__install.py (from r504596, head/devel/tevent/files/patch-buildtools__wafsamba__samba_install.py) ============================================================================== --- head/devel/tevent/files/patch-buildtools__wafsamba__samba_install.py Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/devel/tevent/files/patch-buildtools_wafsamba_samba__install.py Wed Jun 19 22:44:25 2019 (r504597) @@ -1,6 +1,6 @@ ---- buildtools/wafsamba/samba_install.py.orig 2015-12-10 11:01:40 UTC +--- buildtools/wafsamba/samba_install.py.orig 2019-03-21 10:12:32 UTC +++ buildtools/wafsamba/samba_install.py -@@ -118,7 +118,7 @@ def install_library(self): +@@ -115,7 +115,7 @@ def install_library(self): inst_name = bld.make_libname(t.target) elif self.vnum: vnum_base = self.vnum.split('.')[0] @@ -8,4 +8,4 @@ + install_name = bld.make_libname(target_name, version=vnum_base) install_link = bld.make_libname(target_name, version=vnum_base) inst_name = bld.make_libname(t.target) - if not self.private_library: + if not self.private_library or not t.env.SONAME_ST: Copied and modified: head/devel/tevent/files/patch-buildtools_wafsamba_wscript (from r504596, head/devel/tevent/files/patch-buildtools__wafsamba__wscript) ============================================================================== --- head/devel/tevent/files/patch-buildtools__wafsamba__wscript Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/devel/tevent/files/patch-buildtools_wafsamba_wscript Wed Jun 19 22:44:25 2019 (r504597) @@ -1,6 +1,6 @@ ---- buildtools/wafsamba/wscript.orig 2017-04-28 11:57:26 UTC +--- buildtools/wafsamba/wscript.orig 2019-03-21 10:12:32 UTC +++ buildtools/wafsamba/wscript -@@ -76,10 +76,10 @@ def set_options(opt): +@@ -82,10 +82,10 @@ def options(opt): opt.add_option('--with-libiconv', help='additional directory to search for libiconv', Copied and modified: head/devel/tevent/files/patch-lib_replace_wscript (from r504596, head/devel/tevent/files/patch-lib__replace__wscript) ============================================================================== --- head/devel/tevent/files/patch-lib__replace__wscript Wed Jun 19 22:42:50 2019 (r504596, copy source) +++ head/devel/tevent/files/patch-lib_replace_wscript Wed Jun 19 22:44:25 2019 (r504597) @@ -1,11 +1,11 @@ ---- lib/replace/wscript.orig 2017-07-02 20:22:14 UTC +--- lib/replace/wscript.orig 2019-03-21 10:12:32 UTC +++ lib/replace/wscript -@@ -81,7 +81,7 @@ def configure(conf): - conf.CHECK_HEADERS('sys/atomic.h') +@@ -119,7 +119,7 @@ def configure(conf): + conf.CHECK_HEADERS('sys/atomic.h stdatomic.h') conf.CHECK_HEADERS('libgen.h') - if conf.CHECK_CFLAGS('-Wno-format-truncation'): + if conf.CHECK_CFLAGS(['-Wno-format-truncation'] + conf.env.WERROR_CFLAGS): conf.define('HAVE_WNO_FORMAT_TRUNCATION', '1') - # Check for process set name support + if conf.CHECK_CFLAGS('-Wno-unused-function'): Modified: head/devel/tevent/files/patch-wscript ============================================================================== --- head/devel/tevent/files/patch-wscript Wed Jun 19 22:42:50 2019 (r504596) +++ head/devel/tevent/files/patch-wscript Wed Jun 19 22:44:25 2019 (r504597) @@ -9,12 +9,3 @@ private_library = False else: private_library = True -@@ -120,7 +120,7 @@ def build(bld): - cflags='-DPACKAGE_VERSION=\"%s\"' % VERSION) - - -- bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'tevent.py', flat=False) -+ bld.INSTALL_WILDCARD('${PYTHONARCHDIR}', 'tevent.py*', flat=False) - - # install out various python scripts for use by make test - bld.SAMBA_SCRIPT('tevent_python', From owner-svn-ports-all@freebsd.org Wed Jun 19 22:46:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 31D4715CC248; Wed, 19 Jun 2019 22:46:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CDF31865A8; Wed, 19 Jun 2019 22:46:48 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AB01D312A; Wed, 19 Jun 2019 22:46:48 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMkmn9023134; Wed, 19 Jun 2019 22:46:48 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMklqS023126; Wed, 19 Jun 2019 22:46:47 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906192246.x5JMklqS023126@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 22:46:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504598 - in branches/2019Q2/dns: bind911 bind911/files bind914 bind914/files X-SVN-Group: ports-branches X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in branches/2019Q2/dns: bind911 bind911/files bind914 bind914/files X-SVN-Commit-Revision: 504598 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CDF31865A8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:46:49 -0000 Author: mat Date: Wed Jun 19 22:46:46 2019 New Revision: 504598 URL: https://svnweb.freebsd.org/changeset/ports/504598 Log: Update to 9.11.8 and 9.14.3. Security: CVE-2019-6471 Deleted: branches/2019Q2/dns/bind914/files/patch-lib_isc_unix_socket.c Modified: branches/2019Q2/dns/bind911/Makefile branches/2019Q2/dns/bind911/distinfo branches/2019Q2/dns/bind911/files/extrapatch-bind-min-override-ttl branches/2019Q2/dns/bind911/files/patch-configure branches/2019Q2/dns/bind914/Makefile branches/2019Q2/dns/bind914/distinfo branches/2019Q2/dns/bind914/files/extrapatch-bind-min-override-ttl branches/2019Q2/dns/bind914/files/patch-configure Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/dns/bind911/Makefile ============================================================================== --- branches/2019Q2/dns/bind911/Makefile Wed Jun 19 22:44:25 2019 (r504597) +++ branches/2019Q2/dns/bind911/Makefile Wed Jun 19 22:46:46 2019 (r504598) @@ -20,7 +20,7 @@ LIB_DEPENDS= libxml2.so:textproc/libxml2 USES= cpe libedit # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.11.6-P1 +ISCVERSION= 9.11.8 CPE_VENDOR= isc CPE_VERSION= ${ISCVERSION:C/-.*//} Modified: branches/2019Q2/dns/bind911/distinfo ============================================================================== --- branches/2019Q2/dns/bind911/distinfo Wed Jun 19 22:44:25 2019 (r504597) +++ branches/2019Q2/dns/bind911/distinfo Wed Jun 19 22:46:46 2019 (r504598) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556110950 -SHA256 (bind-9.11.6-P1.tar.gz) = 58ace2abb4d048b67abcdef0649ecd6cbd3b0652734a41a1d34f942d5500f8ef -SIZE (bind-9.11.6-P1.tar.gz) = 8102241 +TIMESTAMP = 1560947427 +SHA256 (bind-9.11.8.tar.gz) = 669fcc02a9a1864d93992e526d2186ec8923511c0260b2c037fec8ea45406651 +SIZE (bind-9.11.8.tar.gz) = 8119490 Modified: branches/2019Q2/dns/bind911/files/extrapatch-bind-min-override-ttl ============================================================================== --- branches/2019Q2/dns/bind911/files/extrapatch-bind-min-override-ttl Wed Jun 19 22:44:25 2019 (r504597) +++ branches/2019Q2/dns/bind911/files/extrapatch-bind-min-override-ttl Wed Jun 19 22:46:46 2019 (r504598) @@ -1,4 +1,4 @@ ---- bin/named/config.c.orig 2019-02-27 23:28:15 UTC +--- bin/named/config.c.orig 2019-05-10 05:03:58 UTC +++ bin/named/config.c @@ -177,6 +177,8 @@ options {\n\ " max-acache-size 16M;\n\ @@ -9,7 +9,7 @@ max-clients-per-query 100;\n\ max-ncache-ttl 10800; /* 3 hours */\n\ max-recursion-depth 7;\n\ ---- bin/named/server.c.orig 2019-02-27 23:28:15 UTC +--- bin/named/server.c.orig 2019-05-10 05:03:58 UTC +++ bin/named/server.c @@ -3718,6 +3718,16 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl } @@ -28,7 +28,7 @@ result = ns_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); ---- lib/dns/include/dns/view.h.orig 2019-02-27 23:28:15 UTC +--- lib/dns/include/dns/view.h.orig 2019-05-10 05:03:58 UTC +++ lib/dns/include/dns/view.h @@ -152,6 +152,8 @@ struct dns_view { bool requestnsid; @@ -39,9 +39,9 @@ dns_ttl_t maxncachettl; uint32_t nta_lifetime; uint32_t nta_recheck; ---- lib/dns/resolver.c.orig 2019-02-27 23:28:15 UTC +--- lib/dns/resolver.c.orig 2019-05-10 05:03:58 UTC +++ lib/dns/resolver.c -@@ -5514,6 +5514,18 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb +@@ -5525,6 +5525,18 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb } /* @@ -60,7 +60,7 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) { ---- lib/isccfg/namedconf.c.orig 2019-02-27 23:28:15 UTC +--- lib/isccfg/namedconf.c.orig 2019-05-10 05:03:58 UTC +++ lib/isccfg/namedconf.c @@ -1773,6 +1773,8 @@ view_clauses[] = { #endif Modified: branches/2019Q2/dns/bind911/files/patch-configure ============================================================================== --- branches/2019Q2/dns/bind911/files/patch-configure Wed Jun 19 22:44:25 2019 (r504597) +++ branches/2019Q2/dns/bind911/files/patch-configure Wed Jun 19 22:46:46 2019 (r504598) @@ -1,6 +1,6 @@ ---- configure.orig 2019-02-27 23:28:15 UTC +--- configure.orig 2019-06-04 16:01:00 UTC +++ configure -@@ -15157,27 +15157,9 @@ done +@@ -15170,27 +15170,9 @@ done # problems start to show up. saved_libs="$LIBS" for TRY_LIBS in \ @@ -30,7 +30,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5 $as_echo_n "checking linking as $TRY_LIBS... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext -@@ -15220,47 +15202,7 @@ $as_echo "no" >&6; } ;; +@@ -15233,47 +15215,7 @@ $as_echo "no" >&6; } ;; no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;; esac @@ -79,7 +79,7 @@ DNS_GSSAPI_LIBS="$LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5 -@@ -24267,7 +24209,7 @@ $as_echo "" >&6; } +@@ -24332,7 +24274,7 @@ $as_echo "" >&6; } # Check other locations for includes. # Order is important (sigh). Modified: branches/2019Q2/dns/bind914/Makefile ============================================================================== --- branches/2019Q2/dns/bind914/Makefile Wed Jun 19 22:44:25 2019 (r504597) +++ branches/2019Q2/dns/bind914/Makefile Wed Jun 19 22:46:46 2019 (r504598) @@ -8,7 +8,7 @@ PORTVERSION= ${ISCVERSION:S/-P/P/:S/b/.b/:S/a/.a/:S/rc PORTREVISION= 0 .else # dns/bind913 here -PORTREVISION= 2 +PORTREVISION= 0 .endif CATEGORIES= dns net ipv6 MASTER_SITES= ISC/bind9/${ISCVERSION} @@ -33,7 +33,7 @@ LIB_DEPENDS= libxml2.so:textproc/libxml2 USES= compiler:c11 cpe libedit ssl # ISC releases things like 9.8.0-P1, which our versioning doesn't like -ISCVERSION= 9.14.1 +ISCVERSION= 9.14.3 CPE_VENDOR= isc CPE_VERSION= ${ISCVERSION:C/-.*//} Modified: branches/2019Q2/dns/bind914/distinfo ============================================================================== --- branches/2019Q2/dns/bind914/distinfo Wed Jun 19 22:44:25 2019 (r504597) +++ branches/2019Q2/dns/bind914/distinfo Wed Jun 19 22:46:46 2019 (r504598) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556117981 -SHA256 (bind-9.14.1.tar.gz) = c3c7485d900a03271a9918a071c123e8951871a219f4c1c4383e37717f11db48 -SIZE (bind-9.14.1.tar.gz) = 6235968 +TIMESTAMP = 1560947468 +SHA256 (bind-9.14.3.tar.gz) = ce878aabcf01b61ed114522c32fff9e268b02da55b3c248349860bc3d0c8bdfa +SIZE (bind-9.14.3.tar.gz) = 6258311 Modified: branches/2019Q2/dns/bind914/files/extrapatch-bind-min-override-ttl ============================================================================== --- branches/2019Q2/dns/bind914/files/extrapatch-bind-min-override-ttl Wed Jun 19 22:44:25 2019 (r504597) +++ branches/2019Q2/dns/bind914/files/extrapatch-bind-min-override-ttl Wed Jun 19 22:46:46 2019 (r504598) @@ -1,4 +1,4 @@ ---- bin/named/config.c.orig 2019-04-06 20:09:59 UTC +--- bin/named/config.c.orig 2019-05-10 04:51:34 UTC +++ bin/named/config.c @@ -179,6 +179,7 @@ options {\n\ notify-source *;\n\ @@ -8,9 +8,9 @@ provide-ixfr true;\n\ qname-minimization relaxed;\n\ query-source address *;\n\ ---- bin/named/server.c.orig 2019-04-06 20:09:59 UTC +--- bin/named/server.c.orig 2019-05-10 04:51:34 UTC +++ bin/named/server.c -@@ -4178,6 +4178,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl +@@ -4245,6 +4245,11 @@ configure_view(dns_view_t *view, dns_viewlist_t *viewl } obj = NULL; @@ -22,7 +22,7 @@ result = named_config_get(maps, "max-cache-ttl", &obj); INSIST(result == ISC_R_SUCCESS); view->maxcachettl = cfg_obj_asuint32(obj); ---- lib/dns/include/dns/view.h.orig 2019-04-06 20:09:59 UTC +--- lib/dns/include/dns/view.h.orig 2019-05-10 04:51:34 UTC +++ lib/dns/include/dns/view.h @@ -153,6 +153,7 @@ struct dns_view { bool requestnsid; @@ -32,9 +32,9 @@ dns_ttl_t maxncachettl; dns_ttl_t mincachettl; dns_ttl_t minncachettl; ---- lib/dns/resolver.c.orig 2019-04-06 20:09:59 UTC +--- lib/dns/resolver.c.orig 2019-05-10 04:51:34 UTC +++ lib/dns/resolver.c -@@ -6013,6 +6013,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb +@@ -6026,6 +6026,12 @@ cache_name(fetchctx_t *fctx, dns_name_t *name, dns_adb } /* @@ -47,7 +47,7 @@ * Enforce the configure maximum cache TTL. */ if (rdataset->ttl > res->view->maxcachettl) { ---- lib/isccfg/namedconf.c.orig 2019-04-06 20:09:59 UTC +--- lib/isccfg/namedconf.c.orig 2019-05-10 04:51:34 UTC +++ lib/isccfg/namedconf.c @@ -1901,6 +1901,7 @@ view_clauses[] = { #endif Modified: branches/2019Q2/dns/bind914/files/patch-configure ============================================================================== --- branches/2019Q2/dns/bind914/files/patch-configure Wed Jun 19 22:44:25 2019 (r504597) +++ branches/2019Q2/dns/bind914/files/patch-configure Wed Jun 19 22:46:46 2019 (r504598) @@ -1,6 +1,6 @@ ---- configure.orig 2019-04-06 20:09:59 UTC +--- configure.orig 2019-06-04 15:20:04 UTC +++ configure -@@ -16317,27 +16317,9 @@ done +@@ -16347,27 +16347,9 @@ done # problems start to show up. saved_libs="$LIBS" for TRY_LIBS in \ @@ -30,7 +30,7 @@ { $as_echo "$as_me:${as_lineno-$LINENO}: checking linking as $TRY_LIBS" >&5 $as_echo_n "checking linking as $TRY_LIBS... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext -@@ -16380,47 +16362,7 @@ $as_echo "no" >&6; } ;; +@@ -16410,47 +16392,7 @@ $as_echo "no" >&6; } ;; no) as_fn_error $? "could not determine proper GSSAPI linkage" "$LINENO" 5 ;; esac @@ -79,7 +79,7 @@ DNS_GSSAPI_LIBS="$LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: result: using GSSAPI from $use_gssapi/lib and $use_gssapi/include" >&5 -@@ -20924,7 +20866,7 @@ $as_echo "" >&6; } +@@ -20960,7 +20902,7 @@ $as_echo "" >&6; } # Check other locations for includes. # Order is important (sigh). From owner-svn-ports-all@freebsd.org Wed Jun 19 22:58:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 885C915CC5BF; Wed, 19 Jun 2019 22:58:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 22A2386A52; Wed, 19 Jun 2019 22:58:49 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E52DB32CA; Wed, 19 Jun 2019 22:58:48 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JMwmWT028287; Wed, 19 Jun 2019 22:58:48 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JMwmDM028286; Wed, 19 Jun 2019 22:58:48 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906192258.x5JMwmDM028286@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Wed, 19 Jun 2019 22:58:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504599 - branches/2019Q2/dns/bind911 X-SVN-Group: ports-branches X-SVN-Commit-Author: mat X-SVN-Commit-Paths: branches/2019Q2/dns/bind911 X-SVN-Commit-Revision: 504599 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 22A2386A52 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 22:58:49 -0000 Author: mat Date: Wed Jun 19 22:58:48 2019 New Revision: 504599 URL: https://svnweb.freebsd.org/changeset/ports/504599 Log: MFH: r503380 Fix build with DNSTAP enabled. PR: 238036 Reported by: Artyom Davidov Pointy hat: mat, forgotten in the previous commit. Modified: branches/2019Q2/dns/bind911/pkg-plist Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/dns/bind911/pkg-plist ============================================================================== --- branches/2019Q2/dns/bind911/pkg-plist Wed Jun 19 22:46:46 2019 (r504598) +++ branches/2019Q2/dns/bind911/pkg-plist Wed Jun 19 22:58:48 2019 (r504599) @@ -44,7 +44,6 @@ include/dns/dlz_dlopen.h include/dns/dns64.h include/dns/dnssec.h include/dns/dnstap.h -%%DNSTAP%%include/dns/dnstap.pb-c.h include/dns/ds.h include/dns/dsdigest.h include/dns/dyndb.h From owner-svn-ports-all@freebsd.org Wed Jun 19 23:09:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 247B015CC97C; Wed, 19 Jun 2019 23:09:24 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C584986FAD; Wed, 19 Jun 2019 23:09:23 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B0460346D; Wed, 19 Jun 2019 23:09:23 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JN9Nec033869; Wed, 19 Jun 2019 23:09:23 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JN9NBj033867; Wed, 19 Jun 2019 23:09:23 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201906192309.x5JN9NBj033867@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Wed, 19 Jun 2019 23:09:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504600 - head/x11/mate-applets X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/x11/mate-applets X-SVN-Commit-Revision: 504600 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C584986FAD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.956,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 23:09:24 -0000 Author: pkubaj Date: Wed Jun 19 23:09:23 2019 New Revision: 504600 URL: https://svnweb.freebsd.org/changeset/ports/504600 Log: x11/mate-applets: fix build on non-x86 pkg-plist entries for non-x86 were removed in the last upgrade. While here, also add USES=gnome mate. PR: 238323 Approved by: gnome (maintainer timeout), mat (mentor) Differential Revision: https://reviews.freebsd.org/D20699 Modified: head/x11/mate-applets/Makefile head/x11/mate-applets/pkg-plist Modified: head/x11/mate-applets/Makefile ============================================================================== --- head/x11/mate-applets/Makefile Wed Jun 19 22:58:48 2019 (r504599) +++ head/x11/mate-applets/Makefile Wed Jun 19 23:09:23 2019 (r504600) @@ -24,8 +24,8 @@ LIB_DEPENDS= libgtop-2.0.so:devel/libgtop \ PORTSCOUT= limitw:1,even -USES= compiler:c11 gettext gmake libtool localbase pkgconfig \ - python:2.7 tar:xz +USES= compiler:c11 gettext gmake gnome libtool localbase mate \ + pkgconfig python:2.7 tar:xz USE_CSTD= c11 USE_MATE= libmateweather panel Modified: head/x11/mate-applets/pkg-plist ============================================================================== --- head/x11/mate-applets/pkg-plist Wed Jun 19 22:58:48 2019 (r504599) +++ head/x11/mate-applets/pkg-plist Wed Jun 19 23:09:23 2019 (r504600) @@ -1,6 +1,6 @@ -etc/sound/events/mate-battstat_applet.soundlist +%%BATTERY%%etc/sound/events/mate-battstat_applet.soundlist libexec/accessx-status-applet -libexec/battstat-applet +%%BATTERY%%libexec/battstat-applet libexec/command-applet libexec/mate-charpick-applet libexec/mate-drivemount-applet @@ -18,7 +18,7 @@ man/man1/mate-geyes-applet.1.gz man/man1/mate-multiload-applet.1.gz man/man1/mateweather.1.gz share/dbus-1/services/org.mate.panel.applet.AccessxStatusAppletFactory.service -share/dbus-1/services/org.mate.panel.applet.BattstatAppletFactory.service +%%BATTERY%%share/dbus-1/services/org.mate.panel.applet.BattstatAppletFactory.service share/dbus-1/services/org.mate.panel.applet.CharpickerAppletFactory.service share/dbus-1/services/org.mate.panel.applet.CommandAppletFactory.service share/dbus-1/services/org.mate.panel.applet.DriveMountAppletFactory.service @@ -41,13 +41,13 @@ share/help/C/mate-accessx-status/figures/accessx_stick share/help/C/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/C/mate-accessx-status/index.docbook share/help/C/mate-accessx-status/legal.xml -share/help/C/mate-battstat/figures/battstat-applet-expanded.png -share/help/C/mate-battstat/figures/battstat-applet.png -share/help/C/mate-battstat/figures/battstat-credits-hal.png -share/help/C/mate-battstat/figures/battstat-preferences.png -share/help/C/mate-battstat/figures/context-menu.png -share/help/C/mate-battstat/index.docbook -share/help/C/mate-battstat/legal.xml +%%BATTERY%%share/help/C/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/C/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/C/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/C/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/C/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/C/mate-battstat/index.docbook +%%BATTERY%%share/help/C/mate-battstat/legal.xml share/help/C/mate-char-palette/figures/charpalette_applet.png share/help/C/mate-char-palette/figures/charpick-preferences.png share/help/C/mate-char-palette/figures/charpick_characters.png @@ -116,13 +116,13 @@ share/help/af/mate-accessx-status/figures/accessx_stic share/help/af/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/af/mate-accessx-status/index.docbook share/help/af/mate-accessx-status/legal.xml -share/help/af/mate-battstat/figures/battstat-applet-expanded.png -share/help/af/mate-battstat/figures/battstat-applet.png -share/help/af/mate-battstat/figures/battstat-credits-hal.png -share/help/af/mate-battstat/figures/battstat-preferences.png -share/help/af/mate-battstat/figures/context-menu.png -share/help/af/mate-battstat/index.docbook -share/help/af/mate-battstat/legal.xml +%%BATTERY%%share/help/af/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/af/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/af/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/af/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/af/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/af/mate-battstat/index.docbook +%%BATTERY%%share/help/af/mate-battstat/legal.xml share/help/af/mate-char-palette/figures/charpalette_applet.png share/help/af/mate-char-palette/figures/charpick-preferences.png share/help/af/mate-char-palette/figures/charpick_characters.png @@ -191,13 +191,13 @@ share/help/am/mate-accessx-status/figures/accessx_stic share/help/am/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/am/mate-accessx-status/index.docbook share/help/am/mate-accessx-status/legal.xml -share/help/am/mate-battstat/figures/battstat-applet-expanded.png -share/help/am/mate-battstat/figures/battstat-applet.png -share/help/am/mate-battstat/figures/battstat-credits-hal.png -share/help/am/mate-battstat/figures/battstat-preferences.png -share/help/am/mate-battstat/figures/context-menu.png -share/help/am/mate-battstat/index.docbook -share/help/am/mate-battstat/legal.xml +%%BATTERY%%share/help/am/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/am/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/am/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/am/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/am/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/am/mate-battstat/index.docbook +%%BATTERY%%share/help/am/mate-battstat/legal.xml share/help/am/mate-char-palette/figures/charpalette_applet.png share/help/am/mate-char-palette/figures/charpick-preferences.png share/help/am/mate-char-palette/figures/charpick_characters.png @@ -254,13 +254,13 @@ share/help/am/mateweather/figures/stock_weather-storm. share/help/am/mateweather/figures/stock_weather-sunny.png share/help/am/mateweather/index.docbook share/help/am/mateweather/legal.xml -share/help/an/mate-battstat/figures/battstat-applet-expanded.png -share/help/an/mate-battstat/figures/battstat-applet.png -share/help/an/mate-battstat/figures/battstat-credits-hal.png -share/help/an/mate-battstat/figures/battstat-preferences.png -share/help/an/mate-battstat/figures/context-menu.png -share/help/an/mate-battstat/index.docbook -share/help/an/mate-battstat/legal.xml +%%BATTERY%%share/help/an/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/an/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/an/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/an/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/an/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/an/mate-battstat/index.docbook +%%BATTERY%%share/help/an/mate-battstat/legal.xml share/help/an/mate-geyes/figures/geyes_applet.png share/help/an/mate-geyes/index.docbook share/help/an/mate-geyes/legal.xml @@ -286,13 +286,13 @@ share/help/ar/mate-accessx-status/figures/accessx_stic share/help/ar/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ar/mate-accessx-status/index.docbook share/help/ar/mate-accessx-status/legal.xml -share/help/ar/mate-battstat/figures/battstat-applet-expanded.png -share/help/ar/mate-battstat/figures/battstat-applet.png -share/help/ar/mate-battstat/figures/battstat-credits-hal.png -share/help/ar/mate-battstat/figures/battstat-preferences.png -share/help/ar/mate-battstat/figures/context-menu.png -share/help/ar/mate-battstat/index.docbook -share/help/ar/mate-battstat/legal.xml +%%BATTERY%%share/help/ar/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/ar/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/ar/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/ar/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/ar/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/ar/mate-battstat/index.docbook +%%BATTERY%%share/help/ar/mate-battstat/legal.xml share/help/ar/mate-char-palette/figures/charpalette_applet.png share/help/ar/mate-char-palette/figures/charpick-preferences.png share/help/ar/mate-char-palette/figures/charpick_characters.png @@ -361,13 +361,13 @@ share/help/as/mate-accessx-status/figures/accessx_stic share/help/as/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/as/mate-accessx-status/index.docbook share/help/as/mate-accessx-status/legal.xml -share/help/as/mate-battstat/figures/battstat-applet-expanded.png -share/help/as/mate-battstat/figures/battstat-applet.png -share/help/as/mate-battstat/figures/battstat-credits-hal.png -share/help/as/mate-battstat/figures/battstat-preferences.png -share/help/as/mate-battstat/figures/context-menu.png -share/help/as/mate-battstat/index.docbook -share/help/as/mate-battstat/legal.xml +%%BATTERY%%share/help/as/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/as/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/as/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/as/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/as/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/as/mate-battstat/index.docbook +%%BATTERY%%share/help/as/mate-battstat/legal.xml share/help/as/mate-char-palette/figures/charpalette_applet.png share/help/as/mate-char-palette/figures/charpick-preferences.png share/help/as/mate-char-palette/figures/charpick_characters.png @@ -436,13 +436,13 @@ share/help/ast/mate-accessx-status/figures/accessx_sti share/help/ast/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ast/mate-accessx-status/index.docbook share/help/ast/mate-accessx-status/legal.xml -share/help/ast/mate-battstat/figures/battstat-applet-expanded.png -share/help/ast/mate-battstat/figures/battstat-applet.png -share/help/ast/mate-battstat/figures/battstat-credits-hal.png -share/help/ast/mate-battstat/figures/battstat-preferences.png -share/help/ast/mate-battstat/figures/context-menu.png -share/help/ast/mate-battstat/index.docbook -share/help/ast/mate-battstat/legal.xml +%%BATTERY%%share/help/ast/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/ast/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/ast/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/ast/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/ast/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/ast/mate-battstat/index.docbook +%%BATTERY%%share/help/ast/mate-battstat/legal.xml share/help/ast/mate-char-palette/figures/charpalette_applet.png share/help/ast/mate-char-palette/figures/charpick-preferences.png share/help/ast/mate-char-palette/figures/charpick_characters.png @@ -511,13 +511,13 @@ share/help/az/mate-accessx-status/figures/accessx_stic share/help/az/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/az/mate-accessx-status/index.docbook share/help/az/mate-accessx-status/legal.xml -share/help/az/mate-battstat/figures/battstat-applet-expanded.png -share/help/az/mate-battstat/figures/battstat-applet.png -share/help/az/mate-battstat/figures/battstat-credits-hal.png -share/help/az/mate-battstat/figures/battstat-preferences.png -share/help/az/mate-battstat/figures/context-menu.png -share/help/az/mate-battstat/index.docbook -share/help/az/mate-battstat/legal.xml +%%BATTERY%%share/help/az/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/az/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/az/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/az/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/az/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/az/mate-battstat/index.docbook +%%BATTERY%%share/help/az/mate-battstat/legal.xml share/help/az/mate-char-palette/figures/charpalette_applet.png share/help/az/mate-char-palette/figures/charpick-preferences.png share/help/az/mate-char-palette/figures/charpick_characters.png @@ -586,13 +586,13 @@ share/help/be/mate-accessx-status/figures/accessx_stic share/help/be/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/be/mate-accessx-status/index.docbook share/help/be/mate-accessx-status/legal.xml -share/help/be/mate-battstat/figures/battstat-applet-expanded.png -share/help/be/mate-battstat/figures/battstat-applet.png -share/help/be/mate-battstat/figures/battstat-credits-hal.png -share/help/be/mate-battstat/figures/battstat-preferences.png -share/help/be/mate-battstat/figures/context-menu.png -share/help/be/mate-battstat/index.docbook -share/help/be/mate-battstat/legal.xml +%%BATTERY%%share/help/be/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/be/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/be/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/be/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/be/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/be/mate-battstat/index.docbook +%%BATTERY%%share/help/be/mate-battstat/legal.xml share/help/be/mate-char-palette/figures/charpalette_applet.png share/help/be/mate-char-palette/figures/charpick-preferences.png share/help/be/mate-char-palette/figures/charpick_characters.png @@ -661,13 +661,13 @@ share/help/bg/mate-accessx-status/figures/accessx_stic share/help/bg/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/bg/mate-accessx-status/index.docbook share/help/bg/mate-accessx-status/legal.xml -share/help/bg/mate-battstat/figures/battstat-applet-expanded.png -share/help/bg/mate-battstat/figures/battstat-applet.png -share/help/bg/mate-battstat/figures/battstat-credits-hal.png -share/help/bg/mate-battstat/figures/battstat-preferences.png -share/help/bg/mate-battstat/figures/context-menu.png -share/help/bg/mate-battstat/index.docbook -share/help/bg/mate-battstat/legal.xml +%%BATTERY%%share/help/bg/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/bg/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/bg/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/bg/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/bg/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/bg/mate-battstat/index.docbook +%%BATTERY%%share/help/bg/mate-battstat/legal.xml share/help/bg/mate-char-palette/figures/charpalette_applet.png share/help/bg/mate-char-palette/figures/charpick-preferences.png share/help/bg/mate-char-palette/figures/charpick_characters.png @@ -736,13 +736,13 @@ share/help/bn/mate-accessx-status/figures/accessx_stic share/help/bn/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/bn/mate-accessx-status/index.docbook share/help/bn/mate-accessx-status/legal.xml -share/help/bn/mate-battstat/figures/battstat-applet-expanded.png -share/help/bn/mate-battstat/figures/battstat-applet.png -share/help/bn/mate-battstat/figures/battstat-credits-hal.png -share/help/bn/mate-battstat/figures/battstat-preferences.png -share/help/bn/mate-battstat/figures/context-menu.png -share/help/bn/mate-battstat/index.docbook -share/help/bn/mate-battstat/legal.xml +%%BATTERY%%share/help/bn/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/bn/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/bn/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/bn/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/bn/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/bn/mate-battstat/index.docbook +%%BATTERY%%share/help/bn/mate-battstat/legal.xml share/help/bn/mate-char-palette/figures/charpalette_applet.png share/help/bn/mate-char-palette/figures/charpick-preferences.png share/help/bn/mate-char-palette/figures/charpick_characters.png @@ -811,13 +811,13 @@ share/help/bn_IN/mate-accessx-status/figures/accessx_s share/help/bn_IN/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/bn_IN/mate-accessx-status/index.docbook share/help/bn_IN/mate-accessx-status/legal.xml -share/help/bn_IN/mate-battstat/figures/battstat-applet-expanded.png -share/help/bn_IN/mate-battstat/figures/battstat-applet.png -share/help/bn_IN/mate-battstat/figures/battstat-credits-hal.png -share/help/bn_IN/mate-battstat/figures/battstat-preferences.png -share/help/bn_IN/mate-battstat/figures/context-menu.png -share/help/bn_IN/mate-battstat/index.docbook -share/help/bn_IN/mate-battstat/legal.xml +%%BATTERY%%share/help/bn_IN/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/bn_IN/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/bn_IN/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/bn_IN/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/bn_IN/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/bn_IN/mate-battstat/index.docbook +%%BATTERY%%share/help/bn_IN/mate-battstat/legal.xml share/help/bn_IN/mate-char-palette/figures/charpalette_applet.png share/help/bn_IN/mate-char-palette/figures/charpick-preferences.png share/help/bn_IN/mate-char-palette/figures/charpick_characters.png @@ -886,13 +886,13 @@ share/help/br/mate-accessx-status/figures/accessx_stic share/help/br/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/br/mate-accessx-status/index.docbook share/help/br/mate-accessx-status/legal.xml -share/help/br/mate-battstat/figures/battstat-applet-expanded.png -share/help/br/mate-battstat/figures/battstat-applet.png -share/help/br/mate-battstat/figures/battstat-credits-hal.png -share/help/br/mate-battstat/figures/battstat-preferences.png -share/help/br/mate-battstat/figures/context-menu.png -share/help/br/mate-battstat/index.docbook -share/help/br/mate-battstat/legal.xml +%%BATTERY%%share/help/br/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/br/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/br/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/br/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/br/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/br/mate-battstat/index.docbook +%%BATTERY%%share/help/br/mate-battstat/legal.xml share/help/br/mate-char-palette/figures/charpalette_applet.png share/help/br/mate-char-palette/figures/charpick-preferences.png share/help/br/mate-char-palette/figures/charpick_characters.png @@ -961,13 +961,13 @@ share/help/bs/mate-accessx-status/figures/accessx_stic share/help/bs/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/bs/mate-accessx-status/index.docbook share/help/bs/mate-accessx-status/legal.xml -share/help/bs/mate-battstat/figures/battstat-applet-expanded.png -share/help/bs/mate-battstat/figures/battstat-applet.png -share/help/bs/mate-battstat/figures/battstat-credits-hal.png -share/help/bs/mate-battstat/figures/battstat-preferences.png -share/help/bs/mate-battstat/figures/context-menu.png -share/help/bs/mate-battstat/index.docbook -share/help/bs/mate-battstat/legal.xml +%%BATTERY%%share/help/bs/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/bs/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/bs/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/bs/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/bs/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/bs/mate-battstat/index.docbook +%%BATTERY%%share/help/bs/mate-battstat/legal.xml share/help/bs/mate-char-palette/figures/charpalette_applet.png share/help/bs/mate-char-palette/figures/charpick-preferences.png share/help/bs/mate-char-palette/figures/charpick_characters.png @@ -1036,13 +1036,13 @@ share/help/ca/mate-accessx-status/figures/accessx_stic share/help/ca/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ca/mate-accessx-status/index.docbook share/help/ca/mate-accessx-status/legal.xml -share/help/ca/mate-battstat/figures/battstat-applet-expanded.png -share/help/ca/mate-battstat/figures/battstat-applet.png -share/help/ca/mate-battstat/figures/battstat-credits-hal.png -share/help/ca/mate-battstat/figures/battstat-preferences.png -share/help/ca/mate-battstat/figures/context-menu.png -share/help/ca/mate-battstat/index.docbook -share/help/ca/mate-battstat/legal.xml +%%BATTERY%%share/help/ca/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/ca/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/ca/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/ca/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/ca/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/ca/mate-battstat/index.docbook +%%BATTERY%%share/help/ca/mate-battstat/legal.xml share/help/ca/mate-char-palette/figures/charpalette_applet.png share/help/ca/mate-char-palette/figures/charpick-preferences.png share/help/ca/mate-char-palette/figures/charpick_characters.png @@ -1111,13 +1111,13 @@ share/help/ca@valencia/mate-accessx-status/figures/acc share/help/ca@valencia/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ca@valencia/mate-accessx-status/index.docbook share/help/ca@valencia/mate-accessx-status/legal.xml -share/help/ca@valencia/mate-battstat/figures/battstat-applet-expanded.png -share/help/ca@valencia/mate-battstat/figures/battstat-applet.png -share/help/ca@valencia/mate-battstat/figures/battstat-credits-hal.png -share/help/ca@valencia/mate-battstat/figures/battstat-preferences.png -share/help/ca@valencia/mate-battstat/figures/context-menu.png -share/help/ca@valencia/mate-battstat/index.docbook -share/help/ca@valencia/mate-battstat/legal.xml +%%BATTERY%%share/help/ca@valencia/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/ca@valencia/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/ca@valencia/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/ca@valencia/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/ca@valencia/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/ca@valencia/mate-battstat/index.docbook +%%BATTERY%%share/help/ca@valencia/mate-battstat/legal.xml share/help/ca@valencia/mate-char-palette/figures/charpalette_applet.png share/help/ca@valencia/mate-char-palette/figures/charpick-preferences.png share/help/ca@valencia/mate-char-palette/figures/charpick_characters.png @@ -1186,13 +1186,13 @@ share/help/cmn/mate-accessx-status/figures/accessx_sti share/help/cmn/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/cmn/mate-accessx-status/index.docbook share/help/cmn/mate-accessx-status/legal.xml -share/help/cmn/mate-battstat/figures/battstat-applet-expanded.png -share/help/cmn/mate-battstat/figures/battstat-applet.png -share/help/cmn/mate-battstat/figures/battstat-credits-hal.png -share/help/cmn/mate-battstat/figures/battstat-preferences.png -share/help/cmn/mate-battstat/figures/context-menu.png -share/help/cmn/mate-battstat/index.docbook -share/help/cmn/mate-battstat/legal.xml +%%BATTERY%%share/help/cmn/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/cmn/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/cmn/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/cmn/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/cmn/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/cmn/mate-battstat/index.docbook +%%BATTERY%%share/help/cmn/mate-battstat/legal.xml share/help/cmn/mate-char-palette/figures/charpalette_applet.png share/help/cmn/mate-char-palette/figures/charpick-preferences.png share/help/cmn/mate-char-palette/figures/charpick_characters.png @@ -1261,13 +1261,13 @@ share/help/crh/mate-accessx-status/figures/accessx_sti share/help/crh/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/crh/mate-accessx-status/index.docbook share/help/crh/mate-accessx-status/legal.xml -share/help/crh/mate-battstat/figures/battstat-applet-expanded.png -share/help/crh/mate-battstat/figures/battstat-applet.png -share/help/crh/mate-battstat/figures/battstat-credits-hal.png -share/help/crh/mate-battstat/figures/battstat-preferences.png -share/help/crh/mate-battstat/figures/context-menu.png -share/help/crh/mate-battstat/index.docbook -share/help/crh/mate-battstat/legal.xml +%%BATTERY%%share/help/crh/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/crh/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/crh/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/crh/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/crh/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/crh/mate-battstat/index.docbook +%%BATTERY%%share/help/crh/mate-battstat/legal.xml share/help/crh/mate-char-palette/figures/charpalette_applet.png share/help/crh/mate-char-palette/figures/charpick-preferences.png share/help/crh/mate-char-palette/figures/charpick_characters.png @@ -1336,13 +1336,13 @@ share/help/cs/mate-accessx-status/figures/accessx_stic share/help/cs/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/cs/mate-accessx-status/index.docbook share/help/cs/mate-accessx-status/legal.xml -share/help/cs/mate-battstat/figures/battstat-applet-expanded.png -share/help/cs/mate-battstat/figures/battstat-applet.png -share/help/cs/mate-battstat/figures/battstat-credits-hal.png -share/help/cs/mate-battstat/figures/battstat-preferences.png -share/help/cs/mate-battstat/figures/context-menu.png -share/help/cs/mate-battstat/index.docbook -share/help/cs/mate-battstat/legal.xml +%%BATTERY%%share/help/cs/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/cs/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/cs/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/cs/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/cs/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/cs/mate-battstat/index.docbook +%%BATTERY%%share/help/cs/mate-battstat/legal.xml share/help/cs/mate-char-palette/figures/charpalette_applet.png share/help/cs/mate-char-palette/figures/charpick-preferences.png share/help/cs/mate-char-palette/figures/charpick_characters.png @@ -1417,13 +1417,13 @@ share/help/cy/mate-accessx-status/figures/accessx_stic share/help/cy/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/cy/mate-accessx-status/index.docbook share/help/cy/mate-accessx-status/legal.xml -share/help/cy/mate-battstat/figures/battstat-applet-expanded.png -share/help/cy/mate-battstat/figures/battstat-applet.png -share/help/cy/mate-battstat/figures/battstat-credits-hal.png -share/help/cy/mate-battstat/figures/battstat-preferences.png -share/help/cy/mate-battstat/figures/context-menu.png -share/help/cy/mate-battstat/index.docbook -share/help/cy/mate-battstat/legal.xml +%%BATTERY%%share/help/cy/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/cy/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/cy/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/cy/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/cy/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/cy/mate-battstat/index.docbook +%%BATTERY%%share/help/cy/mate-battstat/legal.xml share/help/cy/mate-char-palette/figures/charpalette_applet.png share/help/cy/mate-char-palette/figures/charpick-preferences.png share/help/cy/mate-char-palette/figures/charpick_characters.png @@ -1492,13 +1492,13 @@ share/help/da/mate-accessx-status/figures/accessx_stic share/help/da/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/da/mate-accessx-status/index.docbook share/help/da/mate-accessx-status/legal.xml -share/help/da/mate-battstat/figures/battstat-applet-expanded.png -share/help/da/mate-battstat/figures/battstat-applet.png -share/help/da/mate-battstat/figures/battstat-credits-hal.png -share/help/da/mate-battstat/figures/battstat-preferences.png -share/help/da/mate-battstat/figures/context-menu.png -share/help/da/mate-battstat/index.docbook -share/help/da/mate-battstat/legal.xml +%%BATTERY%%share/help/da/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/da/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/da/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/da/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/da/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/da/mate-battstat/index.docbook +%%BATTERY%%share/help/da/mate-battstat/legal.xml share/help/da/mate-char-palette/figures/charpalette_applet.png share/help/da/mate-char-palette/figures/charpick-preferences.png share/help/da/mate-char-palette/figures/charpick_characters.png @@ -1567,13 +1567,13 @@ share/help/de/mate-accessx-status/figures/accessx_stic share/help/de/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/de/mate-accessx-status/index.docbook share/help/de/mate-accessx-status/legal.xml -share/help/de/mate-battstat/figures/battstat-applet-expanded.png -share/help/de/mate-battstat/figures/battstat-applet.png -share/help/de/mate-battstat/figures/battstat-credits-hal.png -share/help/de/mate-battstat/figures/battstat-preferences.png -share/help/de/mate-battstat/figures/context-menu.png -share/help/de/mate-battstat/index.docbook -share/help/de/mate-battstat/legal.xml +%%BATTERY%%share/help/de/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/de/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/de/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/de/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/de/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/de/mate-battstat/index.docbook +%%BATTERY%%share/help/de/mate-battstat/legal.xml share/help/de/mate-char-palette/figures/charpalette_applet.png share/help/de/mate-char-palette/figures/charpick-preferences.png share/help/de/mate-char-palette/figures/charpick_characters.png @@ -1642,13 +1642,13 @@ share/help/dz/mate-accessx-status/figures/accessx_stic share/help/dz/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/dz/mate-accessx-status/index.docbook share/help/dz/mate-accessx-status/legal.xml -share/help/dz/mate-battstat/figures/battstat-applet-expanded.png -share/help/dz/mate-battstat/figures/battstat-applet.png -share/help/dz/mate-battstat/figures/battstat-credits-hal.png -share/help/dz/mate-battstat/figures/battstat-preferences.png -share/help/dz/mate-battstat/figures/context-menu.png -share/help/dz/mate-battstat/index.docbook -share/help/dz/mate-battstat/legal.xml +%%BATTERY%%share/help/dz/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/dz/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/dz/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/dz/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/dz/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/dz/mate-battstat/index.docbook +%%BATTERY%%share/help/dz/mate-battstat/legal.xml share/help/dz/mate-char-palette/figures/charpalette_applet.png share/help/dz/mate-char-palette/figures/charpick-preferences.png share/help/dz/mate-char-palette/figures/charpick_characters.png @@ -1717,13 +1717,13 @@ share/help/el/mate-accessx-status/figures/accessx_stic share/help/el/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/el/mate-accessx-status/index.docbook share/help/el/mate-accessx-status/legal.xml -share/help/el/mate-battstat/figures/battstat-applet-expanded.png -share/help/el/mate-battstat/figures/battstat-applet.png -share/help/el/mate-battstat/figures/battstat-credits-hal.png -share/help/el/mate-battstat/figures/battstat-preferences.png -share/help/el/mate-battstat/figures/context-menu.png -share/help/el/mate-battstat/index.docbook -share/help/el/mate-battstat/legal.xml +%%BATTERY%%share/help/el/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/el/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/el/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/el/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/el/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/el/mate-battstat/index.docbook +%%BATTERY%%share/help/el/mate-battstat/legal.xml share/help/el/mate-char-palette/figures/charpalette_applet.png share/help/el/mate-char-palette/figures/charpick-preferences.png share/help/el/mate-char-palette/figures/charpick_characters.png @@ -1792,13 +1792,13 @@ share/help/en_AU/mate-accessx-status/figures/accessx_s share/help/en_AU/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/en_AU/mate-accessx-status/index.docbook share/help/en_AU/mate-accessx-status/legal.xml -share/help/en_AU/mate-battstat/figures/battstat-applet-expanded.png -share/help/en_AU/mate-battstat/figures/battstat-applet.png -share/help/en_AU/mate-battstat/figures/battstat-credits-hal.png -share/help/en_AU/mate-battstat/figures/battstat-preferences.png -share/help/en_AU/mate-battstat/figures/context-menu.png -share/help/en_AU/mate-battstat/index.docbook -share/help/en_AU/mate-battstat/legal.xml +%%BATTERY%%share/help/en_AU/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/en_AU/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/en_AU/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/en_AU/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/en_AU/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/en_AU/mate-battstat/index.docbook +%%BATTERY%%share/help/en_AU/mate-battstat/legal.xml share/help/en_AU/mate-char-palette/figures/charpalette_applet.png share/help/en_AU/mate-char-palette/figures/charpick-preferences.png share/help/en_AU/mate-char-palette/figures/charpick_characters.png @@ -1867,13 +1867,13 @@ share/help/en_CA/mate-accessx-status/figures/accessx_s share/help/en_CA/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/en_CA/mate-accessx-status/index.docbook share/help/en_CA/mate-accessx-status/legal.xml -share/help/en_CA/mate-battstat/figures/battstat-applet-expanded.png -share/help/en_CA/mate-battstat/figures/battstat-applet.png -share/help/en_CA/mate-battstat/figures/battstat-credits-hal.png -share/help/en_CA/mate-battstat/figures/battstat-preferences.png -share/help/en_CA/mate-battstat/figures/context-menu.png -share/help/en_CA/mate-battstat/index.docbook -share/help/en_CA/mate-battstat/legal.xml +%%BATTERY%%share/help/en_CA/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/en_CA/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/en_CA/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/en_CA/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/en_CA/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/en_CA/mate-battstat/index.docbook +%%BATTERY%%share/help/en_CA/mate-battstat/legal.xml share/help/en_CA/mate-char-palette/figures/charpalette_applet.png share/help/en_CA/mate-char-palette/figures/charpick-preferences.png share/help/en_CA/mate-char-palette/figures/charpick_characters.png @@ -1942,13 +1942,13 @@ share/help/en_GB/mate-accessx-status/figures/accessx_s share/help/en_GB/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/en_GB/mate-accessx-status/index.docbook share/help/en_GB/mate-accessx-status/legal.xml -share/help/en_GB/mate-battstat/figures/battstat-applet-expanded.png -share/help/en_GB/mate-battstat/figures/battstat-applet.png -share/help/en_GB/mate-battstat/figures/battstat-credits-hal.png -share/help/en_GB/mate-battstat/figures/battstat-preferences.png -share/help/en_GB/mate-battstat/figures/context-menu.png -share/help/en_GB/mate-battstat/index.docbook -share/help/en_GB/mate-battstat/legal.xml +%%BATTERY%%share/help/en_GB/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/en_GB/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/en_GB/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/en_GB/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/en_GB/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/en_GB/mate-battstat/index.docbook +%%BATTERY%%share/help/en_GB/mate-battstat/legal.xml share/help/en_GB/mate-char-palette/figures/charpalette_applet.png share/help/en_GB/mate-char-palette/figures/charpick-preferences.png share/help/en_GB/mate-char-palette/figures/charpick_characters.png @@ -2017,13 +2017,13 @@ share/help/eo/mate-accessx-status/figures/accessx_stic share/help/eo/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/eo/mate-accessx-status/index.docbook share/help/eo/mate-accessx-status/legal.xml -share/help/eo/mate-battstat/figures/battstat-applet-expanded.png -share/help/eo/mate-battstat/figures/battstat-applet.png -share/help/eo/mate-battstat/figures/battstat-credits-hal.png -share/help/eo/mate-battstat/figures/battstat-preferences.png -share/help/eo/mate-battstat/figures/context-menu.png -share/help/eo/mate-battstat/index.docbook -share/help/eo/mate-battstat/legal.xml +%%BATTERY%%share/help/eo/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/eo/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/eo/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/eo/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/eo/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/eo/mate-battstat/index.docbook +%%BATTERY%%share/help/eo/mate-battstat/legal.xml share/help/eo/mate-char-palette/figures/charpalette_applet.png share/help/eo/mate-char-palette/figures/charpick-preferences.png share/help/eo/mate-char-palette/figures/charpick_characters.png @@ -2092,13 +2092,13 @@ share/help/es/mate-accessx-status/figures/accessx_stic share/help/es/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es/mate-accessx-status/index.docbook share/help/es/mate-accessx-status/legal.xml -share/help/es/mate-battstat/figures/battstat-applet-expanded.png -share/help/es/mate-battstat/figures/battstat-applet.png -share/help/es/mate-battstat/figures/battstat-credits-hal.png -share/help/es/mate-battstat/figures/battstat-preferences.png -share/help/es/mate-battstat/figures/context-menu.png -share/help/es/mate-battstat/index.docbook -share/help/es/mate-battstat/legal.xml +%%BATTERY%%share/help/es/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/es/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/es/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/es/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/es/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/es/mate-battstat/index.docbook +%%BATTERY%%share/help/es/mate-battstat/legal.xml share/help/es/mate-char-palette/figures/charpalette_applet.png share/help/es/mate-char-palette/figures/charpick-preferences.png share/help/es/mate-char-palette/figures/charpick_characters.png @@ -2167,13 +2167,13 @@ share/help/es_AR/mate-accessx-status/figures/accessx_s share/help/es_AR/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_AR/mate-accessx-status/index.docbook share/help/es_AR/mate-accessx-status/legal.xml -share/help/es_AR/mate-battstat/figures/battstat-applet-expanded.png -share/help/es_AR/mate-battstat/figures/battstat-applet.png -share/help/es_AR/mate-battstat/figures/battstat-credits-hal.png -share/help/es_AR/mate-battstat/figures/battstat-preferences.png -share/help/es_AR/mate-battstat/figures/context-menu.png -share/help/es_AR/mate-battstat/index.docbook -share/help/es_AR/mate-battstat/legal.xml +%%BATTERY%%share/help/es_AR/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/es_AR/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/es_AR/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/es_AR/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/es_AR/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/es_AR/mate-battstat/index.docbook +%%BATTERY%%share/help/es_AR/mate-battstat/legal.xml share/help/es_AR/mate-char-palette/figures/charpalette_applet.png share/help/es_AR/mate-char-palette/figures/charpick-preferences.png share/help/es_AR/mate-char-palette/figures/charpick_characters.png @@ -2242,13 +2242,13 @@ share/help/es_CL/mate-accessx-status/figures/accessx_s share/help/es_CL/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_CL/mate-accessx-status/index.docbook share/help/es_CL/mate-accessx-status/legal.xml -share/help/es_CL/mate-battstat/figures/battstat-applet-expanded.png -share/help/es_CL/mate-battstat/figures/battstat-applet.png -share/help/es_CL/mate-battstat/figures/battstat-credits-hal.png -share/help/es_CL/mate-battstat/figures/battstat-preferences.png -share/help/es_CL/mate-battstat/figures/context-menu.png -share/help/es_CL/mate-battstat/index.docbook -share/help/es_CL/mate-battstat/legal.xml +%%BATTERY%%share/help/es_CL/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/es_CL/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/es_CL/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/es_CL/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/es_CL/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/es_CL/mate-battstat/index.docbook +%%BATTERY%%share/help/es_CL/mate-battstat/legal.xml share/help/es_CL/mate-char-palette/figures/charpalette_applet.png share/help/es_CL/mate-char-palette/figures/charpick-preferences.png share/help/es_CL/mate-char-palette/figures/charpick_characters.png @@ -2306,13 +2306,13 @@ share/help/es_CO/mate-accessx-status/figures/accessx_s share/help/es_CO/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_CO/mate-accessx-status/index.docbook share/help/es_CO/mate-accessx-status/legal.xml -share/help/es_CO/mate-battstat/figures/battstat-applet-expanded.png -share/help/es_CO/mate-battstat/figures/battstat-applet.png -share/help/es_CO/mate-battstat/figures/battstat-credits-hal.png -share/help/es_CO/mate-battstat/figures/battstat-preferences.png -share/help/es_CO/mate-battstat/figures/context-menu.png -share/help/es_CO/mate-battstat/index.docbook -share/help/es_CO/mate-battstat/legal.xml +%%BATTERY%%share/help/es_CO/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/es_CO/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/es_CO/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/es_CO/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/es_CO/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/es_CO/mate-battstat/index.docbook +%%BATTERY%%share/help/es_CO/mate-battstat/legal.xml share/help/es_CO/mate-char-palette/figures/charpalette_applet.png share/help/es_CO/mate-char-palette/figures/charpick-preferences.png share/help/es_CO/mate-char-palette/figures/charpick_characters.png @@ -2540,13 +2540,13 @@ share/help/es_ES/mate-accessx-status/figures/accessx_s share/help/es_ES/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_ES/mate-accessx-status/index.docbook share/help/es_ES/mate-accessx-status/legal.xml -share/help/es_ES/mate-battstat/figures/battstat-applet-expanded.png -share/help/es_ES/mate-battstat/figures/battstat-applet.png -share/help/es_ES/mate-battstat/figures/battstat-credits-hal.png -share/help/es_ES/mate-battstat/figures/battstat-preferences.png -share/help/es_ES/mate-battstat/figures/context-menu.png -share/help/es_ES/mate-battstat/index.docbook -share/help/es_ES/mate-battstat/legal.xml +%%BATTERY%%share/help/es_ES/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/es_ES/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/es_ES/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/es_ES/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/es_ES/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/es_ES/mate-battstat/index.docbook +%%BATTERY%%share/help/es_ES/mate-battstat/legal.xml share/help/es_ES/mate-char-palette/figures/charpalette_applet.png share/help/es_ES/mate-char-palette/figures/charpick-preferences.png share/help/es_ES/mate-char-palette/figures/charpick_characters.png @@ -2615,13 +2615,13 @@ share/help/es_MX/mate-accessx-status/figures/accessx_s share/help/es_MX/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_MX/mate-accessx-status/index.docbook share/help/es_MX/mate-accessx-status/legal.xml -share/help/es_MX/mate-battstat/figures/battstat-applet-expanded.png -share/help/es_MX/mate-battstat/figures/battstat-applet.png -share/help/es_MX/mate-battstat/figures/battstat-credits-hal.png -share/help/es_MX/mate-battstat/figures/battstat-preferences.png -share/help/es_MX/mate-battstat/figures/context-menu.png -share/help/es_MX/mate-battstat/index.docbook -share/help/es_MX/mate-battstat/legal.xml +%%BATTERY%%share/help/es_MX/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/es_MX/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/es_MX/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/es_MX/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/es_MX/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/es_MX/mate-battstat/index.docbook +%%BATTERY%%share/help/es_MX/mate-battstat/legal.xml share/help/es_MX/mate-char-palette/figures/charpalette_applet.png share/help/es_MX/mate-char-palette/figures/charpick-preferences.png share/help/es_MX/mate-char-palette/figures/charpick_characters.png @@ -2845,13 +2845,13 @@ share/help/es_PR/mate-accessx-status/figures/accessx_s share/help/es_PR/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/es_PR/mate-accessx-status/index.docbook share/help/es_PR/mate-accessx-status/legal.xml -share/help/es_PR/mate-battstat/figures/battstat-applet-expanded.png -share/help/es_PR/mate-battstat/figures/battstat-applet.png -share/help/es_PR/mate-battstat/figures/battstat-credits-hal.png -share/help/es_PR/mate-battstat/figures/battstat-preferences.png -share/help/es_PR/mate-battstat/figures/context-menu.png -share/help/es_PR/mate-battstat/index.docbook -share/help/es_PR/mate-battstat/legal.xml +%%BATTERY%%share/help/es_PR/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/es_PR/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/es_PR/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/es_PR/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/es_PR/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/es_PR/mate-battstat/index.docbook +%%BATTERY%%share/help/es_PR/mate-battstat/legal.xml share/help/es_PR/mate-char-palette/figures/charpalette_applet.png share/help/es_PR/mate-char-palette/figures/charpick-preferences.png share/help/es_PR/mate-char-palette/figures/charpick_characters.png @@ -3064,13 +3064,13 @@ share/help/et/mate-accessx-status/figures/accessx_stic share/help/et/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/et/mate-accessx-status/index.docbook share/help/et/mate-accessx-status/legal.xml -share/help/et/mate-battstat/figures/battstat-applet-expanded.png -share/help/et/mate-battstat/figures/battstat-applet.png -share/help/et/mate-battstat/figures/battstat-credits-hal.png -share/help/et/mate-battstat/figures/battstat-preferences.png -share/help/et/mate-battstat/figures/context-menu.png -share/help/et/mate-battstat/index.docbook -share/help/et/mate-battstat/legal.xml +%%BATTERY%%share/help/et/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/et/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/et/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/et/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/et/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/et/mate-battstat/index.docbook +%%BATTERY%%share/help/et/mate-battstat/legal.xml share/help/et/mate-char-palette/figures/charpalette_applet.png share/help/et/mate-char-palette/figures/charpick-preferences.png share/help/et/mate-char-palette/figures/charpick_characters.png @@ -3139,13 +3139,13 @@ share/help/eu/mate-accessx-status/figures/accessx_stic share/help/eu/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/eu/mate-accessx-status/index.docbook share/help/eu/mate-accessx-status/legal.xml -share/help/eu/mate-battstat/figures/battstat-applet-expanded.png -share/help/eu/mate-battstat/figures/battstat-applet.png -share/help/eu/mate-battstat/figures/battstat-credits-hal.png -share/help/eu/mate-battstat/figures/battstat-preferences.png -share/help/eu/mate-battstat/figures/context-menu.png -share/help/eu/mate-battstat/index.docbook -share/help/eu/mate-battstat/legal.xml +%%BATTERY%%share/help/eu/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/eu/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/eu/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/eu/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/eu/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/eu/mate-battstat/index.docbook +%%BATTERY%%share/help/eu/mate-battstat/legal.xml share/help/eu/mate-char-palette/figures/charpalette_applet.png share/help/eu/mate-char-palette/figures/charpick-preferences.png share/help/eu/mate-char-palette/figures/charpick_characters.png @@ -3214,13 +3214,13 @@ share/help/fa/mate-accessx-status/figures/accessx_stic share/help/fa/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/fa/mate-accessx-status/index.docbook share/help/fa/mate-accessx-status/legal.xml -share/help/fa/mate-battstat/figures/battstat-applet-expanded.png -share/help/fa/mate-battstat/figures/battstat-applet.png -share/help/fa/mate-battstat/figures/battstat-credits-hal.png -share/help/fa/mate-battstat/figures/battstat-preferences.png -share/help/fa/mate-battstat/figures/context-menu.png -share/help/fa/mate-battstat/index.docbook -share/help/fa/mate-battstat/legal.xml +%%BATTERY%%share/help/fa/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/fa/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/fa/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/fa/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/fa/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/fa/mate-battstat/index.docbook +%%BATTERY%%share/help/fa/mate-battstat/legal.xml share/help/fa/mate-char-palette/figures/charpalette_applet.png share/help/fa/mate-char-palette/figures/charpick-preferences.png share/help/fa/mate-char-palette/figures/charpick_characters.png @@ -3289,13 +3289,13 @@ share/help/fi/mate-accessx-status/figures/accessx_stic share/help/fi/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/fi/mate-accessx-status/index.docbook share/help/fi/mate-accessx-status/legal.xml -share/help/fi/mate-battstat/figures/battstat-applet-expanded.png -share/help/fi/mate-battstat/figures/battstat-applet.png -share/help/fi/mate-battstat/figures/battstat-credits-hal.png -share/help/fi/mate-battstat/figures/battstat-preferences.png -share/help/fi/mate-battstat/figures/context-menu.png -share/help/fi/mate-battstat/index.docbook -share/help/fi/mate-battstat/legal.xml +%%BATTERY%%share/help/fi/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/fi/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/fi/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/fi/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/fi/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/fi/mate-battstat/index.docbook +%%BATTERY%%share/help/fi/mate-battstat/legal.xml share/help/fi/mate-char-palette/figures/charpalette_applet.png share/help/fi/mate-char-palette/figures/charpick-preferences.png share/help/fi/mate-char-palette/figures/charpick_characters.png @@ -3370,13 +3370,13 @@ share/help/fr/mate-accessx-status/figures/accessx_stic share/help/fr/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/fr/mate-accessx-status/index.docbook share/help/fr/mate-accessx-status/legal.xml -share/help/fr/mate-battstat/figures/battstat-applet-expanded.png -share/help/fr/mate-battstat/figures/battstat-applet.png -share/help/fr/mate-battstat/figures/battstat-credits-hal.png -share/help/fr/mate-battstat/figures/battstat-preferences.png -share/help/fr/mate-battstat/figures/context-menu.png -share/help/fr/mate-battstat/index.docbook -share/help/fr/mate-battstat/legal.xml +%%BATTERY%%share/help/fr/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/fr/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/fr/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/fr/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/fr/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/fr/mate-battstat/index.docbook +%%BATTERY%%share/help/fr/mate-battstat/legal.xml share/help/fr/mate-char-palette/figures/charpalette_applet.png share/help/fr/mate-char-palette/figures/charpick-preferences.png share/help/fr/mate-char-palette/figures/charpick_characters.png @@ -3436,13 +3436,13 @@ share/help/fr/mateweather/legal.xml share/help/fr_CA/mate-geyes/figures/geyes_applet.png share/help/fr_CA/mate-geyes/index.docbook share/help/fr_CA/mate-geyes/legal.xml -share/help/frp/mate-battstat/figures/battstat-applet-expanded.png -share/help/frp/mate-battstat/figures/battstat-applet.png -share/help/frp/mate-battstat/figures/battstat-credits-hal.png -share/help/frp/mate-battstat/figures/battstat-preferences.png -share/help/frp/mate-battstat/figures/context-menu.png -share/help/frp/mate-battstat/index.docbook -share/help/frp/mate-battstat/legal.xml +%%BATTERY%%share/help/frp/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/frp/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/frp/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/frp/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/frp/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/frp/mate-battstat/index.docbook +%%BATTERY%%share/help/frp/mate-battstat/legal.xml share/help/frp/mate-geyes/figures/geyes_applet.png share/help/frp/mate-geyes/index.docbook share/help/frp/mate-geyes/legal.xml @@ -3495,13 +3495,13 @@ share/help/fur/mate-accessx-status/figures/accessx_sti share/help/fur/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/fur/mate-accessx-status/index.docbook share/help/fur/mate-accessx-status/legal.xml -share/help/fur/mate-battstat/figures/battstat-applet-expanded.png -share/help/fur/mate-battstat/figures/battstat-applet.png -share/help/fur/mate-battstat/figures/battstat-credits-hal.png -share/help/fur/mate-battstat/figures/battstat-preferences.png -share/help/fur/mate-battstat/figures/context-menu.png -share/help/fur/mate-battstat/index.docbook -share/help/fur/mate-battstat/legal.xml +%%BATTERY%%share/help/fur/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/fur/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/fur/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/fur/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/fur/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/fur/mate-battstat/index.docbook +%%BATTERY%%share/help/fur/mate-battstat/legal.xml share/help/fur/mate-char-palette/figures/charpalette_applet.png share/help/fur/mate-char-palette/figures/charpick-preferences.png share/help/fur/mate-char-palette/figures/charpick_characters.png @@ -3570,13 +3570,13 @@ share/help/fy/mate-accessx-status/figures/accessx_stic share/help/fy/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/fy/mate-accessx-status/index.docbook share/help/fy/mate-accessx-status/legal.xml -share/help/fy/mate-battstat/figures/battstat-applet-expanded.png -share/help/fy/mate-battstat/figures/battstat-applet.png -share/help/fy/mate-battstat/figures/battstat-credits-hal.png -share/help/fy/mate-battstat/figures/battstat-preferences.png -share/help/fy/mate-battstat/figures/context-menu.png -share/help/fy/mate-battstat/index.docbook -share/help/fy/mate-battstat/legal.xml +%%BATTERY%%share/help/fy/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/fy/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/fy/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/fy/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/fy/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/fy/mate-battstat/index.docbook +%%BATTERY%%share/help/fy/mate-battstat/legal.xml share/help/fy/mate-char-palette/figures/charpalette_applet.png share/help/fy/mate-char-palette/figures/charpick-preferences.png share/help/fy/mate-char-palette/figures/charpick_characters.png @@ -3645,13 +3645,13 @@ share/help/ga/mate-accessx-status/figures/accessx_stic share/help/ga/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/ga/mate-accessx-status/index.docbook share/help/ga/mate-accessx-status/legal.xml -share/help/ga/mate-battstat/figures/battstat-applet-expanded.png -share/help/ga/mate-battstat/figures/battstat-applet.png -share/help/ga/mate-battstat/figures/battstat-credits-hal.png -share/help/ga/mate-battstat/figures/battstat-preferences.png -share/help/ga/mate-battstat/figures/context-menu.png -share/help/ga/mate-battstat/index.docbook -share/help/ga/mate-battstat/legal.xml +%%BATTERY%%share/help/ga/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/ga/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/ga/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/ga/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/ga/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/ga/mate-battstat/index.docbook +%%BATTERY%%share/help/ga/mate-battstat/legal.xml share/help/ga/mate-char-palette/figures/charpalette_applet.png share/help/ga/mate-char-palette/figures/charpick-preferences.png share/help/ga/mate-char-palette/figures/charpick_characters.png @@ -3720,13 +3720,13 @@ share/help/gl/mate-accessx-status/figures/accessx_stic share/help/gl/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/gl/mate-accessx-status/index.docbook share/help/gl/mate-accessx-status/legal.xml -share/help/gl/mate-battstat/figures/battstat-applet-expanded.png -share/help/gl/mate-battstat/figures/battstat-applet.png -share/help/gl/mate-battstat/figures/battstat-credits-hal.png -share/help/gl/mate-battstat/figures/battstat-preferences.png -share/help/gl/mate-battstat/figures/context-menu.png -share/help/gl/mate-battstat/index.docbook -share/help/gl/mate-battstat/legal.xml +%%BATTERY%%share/help/gl/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/gl/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/gl/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/gl/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/gl/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/gl/mate-battstat/index.docbook +%%BATTERY%%share/help/gl/mate-battstat/legal.xml share/help/gl/mate-char-palette/figures/charpalette_applet.png share/help/gl/mate-char-palette/figures/charpick-preferences.png share/help/gl/mate-char-palette/figures/charpick_characters.png @@ -3795,13 +3795,13 @@ share/help/gu/mate-accessx-status/figures/accessx_stic share/help/gu/mate-accessx-status/figures/accessx_sticky-windows-key.png share/help/gu/mate-accessx-status/index.docbook share/help/gu/mate-accessx-status/legal.xml -share/help/gu/mate-battstat/figures/battstat-applet-expanded.png -share/help/gu/mate-battstat/figures/battstat-applet.png -share/help/gu/mate-battstat/figures/battstat-credits-hal.png -share/help/gu/mate-battstat/figures/battstat-preferences.png -share/help/gu/mate-battstat/figures/context-menu.png -share/help/gu/mate-battstat/index.docbook -share/help/gu/mate-battstat/legal.xml +%%BATTERY%%share/help/gu/mate-battstat/figures/battstat-applet-expanded.png +%%BATTERY%%share/help/gu/mate-battstat/figures/battstat-applet.png +%%BATTERY%%share/help/gu/mate-battstat/figures/battstat-credits-hal.png +%%BATTERY%%share/help/gu/mate-battstat/figures/battstat-preferences.png +%%BATTERY%%share/help/gu/mate-battstat/figures/context-menu.png +%%BATTERY%%share/help/gu/mate-battstat/index.docbook +%%BATTERY%%share/help/gu/mate-battstat/legal.xml share/help/gu/mate-char-palette/figures/charpalette_applet.png share/help/gu/mate-char-palette/figures/charpick-preferences.png share/help/gu/mate-char-palette/figures/charpick_characters.png @@ -3870,13 +3870,13 @@ share/help/ha/mate-accessx-status/figures/accessx_stic *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Wed Jun 19 23:11:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1475515CCB87; Wed, 19 Jun 2019 23:11:31 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AEF0687191; Wed, 19 Jun 2019 23:11:30 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8C1DA34BD; Wed, 19 Jun 2019 23:11:30 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JNBUab037109; Wed, 19 Jun 2019 23:11:30 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JNBURU037108; Wed, 19 Jun 2019 23:11:30 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201906192311.x5JNBURU037108@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Wed, 19 Jun 2019 23:11:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504601 - head/mail/dcc-dccd X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/mail/dcc-dccd X-SVN-Commit-Revision: 504601 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AEF0687191 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 23:11:31 -0000 Author: pkubaj Date: Wed Jun 19 23:11:29 2019 New Revision: 504601 URL: https://svnweb.freebsd.org/changeset/ports/504601 Log: mail/dcc-dccd: upgrade to 2.3.167 Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D20696 Modified: head/mail/dcc-dccd/Makefile head/mail/dcc-dccd/distinfo Modified: head/mail/dcc-dccd/Makefile ============================================================================== --- head/mail/dcc-dccd/Makefile Wed Jun 19 23:09:23 2019 (r504600) +++ head/mail/dcc-dccd/Makefile Wed Jun 19 23:11:29 2019 (r504601) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= dcc-dccd -PORTVERSION= 2.3.165 -PORTREVISION= 2 +PORTVERSION= 2.3.167 CATEGORIES= mail MASTER_SITES= https://www.dcc-servers.net/dcc/source/old/ DISTNAME= dcc-${PORTVERSION} Modified: head/mail/dcc-dccd/distinfo ============================================================================== --- head/mail/dcc-dccd/distinfo Wed Jun 19 23:09:23 2019 (r504600) +++ head/mail/dcc-dccd/distinfo Wed Jun 19 23:11:29 2019 (r504601) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560197993 -SHA256 (dcc-2.3.165.tar.Z) = 115f1270de7cd4961940431f8f01cd41e7f21a04f67910e66666224e5f974b2d -SIZE (dcc-2.3.165.tar.Z) = 1610871 +TIMESTAMP = 1560932570 +SHA256 (dcc-2.3.167.tar.Z) = 664a0a61ae87ebc9835ddb5197133c67e05911c793e8fa9a80d4f9c502f67858 +SIZE (dcc-2.3.167.tar.Z) = 1610273 From owner-svn-ports-all@freebsd.org Wed Jun 19 23:11:41 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55FB915CCBB2; Wed, 19 Jun 2019 23:11:41 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EFECE87390; Wed, 19 Jun 2019 23:11:40 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C5C7D34CF; Wed, 19 Jun 2019 23:11:40 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JNBeNw038137; Wed, 19 Jun 2019 23:11:40 GMT (envelope-from timur@FreeBSD.org) Received: (from timur@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JNBe8n038136; Wed, 19 Jun 2019 23:11:40 GMT (envelope-from timur@FreeBSD.org) Message-Id: <201906192311.x5JNBe8n038136@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: timur set sender to timur@FreeBSD.org using -f From: "Timur I. Bakeyev" Date: Wed, 19 Jun 2019 23:11:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504602 - head X-SVN-Group: ports-head X-SVN-Commit-Author: timur X-SVN-Commit-Paths: head X-SVN-Commit-Revision: 504602 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EFECE87390 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 23:11:41 -0000 Author: timur Date: Wed Jun 19 23:11:40 2019 New Revision: 504602 URL: https://svnweb.freebsd.org/changeset/ports/504602 Log: Add a note about upgrading procedure for the talloc, tevent, tdb and samba4[6-8]. Modified: head/UPDATING Modified: head/UPDATING ============================================================================== --- head/UPDATING Wed Jun 19 23:11:29 2019 (r504601) +++ head/UPDATING Wed Jun 19 23:11:40 2019 (r504602) @@ -5,6 +5,31 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20190619: + AFFECTS: users of samba4[6-8] and devel/talloc, devel/tevent, databases/tdb, databases/ldb* + AUTHOR: timur@FreeBSD.org + + To introduce samba410(we deliberatly skip samba49 due the complexity of handling) + and to drop dependency on deprecated Python 2.7, Samba supplimentary libraries + talloc, tevent and tdb were splitted into current Python 3 compatiable versions + and legacy ones, with the suffix "1". + + Old versions of Samba were changed to depend on the legacy supplimentary libraries, + so if you need to install samba46, samba47 or samba48 over previous Samba + installations you need to downgrade supplimentary libs with the following commands: + + for users of portmaster: + portmaster -o devel/talloc1 devel/talloc + portmaster -o devel/tevent1 devel/tevent + portmaster -o databases/tdb1 databases/tdb + portmaster -r devel/talloc1 + + for users of portupgrade: + portupgrade -o devel/talloc1 devel/talloc + portupgrade -o devel/tevent1 devel/tevent + portupgrade -o databases/tdb1 databases/tdb + portupgrade -fr devel/talloc1 + 20190613: AFFECTS: users of www/qt5-webengine AUTHOR: kai@FreeBSD.org From owner-svn-ports-all@freebsd.org Wed Jun 19 23:29:12 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24D2515CD0E7; Wed, 19 Jun 2019 23:29:12 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BFC5F87C2F; Wed, 19 Jun 2019 23:29:11 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9E06B39A5; Wed, 19 Jun 2019 23:29:11 +0000 (UTC) (envelope-from timur@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JNTBRi044485; Wed, 19 Jun 2019 23:29:11 GMT (envelope-from timur@FreeBSD.org) Received: (from timur@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JNTBwu044484; Wed, 19 Jun 2019 23:29:11 GMT (envelope-from timur@FreeBSD.org) Message-Id: <201906192329.x5JNTBwu044484@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: timur set sender to timur@FreeBSD.org using -f From: "Timur I. Bakeyev" Date: Wed, 19 Jun 2019 23:29:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504603 - in head: databases devel X-SVN-Group: ports-head X-SVN-Commit-Author: timur X-SVN-Commit-Paths: in head: databases devel X-SVN-Commit-Revision: 504603 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BFC5F87C2F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 23:29:12 -0000 Author: timur Date: Wed Jun 19 23:29:10 2019 New Revision: 504603 URL: https://svnweb.freebsd.org/changeset/ports/504603 Log: Forgot to add new ports to the Makefile Modified: head/databases/Makefile head/devel/Makefile Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Wed Jun 19 23:11:40 2019 (r504602) +++ head/databases/Makefile Wed Jun 19 23:29:10 2019 (r504603) @@ -1014,6 +1014,7 @@ SUBDIR += tcl-lmdb SUBDIR += tcl-sqlite3 SUBDIR += tdb + SUBDIR += tdb1 SUBDIR += tdbc SUBDIR += tile38 SUBDIR += tiledb Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Jun 19 23:11:40 2019 (r504602) +++ head/devel/Makefile Wed Jun 19 23:29:10 2019 (r504603) @@ -6119,6 +6119,7 @@ SUBDIR += tablist SUBDIR += tailor SUBDIR += talloc + SUBDIR += talloc1 SUBDIR += tass64 SUBDIR += tbb SUBDIR += tcl-memchan @@ -6142,6 +6143,7 @@ SUBDIR += template-glib SUBDIR += terminality SUBDIR += tevent + SUBDIR += tevent1 SUBDIR += tex-kpathsea SUBDIR += tex-libtexlua SUBDIR += tex-libtexluajit From owner-svn-ports-all@freebsd.org Wed Jun 19 23:34:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7205815CD431; Wed, 19 Jun 2019 23:34:27 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 190278823F; Wed, 19 Jun 2019 23:34:27 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E43DC3BEC; Wed, 19 Jun 2019 23:34:26 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JNYQga049364; Wed, 19 Jun 2019 23:34:26 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JNYQYh049362; Wed, 19 Jun 2019 23:34:26 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201906192334.x5JNYQYh049362@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 19 Jun 2019 23:34:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504604 - head/www/p5-Dancer2 X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/www/p5-Dancer2 X-SVN-Commit-Revision: 504604 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 190278823F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 23:34:27 -0000 Author: wen Date: Wed Jun 19 23:34:26 2019 New Revision: 504604 URL: https://svnweb.freebsd.org/changeset/ports/504604 Log: - Update to 0.208000 Modified: head/www/p5-Dancer2/Makefile head/www/p5-Dancer2/distinfo Modified: head/www/p5-Dancer2/Makefile ============================================================================== --- head/www/p5-Dancer2/Makefile Wed Jun 19 23:29:10 2019 (r504603) +++ head/www/p5-Dancer2/Makefile Wed Jun 19 23:34:26 2019 (r504604) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Dancer2 -PORTVERSION= 0.207000 +PORTVERSION= 0.208000 CATEGORIES= www perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/www/p5-Dancer2/distinfo ============================================================================== --- head/www/p5-Dancer2/distinfo Wed Jun 19 23:29:10 2019 (r504603) +++ head/www/p5-Dancer2/distinfo Wed Jun 19 23:34:26 2019 (r504604) @@ -1,3 +1,3 @@ -TIMESTAMP = 1542302908 -SHA256 (Dancer2-0.207000.tar.gz) = d49277f5354861ebe2a9a17e4d5949363b9567ba2e65b82b7a9b8f7867a0de3c -SIZE (Dancer2-0.207000.tar.gz) = 380501 +TIMESTAMP = 1560985989 +SHA256 (Dancer2-0.208000.tar.gz) = d95431d1a1e2a7aeb5180a4a2e9be4fab1ee12cf40e4d41903de04c386b74d8b +SIZE (Dancer2-0.208000.tar.gz) = 381388 From owner-svn-ports-all@freebsd.org Wed Jun 19 23:54:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6D53215CE08E; Wed, 19 Jun 2019 23:54:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E09108911A; Wed, 19 Jun 2019 23:54:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A2C483F6A; Wed, 19 Jun 2019 23:54:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JNsSTZ059934; Wed, 19 Jun 2019 23:54:28 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JNsSAn059932; Wed, 19 Jun 2019 23:54:28 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906192354.x5JNsSAn059932@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Wed, 19 Jun 2019 23:54:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504605 - head/emulators/rpcs3 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/emulators/rpcs3 X-SVN-Commit-Revision: 504605 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E09108911A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 23:54:29 -0000 Author: jbeich Date: Wed Jun 19 23:54:28 2019 New Revision: 504605 URL: https://svnweb.freebsd.org/changeset/ports/504605 Log: emulators/rpcs3: update to 0.0.6.8266 Changes: https://github.com/RPCS3/rpcs3/compare/d52953fca...5753b3222 Modified: head/emulators/rpcs3/Makefile (contents, props changed) head/emulators/rpcs3/distinfo (contents, props changed) Modified: head/emulators/rpcs3/Makefile ============================================================================== --- head/emulators/rpcs3/Makefile Wed Jun 19 23:34:26 2019 (r504604) +++ head/emulators/rpcs3/Makefile Wed Jun 19 23:54:28 2019 (r504605) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.6-8261 # git rev-list --count HEAD -DISTVERSIONSUFFIX= -gd52953fca +DISTVERSION= 0.0.6-8266 # git rev-list --count HEAD +DISTVERSIONSUFFIX= -g5753b3222 CATEGORIES= emulators PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ @@ -27,7 +27,7 @@ ONLY_FOR_ARCHS_REASON= requires int128 and SSE2 USE_GITHUB= yes GH_ACCOUNT= RPCS3 GH_TUPLE= RPCS3:hidapi:hidapi-0.8.0-rc1-27-g9220f5e:hidapi/3rdparty/hidapi \ - RPCS3:llvm:b860b5e8f4ee:llvm/llvm \ + RPCS3:llvm:99b528446302:llvm/llvm \ Cyan4973:xxHash:v0.6.5:xxHash/3rdparty/xxHash \ jbeder:yaml-cpp:yaml-cpp-0.6.2-23-geca9cfd:yamlcpp/3rdparty/yaml-cpp \ kobalicek:asmjit:1e550aa:asmjit/asmjit \ Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Wed Jun 19 23:34:26 2019 (r504604) +++ head/emulators/rpcs3/distinfo Wed Jun 19 23:54:28 2019 (r504605) @@ -1,10 +1,10 @@ -TIMESTAMP = 1560729163 -SHA256 (RPCS3-rpcs3-v0.0.6-8261-gd52953fca_GH0.tar.gz) = 6057a8116327fbe86998504b88f692310bf3d1625bd73cab2fbfeb6c91331056 -SIZE (RPCS3-rpcs3-v0.0.6-8261-gd52953fca_GH0.tar.gz) = 5443231 +TIMESTAMP = 1560966359 +SHA256 (RPCS3-rpcs3-v0.0.6-8266-g5753b3222_GH0.tar.gz) = 6fd869593e1876397f0668e04678257c40ef20941a04cf8d6d27076a85834494 +SIZE (RPCS3-rpcs3-v0.0.6-8266-g5753b3222_GH0.tar.gz) = 5443613 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-b860b5e8f4ee_GH0.tar.gz) = c151972a0c8ceac568c24b61e63d2ecbdac0f125185e23fc2238e0a14048256e -SIZE (RPCS3-llvm-b860b5e8f4ee_GH0.tar.gz) = 47286737 +SHA256 (RPCS3-llvm-99b528446302_GH0.tar.gz) = 36593a6f8dac6dd5d9eddab4b2aadcab768520a5b76f1cf7941f273609fcfa47 +SIZE (RPCS3-llvm-99b528446302_GH0.tar.gz) = 47288210 SHA256 (Cyan4973-xxHash-v0.6.5_GH0.tar.gz) = 19030315f4fc1b4b2cdb9d7a317069a109f90e39d1fe4c9159b7aaa39030eb95 SIZE (Cyan4973-xxHash-v0.6.5_GH0.tar.gz) = 37521 SHA256 (jbeder-yaml-cpp-yaml-cpp-0.6.2-23-geca9cfd_GH0.tar.gz) = 554f6fac1d9524f807345f95ba9223332c644e56d7a7fdb2bcea1f5793b764fa From owner-svn-ports-all@freebsd.org Wed Jun 19 23:54:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E31B15CE0B4; Wed, 19 Jun 2019 23:54:45 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 23B49891EE; Wed, 19 Jun 2019 23:54:45 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E6DF83F6B; Wed, 19 Jun 2019 23:54:44 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5JNsiM9060070; Wed, 19 Jun 2019 23:54:44 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5JNsiME060069; Wed, 19 Jun 2019 23:54:44 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906192354.x5JNsiME060069@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Wed, 19 Jun 2019 23:54:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504606 - head/biology/mothur X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/biology/mothur X-SVN-Commit-Revision: 504606 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 23B49891EE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Jun 2019 23:54:45 -0000 Author: yuri Date: Wed Jun 19 23:54:44 2019 New Revision: 504606 URL: https://svnweb.freebsd.org/changeset/ports/504606 Log: biology/mothur: Update 1.42.1-3 -> 1.42.2 Modified: head/biology/mothur/Makefile head/biology/mothur/distinfo Modified: head/biology/mothur/Makefile ============================================================================== --- head/biology/mothur/Makefile Wed Jun 19 23:54:28 2019 (r504605) +++ head/biology/mothur/Makefile Wed Jun 19 23:54:44 2019 (r504606) @@ -1,9 +1,8 @@ # $FreeBSD$ PORTNAME= mothur -DISTVERSIONPREFIX= v -DISTVERSION= 1.42.1-3 -DISTVERSIONSUFFIX= -gb670137a +DISTVERSIONPREFIX= v. +DISTVERSION= 1.42.2 CATEGORIES= biology MAINTAINER= yuri@FreeBSD.org Modified: head/biology/mothur/distinfo ============================================================================== --- head/biology/mothur/distinfo Wed Jun 19 23:54:28 2019 (r504605) +++ head/biology/mothur/distinfo Wed Jun 19 23:54:44 2019 (r504606) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558374468 -SHA256 (mothur-mothur-v1.42.1-3-gb670137a_GH0.tar.gz) = fe7742102af4eb62fef75357b3a2563283e70f8ec344898f7c4396ff41309bf1 -SIZE (mothur-mothur-v1.42.1-3-gb670137a_GH0.tar.gz) = 1651578 +TIMESTAMP = 1560988088 +SHA256 (mothur-mothur-v.1.42.2_GH0.tar.gz) = 16088a9e98887165cff919bd79417a95bf962b19ea12bd741e42032fe8da6b03 +SIZE (mothur-mothur-v.1.42.2_GH0.tar.gz) = 1650848 From owner-svn-ports-all@freebsd.org Thu Jun 20 00:27:38 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65C8F15CEC7D; Thu, 20 Jun 2019 00:27:38 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 06ACD89F41; Thu, 20 Jun 2019 00:27:38 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E6AEA44C2; Thu, 20 Jun 2019 00:27:37 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K0RbRs076050; Thu, 20 Jun 2019 00:27:37 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K0RbWK076047; Thu, 20 Jun 2019 00:27:37 GMT (envelope-from db@FreeBSD.org) Message-Id: <201906200027.x5K0RbWK076047@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Thu, 20 Jun 2019 00:27:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504607 - in head/comms/fldigi: . files X-SVN-Group: ports-head X-SVN-Commit-Author: db X-SVN-Commit-Paths: in head/comms/fldigi: . files X-SVN-Commit-Revision: 504607 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 06ACD89F41 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 00:27:38 -0000 Author: db Date: Thu Jun 20 00:27:36 2019 New Revision: 504607 URL: https://svnweb.freebsd.org/changeset/ports/504607 Log: Update to 4.1.04 Simplify local patch 2019-06-07 Davide Gerhard IV3CVE 51590b10b: MacOS high-DPI 33505fec3: timeops 2019-06-07 David Freese c2dbea65b: log server 337aa4d2a: xmlrpc 2086bd1fe: LoTW delivery 2e0ba6d11: Apple kill button 6d9c80e3a: main dialog title 2ec197373: Warnings f63f8bc36: Contestia/Olivia ea39851b6: Log reports f7c376723: Documentation update 8d25f53d9: 7qp multi 867ded47b: n3fjp ebab17a2b: wfonly controls ef2d55e22: Read log debugging 2928a9b97: New Modem Macro 90b021222: DE QSO Party Modified: head/comms/fldigi/Makefile head/comms/fldigi/distinfo head/comms/fldigi/files/patch-src_soundcard_sound.cxx Modified: head/comms/fldigi/Makefile ============================================================================== --- head/comms/fldigi/Makefile Wed Jun 19 23:54:44 2019 (r504606) +++ head/comms/fldigi/Makefile Thu Jun 20 00:27:36 2019 (r504607) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= fldigi -PORTVERSION= 4.1.03 +PORTVERSION= 4.1.04 CATEGORIES= comms hamradio MASTER_SITES= SF/${PORTNAME}/${PORTNAME} Modified: head/comms/fldigi/distinfo ============================================================================== --- head/comms/fldigi/distinfo Wed Jun 19 23:54:44 2019 (r504606) +++ head/comms/fldigi/distinfo Thu Jun 20 00:27:36 2019 (r504607) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555867447 -SHA256 (fldigi-4.1.03.tar.gz) = 37d9404cd02ad0497fb369ab73ade4f6330e1f82bfce908c4fe89f21642775b4 -SIZE (fldigi-4.1.03.tar.gz) = 4682813 +TIMESTAMP = 1560983163 +SHA256 (fldigi-4.1.04.tar.gz) = 89c19c349eaf04cd3bab94df89cdaa9d4ad8b1bc50871d3f8be1175ab237bb45 +SIZE (fldigi-4.1.04.tar.gz) = 4689833 Modified: head/comms/fldigi/files/patch-src_soundcard_sound.cxx ============================================================================== --- head/comms/fldigi/files/patch-src_soundcard_sound.cxx Wed Jun 19 23:54:44 2019 (r504606) +++ head/comms/fldigi/files/patch-src_soundcard_sound.cxx Thu Jun 20 00:27:36 2019 (r504607) @@ -1,6 +1,6 @@ ---- src/soundcard/sound.cxx.orig 2018-12-06 14:41:46 UTC +--- src/soundcard/sound.cxx.orig 2019-05-25 01:35:59 UTC +++ src/soundcard/sound.cxx -@@ -651,7 +651,27 @@ int SoundOSS::Open(int md, int freq) +@@ -651,7 +651,26 @@ int SoundOSS::Open(int md, int freq) oflags = oflags | O_CLOEXEC; # endif @@ -16,10 +16,9 @@ + char *p; + /* Look for a '.' if found, blow it away */ + fixed_name = strdup(device.c_str()); -+ p = fixed_name; -+ while (*p++) -+ if(*p == '.') -+ *p = '\0'; ++ p = strchr(fixed_name, '.'); ++ if(p != NULL) ++ *p = '\0'; + device_fd = fl_open(fixed_name, oflags, 0); + free(fixed_name); +#else @@ -28,7 +27,7 @@ if (device_fd == -1) throw SndException(errno); -@@ -677,12 +697,11 @@ void SoundOSS::Close(unsigned dir) +@@ -677,12 +696,11 @@ void SoundOSS::Close(unsigned dir) void SoundOSS::getVersion() { version = 0; From owner-svn-ports-all@freebsd.org Thu Jun 20 02:01:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02E4315D0834; Thu, 20 Jun 2019 02:01:49 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9CD658C5B0; Thu, 20 Jun 2019 02:01:48 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7A3455597; Thu, 20 Jun 2019 02:01:48 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K21mqd024751; Thu, 20 Jun 2019 02:01:48 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K21mQk024749; Thu, 20 Jun 2019 02:01:48 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906200201.x5K21mQk024749@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 02:01:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504608 - in head/multimedia/musikcube: . files X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/multimedia/musikcube: . files X-SVN-Commit-Revision: 504608 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9CD658C5B0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 02:01:49 -0000 Author: yuri Date: Thu Jun 20 02:01:47 2019 New Revision: 504608 URL: https://svnweb.freebsd.org/changeset/ports/504608 Log: multimedia/musikcube: Update 0.65.0 -> 0.65.1 Deleted: head/multimedia/musikcube/files/ Modified: head/multimedia/musikcube/Makefile head/multimedia/musikcube/distinfo Modified: head/multimedia/musikcube/Makefile ============================================================================== --- head/multimedia/musikcube/Makefile Thu Jun 20 00:27:36 2019 (r504607) +++ head/multimedia/musikcube/Makefile Thu Jun 20 02:01:47 2019 (r504608) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= musikcube -DISTVERSION= 0.65.0 +DISTVERSION= 0.65.1 CATEGORIES= multimedia audio MAINTAINER= yuri@FreeBSD.org Modified: head/multimedia/musikcube/distinfo ============================================================================== --- head/multimedia/musikcube/distinfo Thu Jun 20 00:27:36 2019 (r504607) +++ head/multimedia/musikcube/distinfo Thu Jun 20 02:01:47 2019 (r504608) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556951214 -SHA256 (clangen-musikcube-0.65.0_GH0.tar.gz) = 2c86400eeee38ecb9642e93cf043408c651466bf5859d70d831d27a962ac7006 -SIZE (clangen-musikcube-0.65.0_GH0.tar.gz) = 9043109 +TIMESTAMP = 1560994892 +SHA256 (clangen-musikcube-0.65.1_GH0.tar.gz) = e847bd71d3852e83a50b6b0a796e88386f61f09f3fb6379c866616edba4c8b72 +SIZE (clangen-musikcube-0.65.1_GH0.tar.gz) = 9042709 From owner-svn-ports-all@freebsd.org Thu Jun 20 02:51:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6322A15D19F3; Thu, 20 Jun 2019 02:51:19 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 09F8B8DF88; Thu, 20 Jun 2019 02:51:19 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DA5C75DC8; Thu, 20 Jun 2019 02:51:18 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K2pIaM051184; Thu, 20 Jun 2019 02:51:18 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K2pIUP051182; Thu, 20 Jun 2019 02:51:18 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906200251.x5K2pIUP051182@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 20 Jun 2019 02:51:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504609 - head/deskutils/sysctlview X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/deskutils/sysctlview X-SVN-Commit-Revision: 504609 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 09F8B8DF88 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 02:51:19 -0000 Author: swills Date: Thu Jun 20 02:51:18 2019 New Revision: 504609 URL: https://svnweb.freebsd.org/changeset/ports/504609 Log: deskutils/sysctlview: Update to 1.3 PR: 238510 Submitted by: Alfonso S. Siciliano (maintainer) Modified: head/deskutils/sysctlview/Makefile (contents, props changed) head/deskutils/sysctlview/distinfo (contents, props changed) Modified: head/deskutils/sysctlview/Makefile ============================================================================== --- head/deskutils/sysctlview/Makefile Thu Jun 20 02:01:47 2019 (r504608) +++ head/deskutils/sysctlview/Makefile Thu Jun 20 02:51:18 2019 (r504609) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sysctlview -PORTVERSION= 1.2 +PORTVERSION= 1.3 CATEGORIES= deskutils MAINTAINER= alfix86@gmail.com @@ -18,7 +18,7 @@ USE_GNOME= atk atkmm cairo cairomm gdkpixbuf2 glib20 g USE_GITLAB= yes GL_ACCOUNT= alfix -GL_COMMIT= 530198e752452ad6c088569718949c34c9e265eb +GL_COMMIT= 436623489c94935081c4f3d366a08acb915de5de INSTALLS_ICONS= yes Modified: head/deskutils/sysctlview/distinfo ============================================================================== --- head/deskutils/sysctlview/distinfo Thu Jun 20 02:01:47 2019 (r504608) +++ head/deskutils/sysctlview/distinfo Thu Jun 20 02:51:18 2019 (r504609) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559070907 -SHA256 (alfix-sysctlview-530198e752452ad6c088569718949c34c9e265eb_GL0.tar.gz) = ed80e18b4cf98d7da657839354bedee4f88ae40e8b23372e945ec01f4c6b1b1b -SIZE (alfix-sysctlview-530198e752452ad6c088569718949c34c9e265eb_GL0.tar.gz) = 359744 +TIMESTAMP = 1560279995 +SHA256 (alfix-sysctlview-436623489c94935081c4f3d366a08acb915de5de_GL0.tar.gz) = 5f80afcb1e97a331a47c81cca59055a154c30a2516e9bdbaedad665a4701c886 +SIZE (alfix-sysctlview-436623489c94935081c4f3d366a08acb915de5de_GL0.tar.gz) = 328939 From owner-svn-ports-all@freebsd.org Thu Jun 20 02:52:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 78B9715D1A99; Thu, 20 Jun 2019 02:52:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1F3C38E18F; Thu, 20 Jun 2019 02:52:46 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EE5485E27; Thu, 20 Jun 2019 02:52:45 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K2qjUD053736; Thu, 20 Jun 2019 02:52:45 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K2qjf5053735; Thu, 20 Jun 2019 02:52:45 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906200252.x5K2qjf5053735@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 20 Jun 2019 02:52:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504610 - head/security/sops X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/security/sops X-SVN-Commit-Revision: 504610 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1F3C38E18F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 02:52:46 -0000 Author: swills Date: Thu Jun 20 02:52:45 2019 New Revision: 504610 URL: https://svnweb.freebsd.org/changeset/ports/504610 Log: security/sops: Update to 3.3.1 PR: 238521 Submitted by: Dmitri Goutnik (maintainer) Modified: head/security/sops/Makefile (contents, props changed) head/security/sops/distinfo (contents, props changed) Modified: head/security/sops/Makefile ============================================================================== --- head/security/sops/Makefile Thu Jun 20 02:51:18 2019 (r504609) +++ head/security/sops/Makefile Thu Jun 20 02:52:45 2019 (r504610) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sops -DISTVERSION= 3.3.0 +DISTVERSION= 3.3.1 CATEGORIES= security editors MAINTAINER= dg@syrec.org Modified: head/security/sops/distinfo ============================================================================== --- head/security/sops/distinfo Thu Jun 20 02:51:18 2019 (r504609) +++ head/security/sops/distinfo Thu Jun 20 02:52:45 2019 (r504610) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555590199 -SHA256 (mozilla-sops-3.3.0_GH0.tar.gz) = ba9cf4dffeba97ae738a71b1f647780ef71e01466e1fe5a9b61bca5e89d25a19 -SIZE (mozilla-sops-3.3.0_GH0.tar.gz) = 53717019 +TIMESTAMP = 1560342346 +SHA256 (mozilla-sops-3.3.1_GH0.tar.gz) = 9f6a4a369378cef9e8e7cdd8ba00b3105b0b6875404c3b9f482f804b2f355a77 +SIZE (mozilla-sops-3.3.1_GH0.tar.gz) = 62451483 From owner-svn-ports-all@freebsd.org Thu Jun 20 03:23:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2642A15D2774; Thu, 20 Jun 2019 03:23:48 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B84128F3EF; Thu, 20 Jun 2019 03:23:47 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 90E7F63B4; Thu, 20 Jun 2019 03:23:47 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K3NlAg070396; Thu, 20 Jun 2019 03:23:47 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K3NlY5070394; Thu, 20 Jun 2019 03:23:47 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906200323.x5K3NlY5070394@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 03:23:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504611 - head/audio/gsequencer X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/audio/gsequencer X-SVN-Commit-Revision: 504611 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B84128F3EF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 03:23:48 -0000 Author: yuri Date: Thu Jun 20 03:23:46 2019 New Revision: 504611 URL: https://svnweb.freebsd.org/changeset/ports/504611 Log: audio/gsequencer: Update 2.1.76 -> 2.1.77 Reported by: portscout Modified: head/audio/gsequencer/Makefile head/audio/gsequencer/distinfo Modified: head/audio/gsequencer/Makefile ============================================================================== --- head/audio/gsequencer/Makefile Thu Jun 20 02:52:45 2019 (r504610) +++ head/audio/gsequencer/Makefile Thu Jun 20 03:23:46 2019 (r504611) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= gsequencer -DISTVERSION= 2.1.76 -PORTREVISION= 1 +DISTVERSION= 2.1.77 CATEGORIES= audio MASTER_SITES= SAVANNAH/gsequencer/2.1.x Modified: head/audio/gsequencer/distinfo ============================================================================== --- head/audio/gsequencer/distinfo Thu Jun 20 02:52:45 2019 (r504610) +++ head/audio/gsequencer/distinfo Thu Jun 20 03:23:46 2019 (r504611) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560362921 -SHA256 (gsequencer-2.1.76.tar.gz) = 4b4a095fe7392d13aa65ed6ec599f233f6b5cea0e36f371e6babb18d10ce8b2c -SIZE (gsequencer-2.1.76.tar.gz) = 5090662 +TIMESTAMP = 1561000724 +SHA256 (gsequencer-2.1.77.tar.gz) = af0ae34d52e4523739be7224d8a3b117623ee5ffee8ffa02f6f8e77142d259a4 +SIZE (gsequencer-2.1.77.tar.gz) = 5090653 From owner-svn-ports-all@freebsd.org Thu Jun 20 03:26:14 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C615B15D27D4; Thu, 20 Jun 2019 03:26:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 63C6A8F50C; Thu, 20 Jun 2019 03:26:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 50F8E63B9; Thu, 20 Jun 2019 03:26:14 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K3QEAP070621; Thu, 20 Jun 2019 03:26:14 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K3QDKI070619; Thu, 20 Jun 2019 03:26:13 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906200326.x5K3QDKI070619@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 03:26:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504612 - head/misc/bitwise X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/bitwise X-SVN-Commit-Revision: 504612 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 63C6A8F50C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 03:26:15 -0000 Author: yuri Date: Thu Jun 20 03:26:13 2019 New Revision: 504612 URL: https://svnweb.freebsd.org/changeset/ports/504612 Log: misc/bitwise: Update 0.14 -> 0.20 Reported by: portscout Modified: head/misc/bitwise/Makefile head/misc/bitwise/distinfo Modified: head/misc/bitwise/Makefile ============================================================================== --- head/misc/bitwise/Makefile Thu Jun 20 03:23:46 2019 (r504611) +++ head/misc/bitwise/Makefile Thu Jun 20 03:26:13 2019 (r504612) @@ -2,7 +2,7 @@ PORTNAME= bitwise DISTVERSIONPREFIX= v -DISTVERSION= 0.14 +DISTVERSION= 0.20 CATEGORIES= misc MAINTAINER= yuri@FreeBSD.org @@ -11,7 +11,7 @@ COMMENT= Terminal-based bitwise manipulator in curses LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= autoreconf ncurses +USES= autoreconf localbase ncurses readline GNU_CONFIGURE= yes USE_GITHUB= yes GH_ACCOUNT= mellowcandle Modified: head/misc/bitwise/distinfo ============================================================================== --- head/misc/bitwise/distinfo Thu Jun 20 03:23:46 2019 (r504611) +++ head/misc/bitwise/distinfo Thu Jun 20 03:26:13 2019 (r504612) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558343012 -SHA256 (mellowcandle-bitwise-v0.14_GH0.tar.gz) = f9e0da1905566262ea3716507592f7fed357e810d78545d0b9bfab2c11e71e92 -SIZE (mellowcandle-bitwise-v0.14_GH0.tar.gz) = 252766 +TIMESTAMP = 1561001054 +SHA256 (mellowcandle-bitwise-v0.20_GH0.tar.gz) = 6faaf815a7e25f7a5cdc6a9cf3f65b745e15f958465eeb4c6392ab7bbe898d8a +SIZE (mellowcandle-bitwise-v0.20_GH0.tar.gz) = 263288 From owner-svn-ports-all@freebsd.org Thu Jun 20 03:29:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 14DBD15D2851; Thu, 20 Jun 2019 03:29:13 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AF51D8F627; Thu, 20 Jun 2019 03:29:12 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A198863BD; Thu, 20 Jun 2019 03:29:12 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K3TC4p070853; Thu, 20 Jun 2019 03:29:12 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K3TCcU070851; Thu, 20 Jun 2019 03:29:12 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906200329.x5K3TCcU070851@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 03:29:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504613 - head/devel/py-bandit X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-bandit X-SVN-Commit-Revision: 504613 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AF51D8F627 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 03:29:13 -0000 Author: yuri Date: Thu Jun 20 03:29:11 2019 New Revision: 504613 URL: https://svnweb.freebsd.org/changeset/ports/504613 Log: devel/py-bandit: Update 1.6.0 -> 1.6.1 Reported by: portscout Modified: head/devel/py-bandit/Makefile head/devel/py-bandit/distinfo Modified: head/devel/py-bandit/Makefile ============================================================================== --- head/devel/py-bandit/Makefile Thu Jun 20 03:26:13 2019 (r504612) +++ head/devel/py-bandit/Makefile Thu Jun 20 03:29:11 2019 (r504613) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bandit -DISTVERSION= 1.6.0 +DISTVERSION= 1.6.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-bandit/distinfo ============================================================================== --- head/devel/py-bandit/distinfo Thu Jun 20 03:26:13 2019 (r504612) +++ head/devel/py-bandit/distinfo Thu Jun 20 03:29:11 2019 (r504613) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557546434 -SHA256 (bandit-1.6.0.tar.gz) = e50fb4ed4ee8a98b8329385e48e606fded0999a2cb3e2acb6e7213c962ff0de1 -SIZE (bandit-1.6.0.tar.gz) = 498578 +TIMESTAMP = 1561001215 +SHA256 (bandit-1.6.1.tar.gz) = fa1fee3cb60a3dca89b7a86c0be82af0e830def961728aba9290854fe18c1f90 +SIZE (bandit-1.6.1.tar.gz) = 498489 From owner-svn-ports-all@freebsd.org Thu Jun 20 03:31:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AF44F15D29C6; Thu, 20 Jun 2019 03:31:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 56D2F8F93D; Thu, 20 Jun 2019 03:31:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 342C96511; Thu, 20 Jun 2019 03:31:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K3VvXs074089; Thu, 20 Jun 2019 03:31:57 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K3Vu7b074087; Thu, 20 Jun 2019 03:31:56 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906200331.x5K3Vu7b074087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 03:31:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504614 - head/misc/snakemake X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/snakemake X-SVN-Commit-Revision: 504614 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 56D2F8F93D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 03:31:57 -0000 Author: yuri Date: Thu Jun 20 03:31:56 2019 New Revision: 504614 URL: https://svnweb.freebsd.org/changeset/ports/504614 Log: misc/snakemake: Update 5.5.0 -> 5.5.1 Reported by: portscout Modified: head/misc/snakemake/Makefile head/misc/snakemake/distinfo Modified: head/misc/snakemake/Makefile ============================================================================== --- head/misc/snakemake/Makefile Thu Jun 20 03:29:11 2019 (r504613) +++ head/misc/snakemake/Makefile Thu Jun 20 03:31:56 2019 (r504614) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= snakemake -DISTVERSION= 5.5.0 +DISTVERSION= 5.5.1 CATEGORIES= misc MASTER_SITES= CHEESESHOP Modified: head/misc/snakemake/distinfo ============================================================================== --- head/misc/snakemake/distinfo Thu Jun 20 03:29:11 2019 (r504613) +++ head/misc/snakemake/distinfo Thu Jun 20 03:31:56 2019 (r504614) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559403944 -SHA256 (snakemake-5.5.0.tar.gz) = ad9f3a81aa472b3d9dd3891a938b07e2aa00cafc9463a5b42f81655760208df0 -SIZE (snakemake-5.5.0.tar.gz) = 174003 +TIMESTAMP = 1561001410 +SHA256 (snakemake-5.5.1.tar.gz) = 9b2e512a5d136b6b3e9a63b06cf74ca1f7c09a699e196c95f6d9e172083f8d9f +SIZE (snakemake-5.5.1.tar.gz) = 175639 From owner-svn-ports-all@freebsd.org Thu Jun 20 03:41:16 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 209CD15D2A3C; Thu, 20 Jun 2019 03:41:16 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BCD028FB91; Thu, 20 Jun 2019 03:41:15 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9696A659C; Thu, 20 Jun 2019 03:41:15 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K3fFJD079243; Thu, 20 Jun 2019 03:41:15 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K3fFmQ079241; Thu, 20 Jun 2019 03:41:15 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906200341.x5K3fFmQ079241@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 03:41:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504615 - head/devel/folly X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/folly X-SVN-Commit-Revision: 504615 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BCD028FB91 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.98)[-0.978,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 03:41:16 -0000 Author: yuri Date: Thu Jun 20 03:41:14 2019 New Revision: 504615 URL: https://svnweb.freebsd.org/changeset/ports/504615 Log: devel/folly: Update 2019.06.10.00 -> 2019.06.17.00 Reported by: portscout Modified: head/devel/folly/Makefile head/devel/folly/distinfo head/devel/folly/pkg-plist Modified: head/devel/folly/Makefile ============================================================================== --- head/devel/folly/Makefile Thu Jun 20 03:31:56 2019 (r504614) +++ head/devel/folly/Makefile Thu Jun 20 03:41:14 2019 (r504615) @@ -2,8 +2,7 @@ PORTNAME= folly DISTVERSIONPREFIX= v -DISTVERSION= 2019.06.10.00 -PORTREVISION= 2 +DISTVERSION= 2019.06.17.00 CATEGORIES= devel PATCH_SITES= https://github.com/${GH_ACCOUNT}/${PORTNAME}/commit/ Modified: head/devel/folly/distinfo ============================================================================== --- head/devel/folly/distinfo Thu Jun 20 03:31:56 2019 (r504614) +++ head/devel/folly/distinfo Thu Jun 20 03:41:14 2019 (r504615) @@ -1,5 +1,5 @@ -TIMESTAMP = 1560670033 -SHA256 (facebook-folly-v2019.06.10.00_GH0.tar.gz) = afecd68815a83865d95a3a6b861abe8096beefae45c89566e0d510279b631b57 -SIZE (facebook-folly-v2019.06.10.00_GH0.tar.gz) = 2941638 +TIMESTAMP = 1561001550 +SHA256 (facebook-folly-v2019.06.17.00_GH0.tar.gz) = dc7ee18b24521a842fc5f7166d44b3db7246354ba4b22aa58b6a2444bb6cae6b +SIZE (facebook-folly-v2019.06.17.00_GH0.tar.gz) = 2951001 SHA256 (1df75a13c2f52ee275b6f95be87a02a474e3386f.patch) = 095fac5e28acc5bb2a70a5c0cd3d693dd8c0b1835f2cffc0170ef96e2441a7ad SIZE (1df75a13c2f52ee275b6f95be87a02a474e3386f.patch) = 4837 Modified: head/devel/folly/pkg-plist ============================================================================== --- head/devel/folly/pkg-plist Thu Jun 20 03:31:56 2019 (r504614) +++ head/devel/folly/pkg-plist Thu Jun 20 03:41:14 2019 (r504615) @@ -481,6 +481,8 @@ include/folly/memory/Arena.h include/folly/memory/EnableSharedFromThis.h include/folly/memory/MallctlHelper.h include/folly/memory/Malloc.h +include/folly/memory/MemoryResource.h +include/folly/memory/SanitizeLeak.h include/folly/memory/ThreadCachedArena.h include/folly/memory/UninitializedMemoryHacks.h include/folly/memory/detail/MallocImpl.h From owner-svn-ports-all@freebsd.org Thu Jun 20 04:34:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0FAC15D3977; Thu, 20 Jun 2019 04:34:12 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5804B6A795; Thu, 20 Jun 2019 04:34:12 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 32A896F6A; Thu, 20 Jun 2019 04:34:12 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K4YBRv007361; Thu, 20 Jun 2019 04:34:11 GMT (envelope-from meta@FreeBSD.org) Received: (from meta@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K4YAg6007354; Thu, 20 Jun 2019 04:34:10 GMT (envelope-from meta@FreeBSD.org) Message-Id: <201906200434.x5K4YAg6007354@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: meta set sender to meta@FreeBSD.org using -f From: Koichiro Iwao Date: Thu, 20 Jun 2019 04:34:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504616 - in head/finance/quickfix: . files X-SVN-Group: ports-head X-SVN-Commit-Author: meta X-SVN-Commit-Paths: in head/finance/quickfix: . files X-SVN-Commit-Revision: 504616 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5804B6A795 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.96)[-0.958,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 04:34:13 -0000 Author: meta Date: Thu Jun 20 04:34:10 2019 New Revision: 504616 URL: https://svnweb.freebsd.org/changeset/ports/504616 Log: finance/quickfix: Update to 1.15.1 - Remove MAKE_JOBS_UNSAFE as it build paralelly now - Switch to GitHub PR: 238569 Submitted by: m.tsatsenko@gmail.com (maintainer) Added: head/finance/quickfix/files/patch-configure.ac (contents, props changed) head/finance/quickfix/files/patch-m4_ax__python.m4 (contents, props changed) head/finance/quickfix/files/patch-m4_ax__ruby.m4 (contents, props changed) head/finance/quickfix/files/patch-src_ruby_Makefile.am (contents, props changed) Deleted: head/finance/quickfix/files/patch-configure head/finance/quickfix/files/patch-src-python-Makefile.in head/finance/quickfix/files/patch-src-ruby-Makefile.in Modified: head/finance/quickfix/Makefile head/finance/quickfix/distinfo head/finance/quickfix/pkg-plist Modified: head/finance/quickfix/Makefile ============================================================================== --- head/finance/quickfix/Makefile Thu Jun 20 03:41:14 2019 (r504615) +++ head/finance/quickfix/Makefile Thu Jun 20 04:34:10 2019 (r504616) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= quickfix -PORTVERSION= 1.14.3 +PORTVERSION= 1.15.1 CATEGORIES= finance devel -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} MAINTAINER= m.tsatsenko@gmail.com COMMENT= Free FIX Protocol Implementation @@ -15,14 +14,17 @@ BROKEN_powerpc64= fails to configure: unable to find s BUILD_DEPENDS= bash:shells/bash -USES= gmake iconv libtool shebangfix ssl +USES= gmake iconv libtool autoreconf shebangfix ssl + +USE_GITHUB= yes +GH_TAGNAME= v1.15.1 + USE_GNOME= libxml2 USE_LDCONFIG= yes SHEBANG_FILES= examples/tradeclientgui/banzai/build.sh HAS_CONFIGURE= yes CONFIGURE_ENV= CXX=${CXX} CC=${CC} LIBS=-L${LOCALBASE}/lib/ -WRKSRC= ${WRKDIR}/${PORTNAME} -MAKE_JOBS_UNSAFE=yes +CONFIGURE_ARGS+= --without-python --without-python3 OPTIONS_DEFINE= MYSQL PGSQL PYTHON RUBY JAVA OPTIONS_DEFAULT= MYSQL @@ -31,10 +33,11 @@ PGSQL_USES= pgsql PGSQL_CONFIGURE_WITH= postgresql MYSQL_USES= mysql MYSQL_CONFIGURE_WITH= mysql -PYTHON_USES= python -PYTHON_CONFIGURE_WITH= python +PYTHON_USES= python:2.7 +PYTHON_CONFIGURE_WITH= python2 RUBY_USE= ruby=yes RUBY_CONFIGURE_WITH= ruby +RUBY_LIB_DEPENDS+=libunwind.so:devel/libunwind JAVA_USE= java=yes JAVA_CONFIGURE_WITH= java @@ -45,12 +48,14 @@ post-extract: ${WRKSRC}/src/ruby/make_ruby.sh @${REINPLACE_CMD} -e 's|CXX = g++|CXX = ${CXX}|' \ ${WRKSRC}/UnitTest++/Makefile +pre-configure: + cd ${WRKSRC} && ${sh} ${WRKSRC}/bootstrap @${REINPLACE_CMD} -e 's|pkgconfdir = .*|pkgconfdir=${LOCALBASE}/libdata/pkgconfig|' \ ${WRKSRC}/Makefile.in -post-configure: +pre-build: ${GMAKE} -C ${WRKSRC}/UnitTest++ TestUnitTest++ post-install-RUBY-on: - ${STRIP_CMD} ${STAGEDIR}${RUBY_SITELIBDIR}/quickfix.so + ${STRIP_CMD} ${STAGEDIR}${RUBY_SITEARCHLIBDIR}/quickfix.so .include Modified: head/finance/quickfix/distinfo ============================================================================== --- head/finance/quickfix/distinfo Thu Jun 20 03:41:14 2019 (r504615) +++ head/finance/quickfix/distinfo Thu Jun 20 04:34:10 2019 (r504616) @@ -1,3 +1,3 @@ -TIMESTAMP = 1519587218 -SHA256 (quickfix-1.14.3.tar.gz) = f6e8bdb004eaf45e50f63005b8c2611cb0afd42cf70f110f600c852aa572342d -SIZE (quickfix-1.14.3.tar.gz) = 21803784 +TIMESTAMP = 1560234014 +SHA256 (quickfix-quickfix-1.15.1-v1.15.1_GH0.tar.gz) = 1c4322a68704526ca3d1f213e7b0dcd30e067a8815be2a79b2ab1197ef70dcf7 +SIZE (quickfix-quickfix-1.15.1-v1.15.1_GH0.tar.gz) = 15919362 Added: head/finance/quickfix/files/patch-configure.ac ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/quickfix/files/patch-configure.ac Thu Jun 20 04:34:10 2019 (r504616) @@ -0,0 +1,11 @@ +--- configure.ac.orig 2019-06-11 07:14:11 UTC ++++ configure.ac +@@ -198,7 +198,7 @@ AC_TRY_COMPILE( + [#include ], + [timeb tb; + ftime(&tb)], +- has_ftime=true, has_ftime=false) ++ has_ftime=false, has_ftime=false) + + if test $has_ftime = true + then AC_MSG_RESULT(yes) Added: head/finance/quickfix/files/patch-m4_ax__python.m4 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/quickfix/files/patch-m4_ax__python.m4 Thu Jun 20 04:34:10 2019 (r504616) @@ -0,0 +1,43 @@ +--- m4/ax_python.m4.orig 2018-04-16 02:40:31 UTC ++++ m4/ax_python.m4 +@@ -18,10 +18,13 @@ AC_ARG_WITH(python2, + has_python3=false + AC_ARG_WITH(python3, + [ --with-python3 will use $PYTHON to find python], +- [ ++ [if test $withval == "no" ++ then ++ has_python3=false ++ else + has_python=true + has_python3=true +- ], ++ fi], + has_python3=false + ) + +@@ -44,20 +47,20 @@ AC_SUBST(PYTHON3_PREFIX) + + if test $has_python2 = true + then +- PYTHON2_INCLUDE_PATH=[`python2 -c 'from distutils import sysconfig; print( sysconfig.get_python_inc(1) )'`] ++ PYTHON2_INCLUDE_PATH=[`python2.7 -c 'from distutils import sysconfig; print( sysconfig.get_python_inc(1) )'`] + PYTHON2_CFLAGS="-I${PYTHON2_INCLUDE_PATH}" + AC_SUBST(PYTHON2_CFLAGS) +- PYTHON2_SITE_PACKAGES=[`python2 -c 'from distutils import sysconfig; print( sysconfig.get_python_lib(1) )'`] ++ PYTHON2_SITE_PACKAGES=[`python2.7 -c 'from distutils import sysconfig; print( sysconfig.get_python_lib(1) )'`] + AC_SUBST(PYTHON2_SITE_PACKAGES) + AC_DEFINE(HAVE_PYTHON2, 1, Define if you have python2) + fi + + if test $has_python3 = true + then +- PYTHON3_INCLUDE_PATH=[`python3 -c 'from distutils import sysconfig; print( sysconfig.get_python_inc(1) )'`] ++ PYTHON3_INCLUDE_PATH=[`python3.6 -c 'from distutils import sysconfig; print( sysconfig.get_python_inc(1) )'`] + PYTHON3_CFLAGS="-I${PYTHON3_INCLUDE_PATH}" + AC_SUBST(PYTHON3_CFLAGS) +- PYTHON3_SITE_PACKAGES=[`python3 -c 'from distutils import sysconfig; print( sysconfig.get_python_lib(1) )'`] ++ PYTHON3_SITE_PACKAGES=[`python3.6 -c 'from distutils import sysconfig; print( sysconfig.get_python_lib(1) )'`] + AC_SUBST(PYTHON3_SITE_PACKAGES) + AC_DEFINE(HAVE_PYTHON3, 1, Define if you have python3) + fi Added: head/finance/quickfix/files/patch-m4_ax__ruby.m4 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/quickfix/files/patch-m4_ax__ruby.m4 Thu Jun 20 04:34:10 2019 (r504616) @@ -0,0 +1,20 @@ +--- m4/ax_ruby.m4.orig 2018-04-16 02:40:31 UTC ++++ m4/ax_ruby.m4 +@@ -2,7 +2,7 @@ AC_DEFUN([AX_RUBY], + [ + RUBY=${RUBY:-"ruby"} + +-RUBY_PREFIX=[`$RUBY -e 'require "rbconfig"; print Config::CONFIG["archdir"], "\n"'`] ++RUBY_PREFIX=[`$RUBY -e 'require "rbconfig"; print RbConfig::CONFIG["archdir"], "\n"'`] + AC_SUBST(RUBY_PREFIX) + + has_ruby=false +@@ -21,7 +21,7 @@ if test $has_ruby = true + then + RUBY_CFLAGS="-I${RUBY_PREFIX}" + AC_SUBST(RUBY_CFLAGS) +- RUBY_SITE_PACKAGES=[`ruby -e 'require "rbconfig"; print Config::CONFIG["sitedir"], "\n"'`] ++ RUBY_SITE_PACKAGES=[`ruby -e 'require "rbconfig"; print RbConfig::CONFIG["sitearchdir"], "\n"'`] + AC_SUBST(RUBY_SITE_PACKAGES) + AC_DEFINE(HAVE_RUBY, 1, Define if you have ruby) + fi Added: head/finance/quickfix/files/patch-src_ruby_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/quickfix/files/patch-src_ruby_Makefile.am Thu Jun 20 04:34:10 2019 (r504616) @@ -0,0 +1,16 @@ +--- src/ruby/Makefile.am.orig 2018-04-16 02:40:31 UTC ++++ src/ruby/Makefile.am +@@ -16,9 +16,10 @@ clean-local: + rm -rf $(local_ruby_lib) + + install-exec-local: +- cp -f $(top_builddir)/lib/ruby/*.rb $(RUBY_SITE_PACKAGES) +- cp -f $(top_builddir)/lib/ruby/quickfix.so $(RUBY_SITE_PACKAGES) || : +- cp -f $(top_builddir)/lib/ruby/quickfix.bundle $(RUBY_SITE_PACKAGES) || : ++ $(MKDIR_P) "$(DESTDIR)$(RUBY_SITE_PACKAGES)" ++ cp -f $(top_builddir)/lib/ruby/*.rb "$(DESTDIR)$(RUBY_SITE_PACKAGES)" ++ cp -f $(top_builddir)/lib/ruby/quickfix.so "$(DESTDIR)$(RUBY_SITE_PACKAGES)" || : ++ cp -f $(top_builddir)/lib/ruby/quickfix.bundle "$(DESTDIR)$(RUBY_SITE_PACKAGES)" || : + + uninstall-local: + rm -rf $(RUBY_SITE_PACKAGES)/quickfix*.rb Modified: head/finance/quickfix/pkg-plist ============================================================================== --- head/finance/quickfix/pkg-plist Thu Jun 20 03:41:14 2019 (r504615) +++ head/finance/quickfix/pkg-plist Thu Jun 20 04:34:10 2019 (r504616) @@ -42,13 +42,16 @@ include/quickfix/NullStore.h include/quickfix/OdbcConnection.h include/quickfix/OdbcLog.h include/quickfix/OdbcStore.h +include/quickfix/PUGIXML_DOMDocument.h include/quickfix/Parser.h include/quickfix/PostgreSQLConnection.h include/quickfix/PostgreSQLLog.h include/quickfix/PostgreSQLStore.h -include/quickfix/PUGIXML_DOMDocument.h include/quickfix/Queue.h include/quickfix/Responder.h +include/quickfix/SSLSocketAcceptor.h +include/quickfix/SSLSocketConnection.h +include/quickfix/SSLSocketInitiator.h include/quickfix/Session.h include/quickfix/SessionFactory.h include/quickfix/SessionID.h @@ -62,12 +65,18 @@ include/quickfix/SocketConnector.h include/quickfix/SocketInitiator.h include/quickfix/SocketMonitor.h include/quickfix/SocketServer.h +include/quickfix/ThreadedSSLSocketAcceptor.h +include/quickfix/ThreadedSSLSocketConnection.h +include/quickfix/ThreadedSSLSocketInitiator.h include/quickfix/ThreadedSocketAcceptor.h include/quickfix/ThreadedSocketConnection.h include/quickfix/ThreadedSocketInitiator.h include/quickfix/TimeRange.h include/quickfix/Utility.h +include/quickfix/UtilitySSL.h include/quickfix/Values.h +include/quickfix/config-all.h +include/quickfix/dirent_windows.h include/quickfix/fix40/Advertisement.h include/quickfix/fix40/Allocation.h include/quickfix/fix40/AllocationInstructionAck.h @@ -663,14 +672,16 @@ include/quickfix/fixt11/SequenceReset.h include/quickfix/fixt11/TestRequest.h include/quickfix/index.h include/quickfix/stdafx.h +include/quickfix/stdint_msvc.h include/quickfix/strptime.h +include/quickfix/wx/sharedptr.h lib/libquickfix.so -lib/libquickfix.so.16 -lib/libquickfix.so.16.0.1 +lib/libquickfix.so.17 +lib/libquickfix.so.17.0.0 libdata/pkgconfig/quickfix.pc %%PYTHON%%%%PYTHON_SITELIBDIR%%/_quickfix.so -%%PYTHON%%%%PYTHON_SITELIBDIR%%/_quickfix.so.12 -%%PYTHON%%%%PYTHON_SITELIBDIR%%/_quickfix.so.12.0.0 +%%PYTHON%%%%PYTHON_SITELIBDIR%%/_quickfix.so.13 +%%PYTHON%%%%PYTHON_SITELIBDIR%%/_quickfix.so.13.0.0 %%PYTHON%%%%PYTHON_SITELIBDIR%%/quickfix.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/quickfix40.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/quickfix41.py @@ -681,29 +692,18 @@ libdata/pkgconfig/quickfix.pc %%PYTHON%%%%PYTHON_SITELIBDIR%%/quickfix50sp1.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/quickfix50sp2.py %%PYTHON%%%%PYTHON_SITELIBDIR%%/quickfixt11.py -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfix_fields.rb -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfix40.rb -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfix_ruby.rb -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfix50sp1.rb -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfix50.rb -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfix50sp2.rb -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfix43.rb -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfix.so -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfix41.rb -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfix42.rb -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfix44.rb -%%RUBY%%%%RUBY_SITELIBDIR%%/quickfixt11.rb -%%RUBY%%%%DATADIR%%/quickfix_fields.rb -%%RUBY%%%%DATADIR%%/quickfix40.rb -%%RUBY%%%%DATADIR%%/quickfix_ruby.rb -%%RUBY%%%%DATADIR%%/quickfix50sp1.rb -%%RUBY%%%%DATADIR%%/quickfix50.rb -%%RUBY%%%%DATADIR%%/quickfix50sp2.rb -%%RUBY%%%%DATADIR%%/quickfix43.rb -%%RUBY%%%%DATADIR%%/quickfix41.rb -%%RUBY%%%%DATADIR%%/quickfix42.rb -%%RUBY%%%%DATADIR%%/quickfix44.rb -%%RUBY%%%%DATADIR%%/quickfixt11.rb +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfix.so +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfix40.rb +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfix41.rb +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfix42.rb +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfix43.rb +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfix44.rb +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfix50.rb +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfix50sp1.rb +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfix50sp2.rb +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfix_fields.rb +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfix_ruby.rb +%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/quickfixt11.rb %%DATADIR%%/FIX40.xml %%DATADIR%%/FIX41.xml %%DATADIR%%/FIX42.xml @@ -713,3 +713,14 @@ libdata/pkgconfig/quickfix.pc %%DATADIR%%/FIX50SP1.xml %%DATADIR%%/FIX50SP2.xml %%DATADIR%%/FIXT11.xml +%%RUBY%%%%DATADIR%%/quickfix40.rb +%%RUBY%%%%DATADIR%%/quickfix41.rb +%%RUBY%%%%DATADIR%%/quickfix42.rb +%%RUBY%%%%DATADIR%%/quickfix43.rb +%%RUBY%%%%DATADIR%%/quickfix44.rb +%%RUBY%%%%DATADIR%%/quickfix50.rb +%%RUBY%%%%DATADIR%%/quickfix50sp1.rb +%%RUBY%%%%DATADIR%%/quickfix50sp2.rb +%%RUBY%%%%DATADIR%%/quickfix_fields.rb +%%RUBY%%%%DATADIR%%/quickfix_ruby.rb +%%RUBY%%%%DATADIR%%/quickfixt11.rb From owner-svn-ports-all@freebsd.org Thu Jun 20 05:20:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5043315D43ED; Thu, 20 Jun 2019 05:20:27 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EB0006B9D4; Thu, 20 Jun 2019 05:20:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BE3C27614; Thu, 20 Jun 2019 05:20:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K5KQH8028337; Thu, 20 Jun 2019 05:20:26 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K5KQah028336; Thu, 20 Jun 2019 05:20:26 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906200520.x5K5KQah028336@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 05:20:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504617 - head/devel/folly X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/folly X-SVN-Commit-Revision: 504617 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EB0006B9D4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 05:20:27 -0000 Author: yuri Date: Thu Jun 20 05:20:26 2019 New Revision: 504617 URL: https://svnweb.freebsd.org/changeset/ports/504617 Log: devel/folly: Broken on 13 due to clang crashes Modified: head/devel/folly/Makefile Modified: head/devel/folly/Makefile ============================================================================== --- head/devel/folly/Makefile Thu Jun 20 04:34:10 2019 (r504616) +++ head/devel/folly/Makefile Thu Jun 20 05:20:26 2019 (r504617) @@ -15,6 +15,7 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_i386= error: use of undeclared identifier 'DCHECK': https://github.com/facebook/folly/issues/1168 +BROKEN_FreeBSD_13= clang crashes: https://bugs.llvm.org/show_bug.cgi?id=42338 LIB_DEPENDS= libboost_atomic.so:devel/boost-libs \ libdouble-conversion.so:devel/double-conversion \ From owner-svn-ports-all@freebsd.org Thu Jun 20 07:07:56 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A907415D5C06; Thu, 20 Jun 2019 07:07:56 +0000 (UTC) (envelope-from mfechner@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3BC706E27A; Thu, 20 Jun 2019 07:07:56 +0000 (UTC) (envelope-from mfechner@freebsd.org) Received: from [IPv6:2a01:5c0:e08b:4821:bce8:581f:fe9f:e227] (unknown [IPv6:2a01:5c0:e08b:4821:bce8:581f:fe9f:e227]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: mfechner) by smtp.freebsd.org (Postfix) with ESMTPSA id 87C4C28CA1; Thu, 20 Jun 2019 07:07:55 +0000 (UTC) (envelope-from mfechner@freebsd.org) Subject: Re: svn commit: r504575 - head/textproc/rubygem-asciidoctor-plantuml To: Sunpoet Po-Chuan Hsieh , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201906191654.x5JGsAMB035683@repo.freebsd.org> From: Matthias Fechner Openpgp: preference=signencrypt Autocrypt: addr=mfechner@freebsd.org; prefer-encrypt=mutual; keydata= mQINBFqca1YBEADM9mF2+ifk8HILTlf5wtAzV6SYVR4RvNOo/8Kucw4sCZT76zS1fjZe4Zy1 3C0IZ07Wi+3PnoGIgOCsXp3PrTc2nuHQWkwVBYXy8UaR9DHBWA/mIvRGG1ZscKQYA6oUdCvd K8Mu26zO60yTt+ONzFtK6G1myH4EHXZ8dpmdCFf+W3rzTU+aCQ5S3OfwCLGgYgOaVREGkdOc 5SVCpFb4n+2B8+CqeWsRHhnT+4h7/YhgDMGp4GiI3yrB2nBVSUUvcosD2nRtJQgGQHcAFtMq 3hJaKPOR/mHc6KVrp0xmGNmdtazvXloHmGIl9O1UpmMmrYu9Kugl0JkGi2fAcno02XgVlkyX 7xDLTteP5cNqRxor4yVDaRWUQnOfK9XgcrKGrAzb65BkCSkjT+Aw3S/A8Qd6NvjL9qy1d+Ct dzatOVF/Y7jaW28CMr3jvwPS13OxV7PnJzIZzdik20eVxfOXuYfxZD+PwBaGgFF0qj6zKACC aKLalE0ZpY0zNn/iPyQX/Cf9KoDyFpOHSsEswiJ5rCWwppVcsFyogHOemVmeaXlvyDPEipnV ZUkpGP/CCqPu3eD0uDzP7UJ0pt/l/JfW0Xw/4p9mjB024xiRlxLa6vSRfGl//EdtAIbKKa8x 5wsKTQEbYJDmXE3tH/A54DCqRXhcopTlu2iJlTdnIMltn9afVwARAQABtCdNYXR0aGlhcyBG ZWNobmVyIDxtZmVjaG5lckBmcmVlYnNkLm9yZz6JAlQEEwEKAD4WIQRpYHriYKnzThg62q62 i3Xcn9dH4QUCXDNH/AIbAwUJCWYBgAULCQgHAwUVCgkICwUWAwIBAAIeAQIXgAAKCRC2i3Xc n9dH4W2ED/9rovvF0wEHCSuxn8W5s5qhe9RbvCeBEDuyHsEDMDg6Rg+1T3l/I27AJYIrVGz2 cLvLOWuDZXqZ0Pl5YGK2rOoFx5PMVU4PqP+zmpy4OFjC8fgukYD4L4rsgzTlpC0Aw9kP5/zJ 3clVtr+NY3ETRSsx5NaOOs5WqAM9SvYLzlqnTMxag3N3RvKoGYBm8ykjYc0aJ2qDH4adzeRS ZuS2h5lHPw9sQ/PjZsfaVx2sM52oy6ZmymFqefACGvWmjGAppTSP5ZrKkwDOchpoLEiqk4EO IgR0Uj+e82722mNK33owZ2PFA7HXPa7/JxU+b4liIv/L/zkEKhg55HjeWU+ZysmFcO9Tbym8 qtxN1Iw1zov/nWDZZtwJ4ZlNK+pO1taY+cxpyrrZrlQimoZbkli7WoLyNt1f3bU6OikNyPn7 YNJL0NTRe80DeU+v+MDNJUjcWlq29mAgePN6bSS3IJMB60etWU7bsDt8864FGsabR/QxuX63 +IaPEKJV+DNIA1BV8BAKB48PI0iwS/exVKLL5yGFhZi0H3UPwHwYpH4vd6tUJo6HhbDlpZvX azsD4qF/DGlxbxHaEzdXT8Tmoc/TztEMbb0ypHdnNjuxl4N20YpCu/8YxIESYBL6jX8bo5rF PeHRLa3ryVXbaqebLuenhFS9OSLIke67qUK8iqrQkycrjrkCDQRanGtWARAA3e4IsdkX7VWB yvNiPAvXAAnCNhvtSccq81h1oEqBbSfQ1N9pMIsfEdg87w2VXX6U1y1J5ct6JamYTWUIMer/ 77ncQnfg6xF3+fbjo9218h+W0wvve2yarpL3NPJ7bO/suyYTuOBQFpqxu/SpItLJs5S+RHGP fEG4r1iaD9ldoQ06HHAhDqhCg0uDd6uz23leXg1UrqDPNnY51Mae5RWFCaLits/ThHQYkWEC 0YsBhQLGVdVmF08CziplqgAQ/mdb+7YzLNJoii7BwQh220CI9l2smv5rg4YrPzxKfrOopJq7 JQAOBf4by0pQ42Blt/PhJJG+WKc6DJTZHLJ81L3vuv9h9ocf6gDGDfXJRY+0P+vJ9XDr1sa8 rxFCtn35zW/JYEAGhA6Hn4kdb8AT1ePl1Bq0R9aYY7f78VGjZMiGplBdeXw9b6O0SOSGA4c5 RfkRHNKbqcJw8jD4tSQQg1wtz1vDh+/V45Yh0G4JyQYzitZeQthuqF1LN1Z4KwLS2JCTzHs7 XNdEk4oXishMl3+pffbYQfb0FH5P1XUfDssNJF77djG2heFE5lFeMXxCeIQd4pU1FQKiavqt Yaa4eOw1NDu3C3CcbzFI58KRgCn0atvMGQhhf5UW8VAupUz4i3dECWB79vClk++SvdsWwmTg lL4QC6AEis/TF30Ew6HoSPkAEQEAAYkCPAQYAQoAJhYhBGlgeuJgqfNOGDrarraLddyf10fh BQJanGtWAhsMBQkJZgGAAAoJELaLddyf10fhlmwQAKhAjXT2G2mFV7YBCEnvC4+jykitIUDQ xvSl+Jtf+xjDxlnP/Hdy1MjcCOrZtpJqh5si5TJ3qg8jtwDOAvizbMeJncKEfZ0PEmU49+Q5 qIrXbgMkw+paJa7F7f22Crbe2w+HBy8X4ML5KQmgtYoJg0LTp9LdsuS1nSziVUTm2p8vnDAy /GDEH7r6xYfBlZK/UjAH+B6i/rOQSFV2ReqsY8TnYvIt9TQAIyaKFyXT+emwIxlKWzS6uB4K w8y4c9CeZwzYRFt6t7yL050pAPMYGtNtaX0PE1F/ij5wBiKsQkzcpz5kPZITfhtNK+DeR1BB lBuP6j4FFyxHQtoZs5GQ1oxmWnk65e14vqcbuxsA+fRuNRSW6nwIkRcNcQ0boskbX+hVYWqb c60/KvlSgxAC6G4bHT86boBcqv+aT6966gpYxeSqWXTjn9tgTttfYDSCTIYTkN2NqIc+ZL02 xa4oN4TEuVdk4vUZf48qNYsAPCW/TtccHwd/pTT+Wl/f+aCBG2ofIpse3SJGphowL3mBV0yt u6DGHrVT/PEhrB5TtWiUPlxGuW3Go+nmzM7APPDjYljBulixcUlc2S4IYKYrUsdxKF8SCC19 XeD8krO81FCfqnV/R+ummX95nlS9ZUqs0REnNxmCQ55zHCIr8v8mgakZ9Y6pYaxPF78CdBxf GPwP Message-ID: Date: Thu, 20 Jun 2019 09:07:43 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.7.1 MIME-Version: 1.0 In-Reply-To: <201906191654.x5JGsAMB035683@repo.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="j7hypqnQ8X0FSNesOdAVNp7zmEaRvvj4b" X-Rspamd-Queue-Id: 3BC706E27A X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.95 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.96)[-0.956,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 07:07:56 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --j7hypqnQ8X0FSNesOdAVNp7zmEaRvvj4b Content-Type: multipart/mixed; boundary="pjq0vZrV3mOfY3118e8WG9BBim0D3FRbB"; protected-headers="v1" From: Matthias Fechner To: Sunpoet Po-Chuan Hsieh , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: Subject: Re: svn commit: r504575 - head/textproc/rubygem-asciidoctor-plantuml References: <201906191654.x5JGsAMB035683@repo.freebsd.org> In-Reply-To: <201906191654.x5JGsAMB035683@repo.freebsd.org> --pjq0vZrV3mOfY3118e8WG9BBim0D3FRbB Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Language: de-DE Dear Sunpoet, Am 19.06.2019 um 18:54 schrieb Sunpoet Po-Chuan Hsieh: > Log: > Update to 0.0.9 > =20 > Changes: https://github.com/hsanson/asciidoctor-plantuml/commits/mast= er > > Modified: > head/textproc/rubygem-asciidoctor-plantuml/Makefile > head/textproc/rubygem-asciidoctor-plantuml/distinfo this has broken www/gitlab-ce. I have the next day no time to look into it, could you please fix it? Thanks. Gru=C3=9F Matthias --=20 "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning." -- Rich Cook --pjq0vZrV3mOfY3118e8WG9BBim0D3FRbB-- --j7hypqnQ8X0FSNesOdAVNp7zmEaRvvj4b Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJdCzDIAAoJELaLddyf10fhb3gQAMB11PVDQWxkjRxdpAN97WzE 02FBSatAvG7IrNuYVO/Nw2R+6CHqPI214TC/XDcLr913TQymgRvBFDBz6hNwNcJ1 i7dfN7w/Ol2aOchTCFlyULtlKjuLBtmWwmS0dtyCzJXB50r+gIACEYOfv9lNZZzp +1FWZumt2yXVtqmvsiOifcHo9wLpasOYexdaZ/56Df42uAWurN0EXpgKzKcna9sH CsxQt7T4yXD3klxMi720UckyGRP8PdqFJxryJOkKyCMBUkMtvITjfUBRfWyXfHOm UTZ19+J7aG8BT7yloEDzxEmSy0rMxhieI5hPJQkidoOa/AZPgGxUQ8A3xVKPiTa5 9W0Tr990Vyz8E3N55vr5dsnmzvsbsDMDFvo9ZR05rG0SXSgA07DJHOxRDODDw7Kl KOVvN2p5NXNaZHooi4Q3aN/+OjE0FLuzGkr1oZENEsVbRDKBPBmzYxfMqaPuo2jv NmfjNN5rBb2tvVsAU/ZBrHlAEOh4P6w6jF/eLzQ3SGjdIqkOQtc3Pp2cJKC2V9Ge WG+6WB9+7b/Fk8Xl5OAdqGLBL3tKUlrR1at7vDJL5dnGWuEzcpbFKb+1bAh8ZS+Y w+r3TjmbPw1X/OExQdevDdNhUkvPmKMMQ3EFTnjvKyeKDMi+yBfpsgcUecBeGJ6z WlcRQHgVy5boITkm+ETX =WRIv -----END PGP SIGNATURE----- --j7hypqnQ8X0FSNesOdAVNp7zmEaRvvj4b-- From owner-svn-ports-all@freebsd.org Thu Jun 20 07:12:44 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54D5F15D5DD1; Thu, 20 Jun 2019 07:12:44 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ECDA56E637; Thu, 20 Jun 2019 07:12:43 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CA20289F0; Thu, 20 Jun 2019 07:12:43 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K7ChL8090429; Thu, 20 Jun 2019 07:12:43 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K7Cfw9090417; Thu, 20 Jun 2019 07:12:41 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906200712.x5K7Cfw9090417@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 20 Jun 2019 07:12:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504618 - in head: comms/dsd deskutils/qlipper finance/quickfix games/devilutionX java/eclipse security/lua-bcrypt X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head: comms/dsd deskutils/qlipper finance/quickfix games/devilutionX java/eclipse security/lua-bcrypt X-SVN-Commit-Revision: 504618 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: ECDA56E637 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.96)[-0.958,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 07:12:44 -0000 Author: mat Date: Thu Jun 20 07:12:41 2019 New Revision: 504618 URL: https://svnweb.freebsd.org/changeset/ports/504618 Log: Regular USE_GITHUB cleanup. Modified: head/comms/dsd/Makefile (contents, props changed) head/comms/dsd/distinfo (contents, props changed) head/deskutils/qlipper/Makefile (contents, props changed) head/finance/quickfix/Makefile (contents, props changed) head/finance/quickfix/distinfo (contents, props changed) head/games/devilutionX/Makefile (contents, props changed) head/java/eclipse/Makefile (contents, props changed) head/security/lua-bcrypt/Makefile (contents, props changed) head/security/lua-bcrypt/distinfo (contents, props changed) Modified: head/comms/dsd/Makefile ============================================================================== --- head/comms/dsd/Makefile Thu Jun 20 05:20:26 2019 (r504617) +++ head/comms/dsd/Makefile Thu Jun 20 07:12:41 2019 (r504618) @@ -2,6 +2,7 @@ PORTNAME= dsd PORTVERSION= 1.6.0 +DISTVERSIONPREFIX= v CATEGORIES= comms hamradio MAINTAINER= takefu@airport.fm @@ -13,7 +14,6 @@ LIB_DEPENDS= libmbe.so:comms/mbelib USE_GITHUB= yes GH_ACCOUNT= szechyjs -GH_TAGNAME= v${PORTVERSION} USE_LDCONFIG= yes PLIST_FILES= "@(,uucp,4555) bin/dsd" Modified: head/comms/dsd/distinfo ============================================================================== --- head/comms/dsd/distinfo Thu Jun 20 05:20:26 2019 (r504617) +++ head/comms/dsd/distinfo Thu Jun 20 07:12:41 2019 (r504618) @@ -1,3 +1,3 @@ -TIMESTAMP = 1486712916 -SHA256 (szechyjs-dsd-1.6.0-v1.6.0_GH0.tar.gz) = 44fa3ae108d2c11b4b67388d37fc6a63e8b44fc72fdd5db7b57d9eb045a9df58 -SIZE (szechyjs-dsd-1.6.0-v1.6.0_GH0.tar.gz) = 40959 +TIMESTAMP = 1561014537 +SHA256 (szechyjs-dsd-v1.6.0_GH0.tar.gz) = 44fa3ae108d2c11b4b67388d37fc6a63e8b44fc72fdd5db7b57d9eb045a9df58 +SIZE (szechyjs-dsd-v1.6.0_GH0.tar.gz) = 40959 Modified: head/deskutils/qlipper/Makefile ============================================================================== --- head/deskutils/qlipper/Makefile Thu Jun 20 05:20:26 2019 (r504617) +++ head/deskutils/qlipper/Makefile Thu Jun 20 07:12:41 2019 (r504618) @@ -15,7 +15,6 @@ USES= cmake compiler:c++11-lang gettext qt:5 USE_GITHUB= yes GH_ACCOUNT= pvanek -GH_TAGNAME= 5.1.1 OPTIONS_DEFINE= LXQTAUTOSTART OPTIONS_DEFAULT=LXQTAUTOSTART Modified: head/finance/quickfix/Makefile ============================================================================== --- head/finance/quickfix/Makefile Thu Jun 20 05:20:26 2019 (r504617) +++ head/finance/quickfix/Makefile Thu Jun 20 07:12:41 2019 (r504618) @@ -3,6 +3,7 @@ PORTNAME= quickfix PORTVERSION= 1.15.1 +DISTVERSIONPREFIX= v CATEGORIES= finance devel MAINTAINER= m.tsatsenko@gmail.com @@ -17,7 +18,6 @@ BUILD_DEPENDS= bash:shells/bash USES= gmake iconv libtool autoreconf shebangfix ssl USE_GITHUB= yes -GH_TAGNAME= v1.15.1 USE_GNOME= libxml2 USE_LDCONFIG= yes Modified: head/finance/quickfix/distinfo ============================================================================== --- head/finance/quickfix/distinfo Thu Jun 20 05:20:26 2019 (r504617) +++ head/finance/quickfix/distinfo Thu Jun 20 07:12:41 2019 (r504618) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560234014 -SHA256 (quickfix-quickfix-1.15.1-v1.15.1_GH0.tar.gz) = 1c4322a68704526ca3d1f213e7b0dcd30e067a8815be2a79b2ab1197ef70dcf7 -SIZE (quickfix-quickfix-1.15.1-v1.15.1_GH0.tar.gz) = 15919362 +TIMESTAMP = 1561013925 +SHA256 (quickfix-quickfix-v1.15.1_GH0.tar.gz) = 1c4322a68704526ca3d1f213e7b0dcd30e067a8815be2a79b2ab1197ef70dcf7 +SIZE (quickfix-quickfix-v1.15.1_GH0.tar.gz) = 15919362 Modified: head/games/devilutionX/Makefile ============================================================================== --- head/games/devilutionX/Makefile Thu Jun 20 05:20:26 2019 (r504617) +++ head/games/devilutionX/Makefile Thu Jun 20 07:12:41 2019 (r504618) @@ -23,7 +23,6 @@ PLIST_FILES= bin/devilutionx USE_GITHUB= yes GH_ACCOUNT= diasurgical GH_PROJECT= devilutionX -GH_TAGNAME= ${PORTVERSION} OPTIONS_DEFAULT= RELEASE Modified: head/java/eclipse/Makefile ============================================================================== --- head/java/eclipse/Makefile Thu Jun 20 05:20:26 2019 (r504617) +++ head/java/eclipse/Makefile Thu Jun 20 07:12:41 2019 (r504618) @@ -60,7 +60,6 @@ USE_GNOME= gtk30 USE_GITHUB= yes GH_ACCOUNT= daemonblade GH_PROJECT= eclipse-maven-repo -GH_TAGNAME= ${PORTVERSION} USE_JAVA= yes JAVA_VERSION= 1.8 Modified: head/security/lua-bcrypt/Makefile ============================================================================== --- head/security/lua-bcrypt/Makefile Thu Jun 20 05:20:26 2019 (r504617) +++ head/security/lua-bcrypt/Makefile Thu Jun 20 07:12:41 2019 (r504618) @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= bcrypt +DISTVERSIONPREFIX= v DISTVERSION= 2.1-4 CATEGORIES= security PKGNAMEPREFIX= ${LUA_PKGNAMEPREFIX} @@ -15,7 +16,6 @@ USES= compiler:c11 gmake lua USE_GITHUB= yes GH_ACCOUNT= mikejsavage GH_PROJECT= lua-bcrypt -GH_TAGNAME= v2.1-4 PLIST_FILES= ${LUA_MODLIBDIR}/bcrypt.so Modified: head/security/lua-bcrypt/distinfo ============================================================================== --- head/security/lua-bcrypt/distinfo Thu Jun 20 05:20:26 2019 (r504617) +++ head/security/lua-bcrypt/distinfo Thu Jun 20 07:12:41 2019 (r504618) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559664407 -SHA256 (mikejsavage-lua-bcrypt-2.1-4-v2.1-4_GH0.tar.gz) = 60565f2d83f7b67b7d4c8a975b96d29873ce00b48efe10226c4bf008974c8373 -SIZE (mikejsavage-lua-bcrypt-2.1-4-v2.1-4_GH0.tar.gz) = 37985 +TIMESTAMP = 1561014297 +SHA256 (mikejsavage-lua-bcrypt-v2.1-4_GH0.tar.gz) = 60565f2d83f7b67b7d4c8a975b96d29873ce00b48efe10226c4bf008974c8373 +SIZE (mikejsavage-lua-bcrypt-v2.1-4_GH0.tar.gz) = 37985 From owner-svn-ports-all@freebsd.org Thu Jun 20 07:46:28 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7CFFA15D6783; Thu, 20 Jun 2019 07:46:28 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 208B56F62F; Thu, 20 Jun 2019 07:46:28 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 162028F0A; Thu, 20 Jun 2019 07:46:28 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K7kRII006412; Thu, 20 Jun 2019 07:46:27 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K7kRGl006411; Thu, 20 Jun 2019 07:46:27 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906200746.x5K7kRGl006411@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Thu, 20 Jun 2019 07:46:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504619 - head/www/radicale X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: head/www/radicale X-SVN-Commit-Revision: 504619 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 208B56F62F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 07:46:28 -0000 Author: mat Date: Thu Jun 20 07:46:27 2019 New Revision: 504619 URL: https://svnweb.freebsd.org/changeset/ports/504619 Log: Fixup make index WITH=HTTP. Modified: head/www/radicale/Makefile (contents, props changed) Modified: head/www/radicale/Makefile ============================================================================== --- head/www/radicale/Makefile Thu Jun 20 07:12:41 2019 (r504618) +++ head/www/radicale/Makefile Thu Jun 20 07:46:27 2019 (r504619) @@ -31,7 +31,8 @@ SUB_LIST= PYTHON_CMD="${PYTHON_CMD}" \ OPTIONS_DEFINE= HTTP LDAP HTTP_DESC= HTTP authentication support -HTTP_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests1>=0:www/py-requests1@${PY_FLAVOR} +#HTTP_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests1>=0:www/py-requests1@${PY_FLAVOR} +HTTP_BROKEN= www/py-requests1 does not exist any more LDAP_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ldap>=0:net/py-ldap@${PY_FLAVOR} post-patch: From owner-svn-ports-all@freebsd.org Thu Jun 20 07:56:41 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BC87615D6A72; Thu, 20 Jun 2019 07:56:41 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 603606FC51; Thu, 20 Jun 2019 07:56:41 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 37D3A90AD; Thu, 20 Jun 2019 07:56:41 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K7ufnI011986; Thu, 20 Jun 2019 07:56:41 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K7uf8d011985; Thu, 20 Jun 2019 07:56:41 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201906200756.x5K7uf8d011985@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 20 Jun 2019 07:56:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504620 - head/security/sssd X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/security/sssd X-SVN-Commit-Revision: 504620 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 603606FC51 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.95)[-0.954,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 07:56:41 -0000 Author: antoine Date: Thu Jun 20 07:56:40 2019 New Revision: 504620 URL: https://svnweb.freebsd.org/changeset/ports/504620 Log: Depend on legacy libs Reported by: pkg-fallout Modified: head/security/sssd/Makefile Modified: head/security/sssd/Makefile ============================================================================== --- head/security/sssd/Makefile Thu Jun 20 07:46:27 2019 (r504619) +++ head/security/sssd/Makefile Thu Jun 20 07:56:40 2019 (r504620) @@ -3,7 +3,7 @@ PORTNAME= sssd PORTVERSION= 1.11.7 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= security MASTER_SITES= https://releases.pagure.org/SSSD/${PORTNAME}/ @@ -14,9 +14,6 @@ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpopt.so:devel/popt \ - libtalloc.so:devel/talloc \ - libtevent.so:devel/tevent \ - libtdb.so:databases/tdb \ libldb.so:databases/ldb \ libcares.so:dns/c-ares \ libdbus-1.so:devel/dbus \ @@ -27,12 +24,18 @@ LIB_DEPENDS= libpopt.so:devel/popt \ libsasl2.so:security/cyrus-sasl2 \ libinotify.so:devel/libinotify \ libplds4.so:devel/nspr -BUILD_DEPENDS= xmlcatalog:textproc/libxml2 \ +BUILD_DEPENDS= talloc1>0:devel/talloc1 \ + tevent1>0:devel/tevent1 \ + tdb1>0:databases/tdb1 \ + xmlcatalog:textproc/libxml2 \ docbook-xsl>=1:textproc/docbook-xsl \ xsltproc:textproc/libxslt \ xmlcatmgr:textproc/xmlcatmgr \ krb5>=1.10:security/krb5 \ nsupdate:dns/bind-tools +RUN_DEPENDS= talloc1>0:devel/talloc1 \ + tevent1>0:devel/tevent1 \ + tdb1>0:databases/tdb1 GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-selinux=no --with-semanage=no \ From owner-svn-ports-all@freebsd.org Thu Jun 20 08:19:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 829C115AF0F6; Thu, 20 Jun 2019 08:19:05 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 16939704A8; Thu, 20 Jun 2019 08:19:05 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E26409404; Thu, 20 Jun 2019 08:19:04 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K8J4Be022280; Thu, 20 Jun 2019 08:19:04 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K8J46O022278; Thu, 20 Jun 2019 08:19:04 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201906200819.x5K8J46O022278@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Thu, 20 Jun 2019 08:19:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504621 - in head/x11/tilda: . files X-SVN-Group: ports-head X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: in head/x11/tilda: . files X-SVN-Commit-Revision: 504621 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 16939704A8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 08:19:05 -0000 Author: rodrigo Date: Thu Jun 20 08:19:04 2019 New Revision: 504621 URL: https://svnweb.freebsd.org/changeset/ports/504621 Log: use dirent.h instead of deprecated sys/dir.h tilda currently includes sys/dir.h, but this header is scheduled for removal. Its successor is dirent.h. Update this port accordingly. Poudriere build run with Freebsd 11 and 12 PR: 238695 Submitted by: rene Modified: head/x11/tilda/Makefile head/x11/tilda/files/patch-tilda.c Modified: head/x11/tilda/Makefile ============================================================================== --- head/x11/tilda/Makefile Thu Jun 20 07:56:40 2019 (r504620) +++ head/x11/tilda/Makefile Thu Jun 20 08:19:04 2019 (r504621) @@ -3,7 +3,7 @@ PORTNAME= tilda PORTVERSION= 1.4.1 DISTVERSIONPREFIX= ${PORTNAME}- -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 MAINTAINER= rodrigo@FreeBSD.org Modified: head/x11/tilda/files/patch-tilda.c ============================================================================== --- head/x11/tilda/files/patch-tilda.c Thu Jun 20 07:56:40 2019 (r504620) +++ head/x11/tilda/files/patch-tilda.c Thu Jun 20 08:19:04 2019 (r504621) @@ -1,5 +1,5 @@ ---- src/tilda.c.orig 2017-09-08 22:19:35.318278000 +0300 -+++ src/tilda.c 2017-09-08 22:21:22.752550000 +0300 +--- src/tilda.c.orig 2018-02-08 19:55:42 UTC ++++ src/tilda.c @@ -12,6 +12,7 @@ * You should have received a copy of the GNU Library General Public * License along with this library. If not, see . @@ -8,7 +8,16 @@ #define _POSIX_SOURCE /* feature test macro for signal functions */ #define _XOPEN_SOURCE /* feature test macro for popen */ -@@ -230,7 +231,7 @@ +@@ -52,7 +53,7 @@ + #include + #include + #include +-#include ++#include + #include + #include + #include +@@ -230,7 +231,7 @@ nomatch: static GSList *getPids() { GSList *pids = NULL; FILE *ps_output; From owner-svn-ports-all@freebsd.org Thu Jun 20 08:32:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 28C1815AF685; Thu, 20 Jun 2019 08:32:17 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BEAEC70C6B; Thu, 20 Jun 2019 08:32:16 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 99EFB9733; Thu, 20 Jun 2019 08:32:16 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K8WG1m032027; Thu, 20 Jun 2019 08:32:16 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K8WGc3032024; Thu, 20 Jun 2019 08:32:16 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201906200832.x5K8WGc3032024@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 20 Jun 2019 08:32:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504622 - head/security/mbedtls X-SVN-Group: ports-head X-SVN-Commit-Author: tijl X-SVN-Commit-Paths: head/security/mbedtls X-SVN-Commit-Revision: 504622 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BEAEC70C6B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 08:32:17 -0000 Author: tijl Date: Thu Jun 20 08:32:15 2019 New Revision: 504622 URL: https://svnweb.freebsd.org/changeset/ports/504622 Log: Update to 2.16.2. Modified: head/security/mbedtls/Makefile head/security/mbedtls/distinfo head/security/mbedtls/pkg-plist Modified: head/security/mbedtls/Makefile ============================================================================== --- head/security/mbedtls/Makefile Thu Jun 20 08:19:04 2019 (r504621) +++ head/security/mbedtls/Makefile Thu Jun 20 08:32:15 2019 (r504622) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= mbedtls -PORTVERSION= 2.16.1 +PORTVERSION= 2.16.2 DISTVERSIONPREFIX=${PORTNAME}- CATEGORIES= security devel Modified: head/security/mbedtls/distinfo ============================================================================== --- head/security/mbedtls/distinfo Thu Jun 20 08:19:04 2019 (r504621) +++ head/security/mbedtls/distinfo Thu Jun 20 08:32:15 2019 (r504622) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555685099 -SHA256 (ARMmbed-mbedtls-mbedtls-2.16.1_GH0.tar.gz) = daf0d40f3016c34eb42d1e4b3b52be047e976d566aba8668977723c829af72f3 -SIZE (ARMmbed-mbedtls-mbedtls-2.16.1_GH0.tar.gz) = 2426992 +TIMESTAMP = 1561019039 +SHA256 (ARMmbed-mbedtls-mbedtls-2.16.2_GH0.tar.gz) = 4699f2509c3b2c65f6c27b9a7e114ad0e7df1e8c70b0f82bbad7585cad8aa47e +SIZE (ARMmbed-mbedtls-mbedtls-2.16.2_GH0.tar.gz) = 2452915 Modified: head/security/mbedtls/pkg-plist ============================================================================== --- head/security/mbedtls/pkg-plist Thu Jun 20 08:19:04 2019 (r504621) +++ head/security/mbedtls/pkg-plist Thu Jun 20 08:32:15 2019 (r504622) @@ -37,7 +37,6 @@ bin/mbedtls_rsa_sign_pss bin/mbedtls_rsa_verify bin/mbedtls_rsa_verify_pss bin/mbedtls_selftest -bin/mbedtls_ssl_cert_test bin/mbedtls_ssl_client1 bin/mbedtls_ssl_client2 bin/mbedtls_ssl_fork_server From owner-svn-ports-all@freebsd.org Thu Jun 20 08:47:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1752615AFA00; Thu, 20 Jun 2019 08:47:53 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 908A57119F; Thu, 20 Jun 2019 08:47:52 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 676539902; Thu, 20 Jun 2019 08:47:52 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K8lqbJ038228; Thu, 20 Jun 2019 08:47:52 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K8lpci038226; Thu, 20 Jun 2019 08:47:51 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906200847.x5K8lpci038226@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 20 Jun 2019 08:47:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504623 - head/multimedia/svt-av1 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/svt-av1 X-SVN-Commit-Revision: 504623 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 908A57119F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 08:47:53 -0000 Author: jbeich Date: Thu Jun 20 08:47:51 2019 New Revision: 504623 URL: https://svnweb.freebsd.org/changeset/ports/504623 Log: multimedia/svt-av1: update to 0.5.0.457 Changes: https://github.com/OpenVisualCloud/SVT-AV1/compare/5fd69642...cc2ee452 Modified: head/multimedia/svt-av1/Makefile (contents, props changed) head/multimedia/svt-av1/distinfo (contents, props changed) head/multimedia/svt-av1/pkg-plist (contents, props changed) Modified: head/multimedia/svt-av1/Makefile ============================================================================== --- head/multimedia/svt-av1/Makefile Thu Jun 20 08:32:15 2019 (r504622) +++ head/multimedia/svt-av1/Makefile Thu Jun 20 08:47:51 2019 (r504623) @@ -2,8 +2,8 @@ PORTNAME= svt-av1 DISTVERSIONPREFIX= v -DISTVERSION= 0.5.0-370 -DISTVERSIONSUFFIX= -g5fd69642 +DISTVERSION= 0.5.0-457 +DISTVERSIONSUFFIX= -gcc2ee452 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org @@ -26,25 +26,14 @@ USE_LDCONFIG= yes GH_ACCOUNT= OpenVisualCloud GH_PROJECT= SVT-AV1 CMAKE_ON= BUILD_SHARED_LIBS +CMAKE_OFF= NATIVE post-patch: -# Default CFLAGS are already set by USES=cmake - @${REINPLACE_CMD} -i .flags -E -e 's/ -mavx//' \ - -e 's/CMAKE_C_FLAGS "/&$${CMAKE_C_FLAGS} /' \ - -e '/C_FLAGS_(RELEASE|DEBUG)/d' \ - -e '/NASM_FLAGS_DEBUG/d' \ +# Keep using nasm and drop vendor -O/-g + @${REINPLACE_CMD} -e '/find_program.*yasm/d' \ + -Ee '/set.*(release|debug)_flags_to_test/,/\)/d' \ ${WRKSRC}/CMakeLists.txt - @${REINPLACE_CMD} -i .flags -e 's/-march=core-avx2/-mavx2/' \ - ${WRKSRC}/Source/Lib/Common/ASM_AVX2/CMakeLists.txt \ -# Avoid lang/gcc* dependency - @${REINPLACE_CMD} -i .gcc -e 's/gcc-//' \ - -e '/CMAKE_C/{ s/STREQUAL/MATCHES/; s/"GNU/&|Clang/; }' \ - ${WRKSRC}/CMakeLists.txt \ - ${WRKSRC}/Source/Lib/Common/*/CMakeLists.txt # Avoid platform whitelists for generic non-Windows code - @${REINPLACE_CMD} -i .opsys 's/Linux/${OPSYS}/' \ - ${WRKSRC}/CMakeLists.txt \ - ${WRKSRC}/Source/Lib/*/*/CMakeLists.txt @${GREP} --exclude='*/third_party/*' -Flr '__linux' ${WRKSRC} | ${XARGS} \ ${REINPLACE_CMD} -i .opsys -E 's/__linux(__)?/__${OPSYS}__/' Modified: head/multimedia/svt-av1/distinfo ============================================================================== --- head/multimedia/svt-av1/distinfo Thu Jun 20 08:32:15 2019 (r504622) +++ head/multimedia/svt-av1/distinfo Thu Jun 20 08:47:51 2019 (r504623) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560470330 -SHA256 (OpenVisualCloud-SVT-AV1-v0.5.0-370-g5fd69642_GH0.tar.gz) = 527f00c3d04cf8a989dabd1c04e7d494173679a09241bd52fa607c07b00e495b -SIZE (OpenVisualCloud-SVT-AV1-v0.5.0-370-g5fd69642_GH0.tar.gz) = 2585844 +TIMESTAMP = 1560989925 +SHA256 (OpenVisualCloud-SVT-AV1-v0.5.0-457-gcc2ee452_GH0.tar.gz) = 8e387f463cf80cf5c4e264f5826d419c56074e4f8652e4c2a1fbad4dcf3aaa3e +SIZE (OpenVisualCloud-SVT-AV1-v0.5.0-457-gcc2ee452_GH0.tar.gz) = 2584386 Modified: head/multimedia/svt-av1/pkg-plist ============================================================================== --- head/multimedia/svt-av1/pkg-plist Thu Jun 20 08:32:15 2019 (r504622) +++ head/multimedia/svt-av1/pkg-plist Thu Jun 20 08:47:51 2019 (r504623) @@ -6,9 +6,7 @@ include/svt-av1/EbSvtAv1Enc.h include/svt-av1/EbSvtAv1ErrorCodes.h include/svt-av1/EbSvtAv1ExtFrameBuf.h include/svt-av1/EbSvtAv1Formats.h -lib/libSvtAv1Dec.a lib/libSvtAv1Dec.so -lib/libSvtAv1Enc.a lib/libSvtAv1Enc.so libdata/pkgconfig/SvtAv1Dec.pc libdata/pkgconfig/SvtAv1Enc.pc From owner-svn-ports-all@freebsd.org Thu Jun 20 09:02:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0B2A15B31A6; Thu, 20 Jun 2019 09:02:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 57321718D7; Thu, 20 Jun 2019 09:02:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 33B839B1C; Thu, 20 Jun 2019 09:02:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K920US046261; Thu, 20 Jun 2019 09:02:00 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K91xlR046255; Thu, 20 Jun 2019 09:01:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906200901.x5K91xlR046255@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 20 Jun 2019 09:01:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504624 - head/security/elixir-comeonin X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/security/elixir-comeonin X-SVN-Commit-Revision: 504624 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 57321718D7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.96)[-0.956,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 09:02:00 -0000 Author: amdmi3 Date: Thu Jun 20 09:01:59 2019 New Revision: 504624 URL: https://svnweb.freebsd.org/changeset/ports/504624 Log: - Update URL (chase redirect to another GH account, not checksum change) Approved by: portmgr blanket Modified: head/security/elixir-comeonin/Makefile head/security/elixir-comeonin/distinfo head/security/elixir-comeonin/pkg-descr Modified: head/security/elixir-comeonin/Makefile ============================================================================== --- head/security/elixir-comeonin/Makefile Thu Jun 20 08:47:51 2019 (r504623) +++ head/security/elixir-comeonin/Makefile Thu Jun 20 09:01:59 2019 (r504624) @@ -14,7 +14,7 @@ LICENSE_COMB= multi USES= elixir gmake USE_GITHUB= yes -GH_ACCOUNT= elixircnx +GH_ACCOUNT= riverrun MIX_BUILD_DEPS= devel/elixir-make \ security/elixir-comeonin_i18n Modified: head/security/elixir-comeonin/distinfo ============================================================================== --- head/security/elixir-comeonin/distinfo Thu Jun 20 08:47:51 2019 (r504623) +++ head/security/elixir-comeonin/distinfo Thu Jun 20 09:01:59 2019 (r504624) @@ -1,3 +1,3 @@ TIMESTAMP = 1500123493 -SHA256 (elixircnx-comeonin-v3.2_GH0.tar.gz) = c87934b837f4db14e54b26a7f5f48772386ed40361ab638e0ea94ebf17ea8777 -SIZE (elixircnx-comeonin-v3.2_GH0.tar.gz) = 31757 +SHA256 (riverrun-comeonin-v3.2_GH0.tar.gz) = c87934b837f4db14e54b26a7f5f48772386ed40361ab638e0ea94ebf17ea8777 +SIZE (riverrun-comeonin-v3.2_GH0.tar.gz) = 31757 Modified: head/security/elixir-comeonin/pkg-descr ============================================================================== --- head/security/elixir-comeonin/pkg-descr Thu Jun 20 08:47:51 2019 (r504623) +++ head/security/elixir-comeonin/pkg-descr Thu Jun 20 09:01:59 2019 (r504624) @@ -6,4 +6,4 @@ possible. Comeonin now supports bcrypt and pbkdf2_sha512. -WWW: https://github.com/elixircnx/comeonin +WWW: https://github.com/riverrun/comeonin From owner-svn-ports-all@freebsd.org Thu Jun 20 09:11:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F3E615B3639; Thu, 20 Jun 2019 09:11:49 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0495A71DC0; Thu, 20 Jun 2019 09:11:49 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D38EC9DB2; Thu, 20 Jun 2019 09:11:48 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5K9Bmx1052968; Thu, 20 Jun 2019 09:11:48 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5K9BmaF052967; Thu, 20 Jun 2019 09:11:48 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906200911.x5K9BmaF052967@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 20 Jun 2019 09:11:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504625 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 504625 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0495A71DC0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.98)[-0.975,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 09:11:49 -0000 Author: jbeich Date: Thu Jun 20 09:11:48 2019 New Revision: 504625 URL: https://svnweb.freebsd.org/changeset/ports/504625 Log: security/vuxml: mark waterfox < 56.2.11 as vulnerable https://github.com/MrAlex94/Waterfox/commit/27ce846f9d46 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Jun 20 09:01:59 2019 (r504624) +++ head/security/vuxml/vuln.xml Thu Jun 20 09:11:48 2019 (r504625) @@ -66,6 +66,10 @@ Notes: 67.0.3,1 + waterfox + 56.2.11 + + firefox-esr 60.7.1,1 @@ -89,6 +93,7 @@ Notes: 2019-06-18 2019-06-19 + 2019-06-20 From owner-svn-ports-all@freebsd.org Thu Jun 20 11:24:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 29B1015B615B; Thu, 20 Jun 2019 11:24:51 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C0DDD75B13; Thu, 20 Jun 2019 11:24:50 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 98AA9B3D9; Thu, 20 Jun 2019 11:24:50 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KBOo8M021783; Thu, 20 Jun 2019 11:24:50 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KBOonF021779; Thu, 20 Jun 2019 11:24:50 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201906201124.x5KBOonF021779@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Thu, 20 Jun 2019 11:24:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504626 - head/sysutils/node_exporter X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: head/sysutils/node_exporter X-SVN-Commit-Revision: 504626 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C0DDD75B13 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 11:24:51 -0000 Author: swills Date: Thu Jun 20 11:24:49 2019 New Revision: 504626 URL: https://svnweb.freebsd.org/changeset/ports/504626 Log: sysutils/node_exporter: Update to 0.18.1 PR: 238671 Submitted by: David O'Rourke Approved by: jevonearth (maintainer) Modified: head/sysutils/node_exporter/Makefile (contents, props changed) head/sysutils/node_exporter/distinfo (contents, props changed) Modified: head/sysutils/node_exporter/Makefile ============================================================================== --- head/sysutils/node_exporter/Makefile Thu Jun 20 09:11:48 2019 (r504625) +++ head/sysutils/node_exporter/Makefile Thu Jun 20 11:24:49 2019 (r504626) @@ -2,9 +2,8 @@ # $FreeBSD$ PORTNAME= node_exporter -PORTVERSION= 0.18.0 +PORTVERSION= 0.18.1 DISTVERSIONPREFIX=v -PORTREVISION= 1 CATEGORIES= sysutils MAINTAINER= ports@ecadlabs.com Modified: head/sysutils/node_exporter/distinfo ============================================================================== --- head/sysutils/node_exporter/distinfo Thu Jun 20 09:11:48 2019 (r504625) +++ head/sysutils/node_exporter/distinfo Thu Jun 20 11:24:49 2019 (r504626) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557759917 -SHA256 (prometheus-node_exporter-v0.18.0_GH0.tar.gz) = 2f71a4a11fa1388e4a459865520365396f8b6ebbad9d45df476fe60ee0de0415 -SIZE (prometheus-node_exporter-v0.18.0_GH0.tar.gz) = 2104908 +TIMESTAMP = 1560802738 +SHA256 (prometheus-node_exporter-v0.18.1_GH0.tar.gz) = 9ddf187c462f2681ab4516410ada0e6f0f03097db6986686795559ea71a07694 +SIZE (prometheus-node_exporter-v0.18.1_GH0.tar.gz) = 2110072 From owner-svn-ports-all@freebsd.org Thu Jun 20 11:55:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2CDD015B690C; Thu, 20 Jun 2019 11:55:48 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B8BB3766B3; Thu, 20 Jun 2019 11:55:47 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 90CDBB8CD; Thu, 20 Jun 2019 11:55:47 +0000 (UTC) (envelope-from garga@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KBtlx1037456; Thu, 20 Jun 2019 11:55:47 GMT (envelope-from garga@FreeBSD.org) Received: (from garga@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KBtlwc037455; Thu, 20 Jun 2019 11:55:47 GMT (envelope-from garga@FreeBSD.org) Message-Id: <201906201155.x5KBtlwc037455@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: garga set sender to garga@FreeBSD.org using -f From: Renato Botelho Date: Thu, 20 Jun 2019 11:55:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504627 - head/net/mobile-broadband-provider-info X-SVN-Group: ports-head X-SVN-Commit-Author: garga X-SVN-Commit-Paths: head/net/mobile-broadband-provider-info X-SVN-Commit-Revision: 504627 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B8BB3766B3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.960,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 11:55:48 -0000 Author: garga Date: Thu Jun 20 11:55:47 2019 New Revision: 504627 URL: https://svnweb.freebsd.org/changeset/ports/504627 Log: net/mobile-broadband-provider-info: Add missing dependency (libxslt) Pointyhat to: garga Modified: head/net/mobile-broadband-provider-info/Makefile Modified: head/net/mobile-broadband-provider-info/Makefile ============================================================================== --- head/net/mobile-broadband-provider-info/Makefile Thu Jun 20 11:24:49 2019 (r504626) +++ head/net/mobile-broadband-provider-info/Makefile Thu Jun 20 11:55:47 2019 (r504627) @@ -2,6 +2,7 @@ PORTNAME= mobile-broadband-provider-info PORTVERSION= 20190618 +PORTREVISION= 1 CATEGORIES= net gnome MASTER_SITES= GNOME @@ -11,8 +12,9 @@ COMMENT= Service mobile broadband provider database LICENSE= PD LICENSE_FILE= ${WRKSRC}/COPYING -USES= autoreconf gmake pathfix tar:xz +USES= autoreconf gmake gnome pathfix tar:xz +USE_GNOME= libxslt GNU_CONFIGURE= yes PLIST_FILES= ${DATADIR}/apns-conf.xml \ From owner-svn-ports-all@freebsd.org Thu Jun 20 12:46:41 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 65A2615B9F88; Thu, 20 Jun 2019 12:46:41 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CA0068028D; Thu, 20 Jun 2019 12:46:40 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A2252C2C6; Thu, 20 Jun 2019 12:46:40 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KCkeCi063715; Thu, 20 Jun 2019 12:46:40 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KCkeZI063713; Thu, 20 Jun 2019 12:46:40 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906201246.x5KCkeZI063713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Thu, 20 Jun 2019 12:46:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504628 - head/www/py-django-auth-ldap X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/www/py-django-auth-ldap X-SVN-Commit-Revision: 504628 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CA0068028D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 12:46:41 -0000 Author: kai Date: Thu Jun 20 12:46:39 2019 New Revision: 504628 URL: https://svnweb.freebsd.org/changeset/ports/504628 Log: www/py-django-auth-ldap: Update to 2.0.0 * Take maintainership due three consecutive maintainer timeouts * Limit to Python 3.5 and later as upstream has dropped the support for Python 2 and 3.4 Changelog: https://github.com/django-auth-ldap/django-auth-ldap/blob/2.0.0/CHANGES PR: 238359 Approved by: maintainer timeout Modified: head/www/py-django-auth-ldap/Makefile head/www/py-django-auth-ldap/distinfo Modified: head/www/py-django-auth-ldap/Makefile ============================================================================== --- head/www/py-django-auth-ldap/Makefile Thu Jun 20 11:55:47 2019 (r504627) +++ head/www/py-django-auth-ldap/Makefile Thu Jun 20 12:46:39 2019 (r504628) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= django-auth-ldap -PORTVERSION= 1.7.0 +PORTVERSION= 2.0.0 CATEGORIES= www security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= avk@vl.ru +MAINTAINER= kai@FreeBSD.org COMMENT= LDAP integration for django.contrib.auth LICENSE= BSD2CLAUSE @@ -16,7 +16,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.11:www/py-django111@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}ldap>=3.1:net/py-ldap@${PY_FLAVOR} -USES= python +USES= python:3.5+ USE_PYTHON= autoplist distutils NO_ARCH= yes Modified: head/www/py-django-auth-ldap/distinfo ============================================================================== --- head/www/py-django-auth-ldap/distinfo Thu Jun 20 11:55:47 2019 (r504627) +++ head/www/py-django-auth-ldap/distinfo Thu Jun 20 12:46:39 2019 (r504628) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551179543 -SHA256 (django-auth-ldap-1.7.0.tar.gz) = 72848b3b036d299114be3c6ef38b12f83f6cf1cf1696c5f92e06fe45a1b8e27b -SIZE (django-auth-ldap-1.7.0.tar.gz) = 48897 +TIMESTAMP = 1559807451 +SHA256 (django-auth-ldap-2.0.0.tar.gz) = 7100086a858a5ee13d8da7d9a92c44f4248dc60a833f0a185186458a5ccf55e9 +SIZE (django-auth-ldap-2.0.0.tar.gz) = 51195 From owner-svn-ports-all@freebsd.org Thu Jun 20 13:17:44 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83ED015BB6EA; Thu, 20 Jun 2019 13:17:44 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 293A480E63; Thu, 20 Jun 2019 13:17:44 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CEAD1C7E5; Thu, 20 Jun 2019 13:17:43 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KDHhpM079450; Thu, 20 Jun 2019 13:17:43 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KDHgEd079446; Thu, 20 Jun 2019 13:17:42 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906201317.x5KDHgEd079446@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Thu, 20 Jun 2019 13:17:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504629 - in head/www: py-dj21-django-auth-ldap py-dj22-django-auth-ldap X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/www: py-dj21-django-auth-ldap py-dj22-django-auth-ldap X-SVN-Commit-Revision: 504629 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 293A480E63 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 13:17:44 -0000 Author: kai Date: Thu Jun 20 13:17:42 2019 New Revision: 504629 URL: https://svnweb.freebsd.org/changeset/ports/504629 Log: www/py-{dj21,dj22}-django-auth-ldap: Update to 2.0.0 Changelog: https://github.com/django-auth-ldap/django-auth-ldap/blob/2.0.0/CHANGES Modified: head/www/py-dj21-django-auth-ldap/Makefile head/www/py-dj21-django-auth-ldap/distinfo head/www/py-dj22-django-auth-ldap/Makefile head/www/py-dj22-django-auth-ldap/distinfo Modified: head/www/py-dj21-django-auth-ldap/Makefile ============================================================================== --- head/www/py-dj21-django-auth-ldap/Makefile Thu Jun 20 12:46:39 2019 (r504628) +++ head/www/py-dj21-django-auth-ldap/Makefile Thu Jun 20 13:17:42 2019 (r504629) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django-auth-ldap -PORTVERSION= 1.7.0 +PORTVERSION= 2.0.0 CATEGORIES= www security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj21- Modified: head/www/py-dj21-django-auth-ldap/distinfo ============================================================================== --- head/www/py-dj21-django-auth-ldap/distinfo Thu Jun 20 12:46:39 2019 (r504628) +++ head/www/py-dj21-django-auth-ldap/distinfo Thu Jun 20 13:17:42 2019 (r504629) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551179543 -SHA256 (django-auth-ldap-1.7.0.tar.gz) = 72848b3b036d299114be3c6ef38b12f83f6cf1cf1696c5f92e06fe45a1b8e27b -SIZE (django-auth-ldap-1.7.0.tar.gz) = 48897 +TIMESTAMP = 1559809183 +SHA256 (django-auth-ldap-2.0.0.tar.gz) = 7100086a858a5ee13d8da7d9a92c44f4248dc60a833f0a185186458a5ccf55e9 +SIZE (django-auth-ldap-2.0.0.tar.gz) = 51195 Modified: head/www/py-dj22-django-auth-ldap/Makefile ============================================================================== --- head/www/py-dj22-django-auth-ldap/Makefile Thu Jun 20 12:46:39 2019 (r504628) +++ head/www/py-dj22-django-auth-ldap/Makefile Thu Jun 20 13:17:42 2019 (r504629) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django-auth-ldap -PORTVERSION= 1.7.0 +PORTVERSION= 2.0.0 CATEGORIES= www security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj22- Modified: head/www/py-dj22-django-auth-ldap/distinfo ============================================================================== --- head/www/py-dj22-django-auth-ldap/distinfo Thu Jun 20 12:46:39 2019 (r504628) +++ head/www/py-dj22-django-auth-ldap/distinfo Thu Jun 20 13:17:42 2019 (r504629) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551179543 -SHA256 (django-auth-ldap-1.7.0.tar.gz) = 72848b3b036d299114be3c6ef38b12f83f6cf1cf1696c5f92e06fe45a1b8e27b -SIZE (django-auth-ldap-1.7.0.tar.gz) = 48897 +TIMESTAMP = 1559809183 +SHA256 (django-auth-ldap-2.0.0.tar.gz) = 7100086a858a5ee13d8da7d9a92c44f4248dc60a833f0a185186458a5ccf55e9 +SIZE (django-auth-ldap-2.0.0.tar.gz) = 51195 From owner-svn-ports-all@freebsd.org Thu Jun 20 13:19:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4FC3415BB73A; Thu, 20 Jun 2019 13:19:42 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E9CA280F8A; Thu, 20 Jun 2019 13:19:41 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C164FC7E6; Thu, 20 Jun 2019 13:19:41 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KDJfvH079635; Thu, 20 Jun 2019 13:19:41 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KDJf54079634; Thu, 20 Jun 2019 13:19:41 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906201319.x5KDJf54079634@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 20 Jun 2019 13:19:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504630 - head/net/unison240 X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/net/unison240 X-SVN-Commit-Revision: 504630 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E9CA280F8A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 13:19:42 -0000 Author: danfe Date: Thu Jun 20 13:19:41 2019 New Revision: 504630 URL: https://svnweb.freebsd.org/changeset/ports/504630 Log: Unbreak the build against modern versions of OCaml. Modified: head/net/unison240/Makefile Modified: head/net/unison240/Makefile ============================================================================== --- head/net/unison240/Makefile Thu Jun 20 13:17:42 2019 (r504629) +++ head/net/unison240/Makefile Thu Jun 20 13:19:41 2019 (r504630) @@ -58,6 +58,11 @@ USES+= gettext-runtime PLIST_SUB+= X11="" .endif +pre-patch: +# BCP 5/16: Eta-expand for backward compatibility with OCaml >4.02 + @${REINPLACE_CMD} -e 's,= Unix\.symlink,s1 s2 & s1 s2,' \ + ${WRKSRC}/system/system_generic.ml + .if ${FLAVOR} == x11 post-patch: @${REINPLACE_CMD} -Ee 's@(\+|/)(lablgtk2)@\1site-lib/\2@' \ From owner-svn-ports-all@freebsd.org Thu Jun 20 15:21:41 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D435215BEE82; Thu, 20 Jun 2019 15:21:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7A98A85BE2; Thu, 20 Jun 2019 15:21:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5756DDD88; Thu, 20 Jun 2019 15:21:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KFLfbT045706; Thu, 20 Jun 2019 15:21:41 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KFLfZ3045705; Thu, 20 Jun 2019 15:21:41 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906201521.x5KFLfZ3045705@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Thu, 20 Jun 2019 15:21:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504631 - head/audio/infamous-plugins-lv2 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/audio/infamous-plugins-lv2 X-SVN-Commit-Revision: 504631 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7A98A85BE2 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.975,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 15:21:42 -0000 Author: linimon Date: Thu Jun 20 15:21:40 2019 New Revision: 504631 URL: https://svnweb.freebsd.org/changeset/ports/504631 Log: Patch out -Og flag in src/*/CMakeLists.txt to fix build on GCC-based systems such as powerpc64: cc1: invalid option argument '-Og' Approved by: portmgr (tier-2 blanket) Modified: head/audio/infamous-plugins-lv2/Makefile Modified: head/audio/infamous-plugins-lv2/Makefile ============================================================================== --- head/audio/infamous-plugins-lv2/Makefile Thu Jun 20 13:19:41 2019 (r504630) +++ head/audio/infamous-plugins-lv2/Makefile Thu Jun 20 15:21:40 2019 (r504631) @@ -12,22 +12,26 @@ COMMENT= LV2 plugins for various sound effects LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_powerpc64= fails to compile: cc1: invalid option argument '-Og' - BUILD_DEPENDS= lv2>0:audio/lv2 \ ${LOCALBASE}/lib/libfftw3.so:math/fftw3 LIB_DEPENDS= libfftw3f.so:math/fftw3-float \ libntk.so:x11-toolkits/ntk \ libzita-resampler.so:audio/zita-resampler -USES= cmake gnome localbase pkgconfig +USES= cmake compiler gnome localbase pkgconfig USE_GITHUB= yes GH_ACCOUNT= ssj71 GH_PROJECT= infamousPlugins USE_GNOME= cairo +.include + post-patch: @${REINPLACE_CMD} -e 's| -g"|"|' \ ${WRKSRC}/src/*/CMakeLists.txt +.if ${CHOSEN_COMPILER_TYPE} == gcc + @${REINPLACE_CMD} -e 's| -Og"|"|' \ + ${WRKSRC}/src/*/CMakeLists.txt +.endif -.include +.include From owner-svn-ports-all@freebsd.org Thu Jun 20 15:25:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6012F15BEF90; Thu, 20 Jun 2019 15:25:43 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 07DCB85E3F; Thu, 20 Jun 2019 15:25:43 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D77AADDE5; Thu, 20 Jun 2019 15:25:42 +0000 (UTC) (envelope-from royger@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KFPg39047675; Thu, 20 Jun 2019 15:25:42 GMT (envelope-from royger@FreeBSD.org) Received: (from royger@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KFPgje047674; Thu, 20 Jun 2019 15:25:42 GMT (envelope-from royger@FreeBSD.org) Message-Id: <201906201525.x5KFPgje047674@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: royger set sender to royger@FreeBSD.org using -f From: =?UTF-8?Q?Roger_Pau_Monn=c3=a9?= Date: Thu, 20 Jun 2019 15:25:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504632 - head/emulators/xen-kernel X-SVN-Group: ports-head X-SVN-Commit-Author: royger X-SVN-Commit-Paths: head/emulators/xen-kernel X-SVN-Commit-Revision: 504632 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 07DCB85E3F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.975,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 15:25:43 -0000 Author: royger (src committer) Date: Thu Jun 20 15:25:42 2019 New Revision: 504632 URL: https://svnweb.freebsd.org/changeset/ports/504632 Log: emulators/xen-kernel: use binutils to workaround LLD 8 bug LLD 8 changed the behaviour regarding the placement of orphaned sections, which produces a non-bootable Xen kernel: https://bugs.llvm.org/show_bug.cgi?id=42327 Switch to GNU LD (and NM) until this is resolved. Sponsored by: Citrix Systems R&D Reviewed by: mat Differential revision: https://reviews.freebsd.org/D20706 Modified: head/emulators/xen-kernel/Makefile Modified: head/emulators/xen-kernel/Makefile ============================================================================== --- head/emulators/xen-kernel/Makefile Thu Jun 20 15:21:40 2019 (r504631) +++ head/emulators/xen-kernel/Makefile Thu Jun 20 15:25:42 2019 (r504632) @@ -2,7 +2,7 @@ PORTNAME= xen PORTVERSION= 4.12.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= http://downloads.xenproject.org/release/xen/${PORTVERSION}/ PKGNAMESUFFIX= -kernel @@ -15,10 +15,17 @@ LICENSE= GPLv2 ONLY_FOR_ARCHS= amd64 USES= cpe gmake python:2.7,build +# LLD 8 changed the behaviour re the placement of orphaned sections, which +# produces a non-bootable Xen kernel: +# +# https://bugs.llvm.org/show_bug.cgi?id=42327 +# +# Switch to GNU LD (and NM) until this is resolved. +USE_BINUTILS= yes # Ports build environment has ARCH=amd64 set which disables Xen automatic arch # detection, but amd64 is not a valid arch for Xen. Hardcode x86_64 on the # command line in order to overwrite the one from the environment. -MAKE_ARGS= clang=y PYTHON=${PYTHON_CMD} ARCH=x86_64 +MAKE_ARGS= clang=y PYTHON=${PYTHON_CMD} ARCH=x86_64 LD=${LD} NM=${NM} NO_MTREE= yes STRIP= # PLIST_FILES= /boot/xen \ From owner-svn-ports-all@freebsd.org Thu Jun 20 15:28:32 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D125815BF08A; Thu, 20 Jun 2019 15:28:31 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7419785FCB; Thu, 20 Jun 2019 15:28:31 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 42DF2DDEC; Thu, 20 Jun 2019 15:28:31 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KFSVBE047904; Thu, 20 Jun 2019 15:28:31 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KFSUWb047902; Thu, 20 Jun 2019 15:28:30 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201906201528.x5KFSUWb047902@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Thu, 20 Jun 2019 15:28:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504633 - head/devel/packr X-SVN-Group: ports-head X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: head/devel/packr X-SVN-Commit-Revision: 504633 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7419785FCB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.962,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 15:28:32 -0000 Author: rodrigo Date: Thu Jun 20 15:28:30 2019 New Revision: 504633 URL: https://svnweb.freebsd.org/changeset/ports/504633 Log: Update devel/packr form v2.2.0 to v2.4.0 Changelogs: https://github.com/gobuffalo/packr/releases/tag/v2.4.0 https://github.com/gobuffalo/packr/releases/tag/v2.3.2 https://github.com/gobuffalo/packr/releases/tag/v2.3.1 https://github.com/gobuffalo/packr/releases/tag/v2.3.0 https://github.com/gobuffalo/packr/releases/tag/v2.2.1 PR: 238321 Submitted by: Dmitri Goutnik (maintainer) Modified: head/devel/packr/Makefile head/devel/packr/distinfo Modified: head/devel/packr/Makefile ============================================================================== --- head/devel/packr/Makefile Thu Jun 20 15:25:42 2019 (r504632) +++ head/devel/packr/Makefile Thu Jun 20 15:28:30 2019 (r504633) @@ -2,7 +2,7 @@ PORTNAME= packr DISTVERSIONPREFIX= v -DISTVERSION= 2.2.0 +DISTVERSION= 2.4.0 CATEGORIES= devel MAINTAINER= dg@syrec.org @@ -11,7 +11,7 @@ COMMENT= Simple and easy way to embed static files int LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= go +USES= go:modules GO_PKGNAME= github.com/gobuffalo/packr GO_TARGET= ./packr \ @@ -21,26 +21,30 @@ USE_GITHUB= yes GH_ACCOUNT= gobuffalo GH_TUPLE= \ gobuffalo:envy:v1.7.0:gobuffalo_envy/vendor/github.com/gobuffalo/envy \ - gobuffalo:genny:3ca520e:gobuffalo_genny/vendor/github.com/gobuffalo/genny \ - gobuffalo:gogen:8f38393:gobuffalo_gogen/vendor/github.com/gobuffalo/gogen \ - gobuffalo:logger:86e12af:gobuffalo_logger/vendor/github.com/gobuffalo/logger \ + gobuffalo:genny:3ca520ef0d9e:gobuffalo_genny/vendor/github.com/gobuffalo/genny \ + gobuffalo:gogen:8f38393713f5:gobuffalo_gogen/vendor/github.com/gobuffalo/gogen \ + gobuffalo:logger:86e12af44bc2:gobuffalo_logger/vendor/github.com/gobuffalo/logger \ gobuffalo:mapi:v1.0.2:gobuffalo_mapi/vendor/github.com/gobuffalo/mapi \ - gobuffalo:packd:a385830:gobuffalo_packd/vendor/github.com/gobuffalo/packd \ - gobuffalo:syncx:33c2958:gobuffalo_syncx/vendor/github.com/gobuffalo/syncx \ - golang:crypto:c2843e0:golang_crypto/vendor/golang.org/x/crypto \ - golang:sync:56d3577:golang_sync/vendor/golang.org/x/sync \ - golang:sys:d0b11bd:golang_sys/vendor/golang.org/x/sys \ - golang:tools:923d258:golang_tools/vendor/golang.org/x/tools \ + gobuffalo:packd:a385830c7fc0:gobuffalo_packd/vendor/github.com/gobuffalo/packd \ + gobuffalo:syncx:33c29581e754:gobuffalo_syncx/vendor/github.com/gobuffalo/syncx \ + golang:crypto:c2843e01d9a2:golang_crypto/vendor/golang.org/x/crypto \ + golang:sync:56d357773e84:golang_sync/vendor/golang.org/x/sync \ + golang:sys:d0b11bdaac8a:golang_sys/vendor/golang.org/x/sys \ + golang:tools:9c9e1878f421:golang_tools/vendor/golang.org/x/tools \ inconshreveable:mousetrap:v1.0.0:inconshreveable_mousetrap/vendor/github.com/inconshreveable/mousetrap \ joho:godotenv:v1.3.0:joho_godotenv/vendor/github.com/joho/godotenv \ karrick:godirwalk:v1.8.0:karrick_godirwalk/vendor/github.com/karrick/godirwalk \ - markbates:oncer:bf2de49:markbates_oncer/vendor/github.com/markbates/oncer \ + markbates:oncer:bf2de49a0be2:markbates_oncer/vendor/github.com/markbates/oncer \ markbates:safe:v1.0.1:markbates_safe/vendor/github.com/markbates/safe \ pkg:errors:v0.8.1:pkg_errors/vendor/github.com/pkg/errors \ rogpeppe:go-internal:v1.3.0:rogpeppe_go_internal/vendor/github.com/rogpeppe/go-internal \ sirupsen:logrus:v1.4.1:sirupsen_logrus/vendor/github.com/sirupsen/logrus \ spf13:cobra:v0.0.3:spf13_cobra/vendor/github.com/spf13/cobra \ spf13:pflag:v1.0.3:spf13_pflag/vendor/github.com/spf13/pflag + +post-extract: + @${MKDIR} ${WRKSRC}/vendor/github.com/gobuffalo/packr + @${LN} -s ${WRKSRC}/v2 ${WRKSRC}/vendor/github.com/gobuffalo/packr/v2 PLIST_FILES= bin/packr \ bin/packr2 Modified: head/devel/packr/distinfo ============================================================================== --- head/devel/packr/distinfo Thu Jun 20 15:25:42 2019 (r504632) +++ head/devel/packr/distinfo Thu Jun 20 15:28:30 2019 (r504633) @@ -1,36 +1,40 @@ -TIMESTAMP = 1555517629 -SHA256 (gobuffalo-packr-v2.2.0_GH0.tar.gz) = 38f11219d5f11201ae9ef7da07a417871e5fe38c51352d7b8a45b7296ad6cc8e -SIZE (gobuffalo-packr-v2.2.0_GH0.tar.gz) = 75539 +TIMESTAMP = 1560722606 +SHA256 (gobuffalo-packr-v2.4.0_GH0.tar.gz) = f2c860af73be2691c6742db6556d0b3763ea5c1cec9775790b846ce91145631d +SIZE (gobuffalo-packr-v2.4.0_GH0.tar.gz) = 76283 SHA256 (gobuffalo-envy-v1.7.0_GH0.tar.gz) = 0cf5498716ad05262a5c7601ebd203d9ea7ff581bc965cb2fcb38408cbf32424 SIZE (gobuffalo-envy-v1.7.0_GH0.tar.gz) = 7656 -SHA256 (gobuffalo-genny-3ca520e_GH0.tar.gz) = 6d384e13d64b8e738ac4d054e794a7c7674056407254a76e18aeb02d2ade6eb3 -SIZE (gobuffalo-genny-3ca520e_GH0.tar.gz) = 33811 -SHA256 (gobuffalo-gogen-8f38393_GH0.tar.gz) = a4afd1b1f5a2919d2def36ac14219bff98ec19e5e5f03c6a77088c10bd238824 -SIZE (gobuffalo-gogen-8f38393_GH0.tar.gz) = 9933 -SHA256 (gobuffalo-logger-86e12af_GH0.tar.gz) = 42bd41db6aa748f9b975528200a81348f5943d270b1e0ba04c6baa15e3496d5a -SIZE (gobuffalo-logger-86e12af_GH0.tar.gz) = 5244 +SHA256 (gobuffalo-genny-3ca520ef0d9e_GH0.tar.gz) = 37aa157f47cb61d42a393a94fa6227b25bc36022a20d328b8297559e153d3d1b +SIZE (gobuffalo-genny-3ca520ef0d9e_GH0.tar.gz) = 33826 +SHA256 (gobuffalo-gogen-8f38393713f5_GH0.tar.gz) = e4b5f72b8dedbeb3256e2662eb2a2a386f825924181e9e94f1823f5f9f46c5f1 +SIZE (gobuffalo-gogen-8f38393713f5_GH0.tar.gz) = 9935 +SHA256 (gobuffalo-logger-86e12af44bc2_GH0.tar.gz) = d26fd702029286751ad1aff736c45b1983f449fca4fe2e357a4b26a8953b3177 +SIZE (gobuffalo-logger-86e12af44bc2_GH0.tar.gz) = 5246 SHA256 (gobuffalo-mapi-v1.0.2_GH0.tar.gz) = 5e11aefbbef04089f4760493558f47ec34514a27e89fb6a01093ec9bdf1f7f6c SIZE (gobuffalo-mapi-v1.0.2_GH0.tar.gz) = 4281 -SHA256 (gobuffalo-packd-a385830_GH0.tar.gz) = 0b3457f93c549ec899b9e6ff7d0a4fb9f4cc786e23594e5246203508367e9ccc -SIZE (gobuffalo-packd-a385830_GH0.tar.gz) = 7616 -SHA256 (gobuffalo-syncx-33c2958_GH0.tar.gz) = 9303f4836f840b0af9f1a407be419850ae7a9b122edda33045d24bdac662aaad -SIZE (gobuffalo-syncx-33c2958_GH0.tar.gz) = 4434 -SHA256 (golang-crypto-c2843e0_GH0.tar.gz) = f3afeea2d51b073a71102724a2066603c43cd949b6c28cfaad9d665dc8a33def -SIZE (golang-crypto-c2843e0_GH0.tar.gz) = 1650748 -SHA256 (golang-sync-56d3577_GH0.tar.gz) = 22571c2733dcd11c732c0a945c10b84b1e190dba1ef32bbae0e8f53ef450f3cb -SIZE (golang-sync-56d3577_GH0.tar.gz) = 16839 -SHA256 (golang-sys-d0b11bd_GH0.tar.gz) = a55bda51979fb37cbbab8d1a8ef5b23eb4e9124e0de05c05aec5916af6281df4 -SIZE (golang-sys-d0b11bd_GH0.tar.gz) = 1242651 -SHA256 (golang-tools-923d258_GH0.tar.gz) = d22580f4f7f96a2abb72dfeb6fb3dfb1546c7eb16e4cca46bd57b2f6c43f55a9 -SIZE (golang-tools-923d258_GH0.tar.gz) = 2056376 +SHA256 (gobuffalo-packd-a385830c7fc0_GH0.tar.gz) = bb8f4b1c2196bbdfe83a916dcfbeb508fbd152d7d9483ee3c66ca1931efeba07 +SIZE (gobuffalo-packd-a385830c7fc0_GH0.tar.gz) = 7619 +SHA256 (gobuffalo-packr-v2.2.0_GH0.tar.gz) = 38f11219d5f11201ae9ef7da07a417871e5fe38c51352d7b8a45b7296ad6cc8e +SIZE (gobuffalo-packr-v2.2.0_GH0.tar.gz) = 75539 +SHA256 (gobuffalo-syncx-33c29581e754_GH0.tar.gz) = 8a0dad54065242b16888ec53eb5725505df75b4fbc89bb4abf32865850bc9826 +SIZE (gobuffalo-syncx-33c29581e754_GH0.tar.gz) = 4433 +SHA256 (golang-crypto-c2843e01d9a2_GH0.tar.gz) = a4d91350f176b2ef99084cd71f990ecee5f549efed72ef59a5b9e425a00d454a +SIZE (golang-crypto-c2843e01d9a2_GH0.tar.gz) = 1650817 +SHA256 (golang-sync-56d357773e84_GH0.tar.gz) = b30ecf4394f01a492423b41e3815d84711c29d679ee4dd5118fc2c9bcf433b3f +SIZE (golang-sync-56d357773e84_GH0.tar.gz) = 16832 +SHA256 (golang-sys-d0b11bdaac8a_GH0.tar.gz) = e7e3f36dd307e908e59dbda3864ff74f9a5d7f0fdd4d88af630e092beb7d270c +SIZE (golang-sys-d0b11bdaac8a_GH0.tar.gz) = 1243049 +SHA256 (golang-tools-9c9e1878f421_GH0.tar.gz) = 24565123c033bfec0c50b82d110f42c558db4221a6298a36167d9f7ec1881e49 +SIZE (golang-tools-9c9e1878f421_GH0.tar.gz) = 2071733 SHA256 (inconshreveable-mousetrap-v1.0.0_GH0.tar.gz) = 5edc7731c819c305623568e317aa253d342be3447def97f1fa9e10eb5ad819f6 SIZE (inconshreveable-mousetrap-v1.0.0_GH0.tar.gz) = 2290 SHA256 (joho-godotenv-v1.3.0_GH0.tar.gz) = 07beb0bae964dbe37442603a404196111dbbbaaa986fc179d5d5fdc46ed6a189 SIZE (joho-godotenv-v1.3.0_GH0.tar.gz) = 9941 SHA256 (karrick-godirwalk-v1.8.0_GH0.tar.gz) = ca1166d94923600fc8d61be2257361397ec6b272fc285d1ed521ae195fc7163d SIZE (karrick-godirwalk-v1.8.0_GH0.tar.gz) = 14967 -SHA256 (markbates-oncer-bf2de49_GH0.tar.gz) = 9fd5db2f645e68c2551808acb6161c692e529a1d7ff70d0473796260ef409bba -SIZE (markbates-oncer-bf2de49_GH0.tar.gz) = 2772 +SHA256 (konsorten-go-windows-terminal-sequences-v1.0.1_GH0.tar.gz) = e36c5a5de388bf72db3037b47f025b09e574be8d0bc74b3e44c960cba0880e87 +SIZE (konsorten-go-windows-terminal-sequences-v1.0.1_GH0.tar.gz) = 1909 +SHA256 (markbates-oncer-bf2de49a0be2_GH0.tar.gz) = 86f454afe985fd36a9e045c654a642f919f2ee6abbfbb68763632ce101f83820 +SIZE (markbates-oncer-bf2de49a0be2_GH0.tar.gz) = 2773 SHA256 (markbates-safe-v1.0.1_GH0.tar.gz) = 8356d63a2175445960eecc237cf82fc206d328d48c03e4564546d9158af62142 SIZE (markbates-safe-v1.0.1_GH0.tar.gz) = 2888 SHA256 (pkg-errors-v0.8.1_GH0.tar.gz) = 7a428967c6fc2e80cd84a0d9469ab6bd4dbe6b13493ba6294322a933a5a7e356 From owner-svn-ports-all@freebsd.org Thu Jun 20 15:33:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 807F315BF3AE; Thu, 20 Jun 2019 15:33:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1B7718653C; Thu, 20 Jun 2019 15:33:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 94221DFA8; Thu, 20 Jun 2019 15:33:44 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KFXi3U052993; Thu, 20 Jun 2019 15:33:44 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KFXivY052992; Thu, 20 Jun 2019 15:33:44 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906201533.x5KFXivY052992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Thu, 20 Jun 2019 15:33:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504634 - head/audio/abgate-lv2 X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/audio/abgate-lv2 X-SVN-Commit-Revision: 504634 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1B7718653C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.96)[-0.958,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 15:33:45 -0000 Author: linimon Date: Thu Jun 20 15:33:44 2019 New Revision: 504634 URL: https://svnweb.freebsd.org/changeset/ports/504634 Log: Add compiler:c++11-lang to USES to unbreak build on powerpc64: cc1plus: unrecognized command line option -std=c++11 Approved by: portmgr (tier-2 blanket) Modified: head/audio/abgate-lv2/Makefile Modified: head/audio/abgate-lv2/Makefile ============================================================================== --- head/audio/abgate-lv2/Makefile Thu Jun 20 15:28:30 2019 (r504633) +++ head/audio/abgate-lv2/Makefile Thu Jun 20 15:33:44 2019 (r504634) @@ -13,11 +13,9 @@ COMMENT= Noise gate LV2 plugin LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_powerpc64= fails to build: cc1plus: unrecognized command line option -std=c++11 - BUILD_DEPENDS= lv2>0:audio/lv2 -USES= gmake pkgconfig qt:5 +USES= compiler:c++11-lang gmake pkgconfig qt:5 USE_GITHUB= yes GH_ACCOUNT= antanasbruzas USE_CXXSTD= c++11 From owner-svn-ports-all@freebsd.org Thu Jun 20 15:54:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 38F1315BFE09; Thu, 20 Jun 2019 15:54:15 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CE5D0870AE; Thu, 20 Jun 2019 15:54:14 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A73FFE2F9; Thu, 20 Jun 2019 15:54:14 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KFsEHp063546; Thu, 20 Jun 2019 15:54:14 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KFsEi5063545; Thu, 20 Jun 2019 15:54:14 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201906201554.x5KFsEi5063545@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Thu, 20 Jun 2019 15:54:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504635 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 504635 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CE5D0870AE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.960,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 15:54:15 -0000 Author: riggs Date: Thu Jun 20 15:54:14 2019 New Revision: 504635 URL: https://svnweb.freebsd.org/changeset/ports/504635 Log: Document two vulnerabilities in vlc < 3.0.7.1, potential remote exploit Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Thu Jun 20 15:33:44 2019 (r504634) +++ head/security/vuxml/vuln.xml Thu Jun 20 15:54:14 2019 (r504635) @@ -58,6 +58,63 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + vlc -- Double free in Matroska demuxer + + + vlc + 3.0.7.1,4 + + + + +

The VLC project reports:

+
+

mkv: Fix potential double free

+
+ +
+ + CVE-2019-12874 + https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-12874 + http://git.videolan.org/?p=vlc.git;a=commit;h=81023659c7de5ac2637b4a879195efef50846102 + + + 2019-05-20 + 2019-06-20 + +
+ + + vlc -- Buffer overflow vulnerability + + + vlc + 3.0.7,4 + + + + +

zhangyang reports:

+
+

The ReadFrame function in the avi.c file uses a variable i_width_bytes, + which is obtained directly from the file. It is a signed integer. + It does not do a strict check before the memory operation(memmove, memcpy), + which may cause a buffer overflow.

+
+ +
+ + CVE-2019-5439 + https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-5439 + https://hackerone.com/reports/484398 + + + 2019-01-23 + 2019-06-20 + +
+ mozilla -- multiple vulnerabilities From owner-svn-ports-all@freebsd.org Thu Jun 20 16:01:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EB4F315C009A; Thu, 20 Jun 2019 16:01:00 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8E5DC87364; Thu, 20 Jun 2019 16:01:00 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6B363E323; Thu, 20 Jun 2019 16:01:00 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KG10Rq064109; Thu, 20 Jun 2019 16:01:00 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KG0xih064102; Thu, 20 Jun 2019 16:00:59 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201906201600.x5KG0xih064102@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Thu, 20 Jun 2019 16:00:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504636 - in head/multimedia/vlc: . files X-SVN-Group: ports-head X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: in head/multimedia/vlc: . files X-SVN-Commit-Revision: 504636 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8E5DC87364 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.962,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:01:01 -0000 Author: riggs Date: Thu Jun 20 16:00:59 2019 New Revision: 504636 URL: https://svnweb.freebsd.org/changeset/ports/504636 Log: Update to upstream release 3.0.7.1; Makefile fixes Details: - Update to newest upstream release 3.0.7.1 - Fix drive-by dependencies, reported in [1] - Introduce new options for JPEG and OGGSPOTS [1] PR: 238261 [1] Reported by: phascolarctos@protonmail.ch [1] MFH: 2019Q2 Deleted: head/multimedia/vlc/files/patch-modules_codec_vpx.c Modified: head/multimedia/vlc/Makefile head/multimedia/vlc/distinfo head/multimedia/vlc/pkg-plist Modified: head/multimedia/vlc/Makefile ============================================================================== --- head/multimedia/vlc/Makefile Thu Jun 20 15:54:14 2019 (r504635) +++ head/multimedia/vlc/Makefile Thu Jun 20 16:00:59 2019 (r504636) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= vlc -DISTVERSION= 3.0.6 -PORTREVISION= 17 +DISTVERSION= 3.0.7.1 PORTEPOCH= 4 CATEGORIES= multimedia audio ipv6 net www MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSION:S/a$//}/ \ @@ -45,7 +44,7 @@ CONFIGURE_ARGS= --enable-avcodec --enable-avformat --e --enable-swscale --enable-vlc \ --disable-alsa --disable-archive --disable-chromaprint --disable-crystalhd \ --disable-dc1394 --disable-decklink --disable-dsm \ - --disable-dv1394 --disable-fdkaac \ + --disable-dv1394 --disable-fdkaac --disable-gst-decode \ --disable-gles2 --disable-kai --disable-kva \ --disable-vnc --disable-opencv --disable-projectm \ --disable-secret --disable-soxr --disable-telx \ @@ -64,13 +63,13 @@ LIBS+= -L${LOCALBASE}/lib OPTIONS_DEFINE= A52 AALIB AOM ASS AVAHI CACA CHROMECAST DAV1D DBUS DCA DOCS DVDREAD \ DVDNAV FAAD FLAC FLUID FREERDP FRIBIDI GME GNUTLS \ - GOOM HARFBUZZ JACK KATE LIBBLURAY LIBPLACEBO LIBRSVG2 LIBSSH2 LIRC \ + GOOM HARFBUZZ JACK JPEG KATE LIBBLURAY LIBPLACEBO LIBRSVG2 LIBSSH2 LIRC \ LIVEMEDIA LUA MAD MODPLUG MPEG2 MTP MUSEPACK \ - NCURSES NFS NLS NOTIFY OGG OPTIMIZED_CFLAGS OPUS PNG PULSEAUDIO \ + NCURSES NFS NLS NOTIFY OGG OGGSPOTS OPTIMIZED_CFLAGS OPUS PNG PULSEAUDIO \ QT5 REALRTSP RUNROOT SAMPLERATE SIDPLAY SCHROEDINGER \ SDL SHOUTCAST SKINS SMB SNDIO STREAM SPEEX TAGLIB THEORA \ TWOLAME UPNP V4L VAAPI VCD VDPAU VPX VORBIS WAYLAND X11 X264 X265 ZVBI -OPTIONS_DEFAULT=A52 AVAHI DAV1D DBUS DCA DVDREAD DVDNAV FAAD FLAC GNUTLS \ +OPTIONS_DEFAULT=A52 AVAHI DAV1D DBUS DCA DVDREAD DVDNAV FAAD FLAC GNUTLS JPEG \ LIVEMEDIA LUA MAD MPEG2 OGG OPTIMIZED_CFLAGS \ OPUS PNG QT5 SAMPLERATE STREAM SPEEX TAGLIB THEORA TWOLAME \ V4L VAAPI VCD VDPAU VORBIS WAYLAND X11 @@ -90,6 +89,7 @@ HARFBUZZ_DESC= OpenType text shaping engine KATE_DESC= Kate codec support LIBPLACEBO_DESC=HDR tonemapping support through libplacebo LIBSSH2_DESC= SCP/SFTP support via libssh2 +OGGSPOTS_DESC= Experimental OggSpots codec REALRTSP_DESC= Real RTSP access module RUNROOT_DESC= Enable running as root SIDPLAY_DESC= C64 sid demux support @@ -172,6 +172,9 @@ HARFBUZZ_CONFIGURE_ENABLE= harfbuzz JACK_LIB_DEPENDS= libjack.so:audio/jack JACK_CONFIGURE_ENABLE= jack +JPEG_USES= jpeg +JPEG_CONFIGURE_ENABLE= jpeg + KATE_LIB_DEPENDS= libkate.so:multimedia/libkate KATE_CONFIGURE_ENABLE= kate @@ -181,7 +184,7 @@ LIBBLURAY_CONFIGURE_ENABLE= bluray LIBPLACEBO_LIB_DEPENDS= libplacebo.so:graphics/libplacebo LIBPLACEBO_CONFIGURE_ENABLE= libplacebo -LIBRSVG2_USE= GNOME=librsvg2 +LIBRSVG2_USE= GNOME=librsvg2,cairo LIBRSVG2_CONFIGURE_ENABLE= svg LIBSSH2_LIB_DEPENDS= libssh2.so:security/libssh2 @@ -236,12 +239,15 @@ NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls NOTIFY_LIB_DEPENDS= libnotify.so:devel/libnotify -NOTIFY_USE= GNOME=gtk30 +NOTIFY_USE= GNOME=gtk30,cairo NOTIFY_CONFIGURE_ENABLE=notify OGG_LIB_DEPENDS= libogg.so:audio/libogg OGG_CONFIGURE_ENABLE= ogg +OGGSPOTS_CONFIGURE_ENABLE= oggspots +OGGSPOTS_IMPLIES= OGG + OPTIMIZED_CFLAGS_CONFIGURE_ENABLE= optimizations OPUS_LIB_DEPENDS= libopus.so:audio/opus @@ -268,6 +274,7 @@ SAMPLERATE_CONFIGURE_ENABLE= samplerate SCHROEDINGER_LIB_DEPENDS= libschroedinger-1.0.so:multimedia/schroedinger SCHROEDINGER_CONFIGURE_ENABLE= schroedinger +SDL_USES= sdl SDL_USE= SDL=image SDL_CONFIGURE_ENABLE= sdl-image @@ -332,7 +339,7 @@ WAYLAND_BUILD_DEPENDS= wayland-protocols>=0:graphics/w WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland WAYLAND_CONFIGURE_ENABLE= wayland -X11_USE= GL=gl XORG=xcb,xorgproto +X11_USE= GL=gl XORG=xcb,xorgproto,sm,ice,x11 X11_USES= gl X11_LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms X11_CONFIGURE_ENABLE= xcb xvideo Modified: head/multimedia/vlc/distinfo ============================================================================== --- head/multimedia/vlc/distinfo Thu Jun 20 15:54:14 2019 (r504635) +++ head/multimedia/vlc/distinfo Thu Jun 20 16:00:59 2019 (r504636) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547225134 -SHA256 (vlc-3.0.6.tar.xz) = 18c16d4be0f34861d0aa51fbd274fb87f0cab3b7119757ead93f3db3a1f27ed3 -SIZE (vlc-3.0.6.tar.xz) = 25699704 +TIMESTAMP = 1560608081 +SHA256 (vlc-3.0.7.1.tar.xz) = 0655804371096772f06104b75c21cde8a76e3b6c8a2fdadc97914f082c6264f5 +SIZE (vlc-3.0.7.1.tar.xz) = 26052372 Modified: head/multimedia/vlc/pkg-plist ============================================================================== --- head/multimedia/vlc/pkg-plist Thu Jun 20 15:54:14 2019 (r504635) +++ head/multimedia/vlc/pkg-plist Thu Jun 20 16:00:59 2019 (r504636) @@ -128,11 +128,11 @@ share/icons/hicolor/48x48/apps/vlc.png %%NLS%%share/locale/ach/LC_MESSAGES/vlc.mo %%NLS%%share/locale/af/LC_MESSAGES/vlc.mo %%NLS%%share/locale/am/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/am_ET/LC_MESSAGES/vlc.mo %%NLS%%share/locale/an/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ar/LC_MESSAGES/vlc.mo %%NLS%%share/locale/as_IN/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ast/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/az/LC_MESSAGES/vlc.mo %%NLS%%share/locale/be/LC_MESSAGES/vlc.mo %%NLS%%share/locale/bg/LC_MESSAGES/vlc.mo %%NLS%%share/locale/bn/LC_MESSAGES/vlc.mo @@ -141,8 +141,8 @@ share/icons/hicolor/48x48/apps/vlc.png %%NLS%%share/locale/brx/LC_MESSAGES/vlc.mo %%NLS%%share/locale/bs/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ca/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/ca@valencia/LC_MESSAGES/vlc.mo %%NLS%%share/locale/cgg/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/ckb/LC_MESSAGES/vlc.mo %%NLS%%share/locale/co/LC_MESSAGES/vlc.mo %%NLS%%share/locale/cs/LC_MESSAGES/vlc.mo %%NLS%%share/locale/cy/LC_MESSAGES/vlc.mo @@ -151,6 +151,7 @@ share/icons/hicolor/48x48/apps/vlc.png %%NLS%%share/locale/el/LC_MESSAGES/vlc.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/vlc.mo %%NLS%%share/locale/es/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/es_MX/LC_MESSAGES/vlc.mo %%NLS%%share/locale/et/LC_MESSAGES/vlc.mo %%NLS%%share/locale/eu/LC_MESSAGES/vlc.mo %%NLS%%share/locale/fa/LC_MESSAGES/vlc.mo @@ -168,34 +169,32 @@ share/icons/hicolor/48x48/apps/vlc.png %%NLS%%share/locale/hr/LC_MESSAGES/vlc.mo %%NLS%%share/locale/hu/LC_MESSAGES/vlc.mo %%NLS%%share/locale/hy/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/ia/LC_MESSAGES/vlc.mo %%NLS%%share/locale/id/LC_MESSAGES/vlc.mo %%NLS%%share/locale/is/LC_MESSAGES/vlc.mo %%NLS%%share/locale/it/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ja/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ka/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/kab/LC_MESSAGES/vlc.mo %%NLS%%share/locale/kk/LC_MESSAGES/vlc.mo %%NLS%%share/locale/km/LC_MESSAGES/vlc.mo %%NLS%%share/locale/kn/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ko/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ks_IN/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/ku_IQ/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ky/LC_MESSAGES/vlc.mo %%NLS%%share/locale/lg/LC_MESSAGES/vlc.mo %%NLS%%share/locale/lt/LC_MESSAGES/vlc.mo %%NLS%%share/locale/lv/LC_MESSAGES/vlc.mo %%NLS%%share/locale/mai/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/mk/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ml/LC_MESSAGES/vlc.mo %%NLS%%share/locale/mn/LC_MESSAGES/vlc.mo %%NLS%%share/locale/mr/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ms/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/my/LC_MESSAGES/vlc.mo %%NLS%%share/locale/nb/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ne/LC_MESSAGES/vlc.mo %%NLS%%share/locale/nl/LC_MESSAGES/vlc.mo %%NLS%%share/locale/nn/LC_MESSAGES/vlc.mo %%NLS%%share/locale/oc/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/or/LC_MESSAGES/vlc.mo %%NLS%%share/locale/pa/LC_MESSAGES/vlc.mo %%NLS%%share/locale/pl/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ps/LC_MESSAGES/vlc.mo @@ -211,10 +210,9 @@ share/icons/hicolor/48x48/apps/vlc.png %%NLS%%share/locale/sv/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ta/LC_MESSAGES/vlc.mo %%NLS%%share/locale/te/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/tet/LC_MESSAGES/vlc.mo %%NLS%%share/locale/th/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/tl/LC_MESSAGES/vlc.mo %%NLS%%share/locale/tr/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/tt/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ug/LC_MESSAGES/vlc.mo %%NLS%%share/locale/uk/LC_MESSAGES/vlc.mo %%NLS%%share/locale/uz/LC_MESSAGES/vlc.mo From owner-svn-ports-all@freebsd.org Thu Jun 20 16:03:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 118D115C0192; Thu, 20 Jun 2019 16:03:18 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B6D2E87739; Thu, 20 Jun 2019 16:03:17 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 91856E4A1; Thu, 20 Jun 2019 16:03:17 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KG3Hl6069945; Thu, 20 Jun 2019 16:03:17 GMT (envelope-from arrowd@FreeBSD.org) Received: (from arrowd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KG3A0W069905; Thu, 20 Jun 2019 16:03:10 GMT (envelope-from arrowd@FreeBSD.org) Message-Id: <201906201603.x5KG3A0W069905@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arrowd set sender to arrowd@FreeBSD.org using -f From: Gleb Popov Date: Thu, 20 Jun 2019 16:03:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504637 - in head: Mk/Uses converters/hs-aeson-pretty devel/hs-ShellCheck devel/hs-alex devel/hs-bytestring-nums devel/hs-c2hs devel/hs-cabal-install devel/hs-cpphs devel/hs-darcs devel... X-SVN-Group: ports-head X-SVN-Commit-Author: arrowd X-SVN-Commit-Paths: in head: Mk/Uses converters/hs-aeson-pretty devel/hs-ShellCheck devel/hs-alex devel/hs-bytestring-nums devel/hs-c2hs devel/hs-cabal-install devel/hs-cpphs devel/hs-darcs devel/hs-ghc-events devel/hs-g... X-SVN-Commit-Revision: 504637 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B6D2E87739 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.962,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:03:18 -0000 Author: arrowd Date: Thu Jun 20 16:03:10 2019 New Revision: 504637 URL: https://svnweb.freebsd.org/changeset/ports/504637 Log: In wrapper scripts, use $@ instead of $* to correctly pass arguments to the real program PR: 238719 Approved by: tcberner (mentor, implicit) Modified: head/Mk/Uses/cabal.mk head/converters/hs-aeson-pretty/Makefile head/devel/hs-ShellCheck/Makefile head/devel/hs-alex/Makefile head/devel/hs-bytestring-nums/Makefile head/devel/hs-c2hs/Makefile head/devel/hs-cabal-install/Makefile head/devel/hs-cpphs/Makefile head/devel/hs-darcs/Makefile head/devel/hs-ghc-events/Makefile head/devel/hs-git-annex/Makefile head/devel/hs-haddock/Makefile head/devel/hs-happy/Makefile head/devel/hs-hasktags/Makefile head/devel/hs-hlint/Makefile head/devel/hs-hoogle/Makefile head/devel/hs-hspec-discover/Makefile head/devel/hs-mueval/Makefile head/devel/hs-shake/Makefile head/devel/hs-threadscope/Makefile head/devel/stack/Makefile head/games/hedgewars-server/Makefile head/games/hs-scroll/Makefile head/lang/hs-brainfuck/Makefile head/lang/hs-unlambda/Makefile head/print/hs-hscolour/Makefile head/textproc/cgrep/Makefile head/textproc/hs-lhs2tex/Makefile head/textproc/hs-pandoc-citeproc/Makefile head/textproc/hs-pandoc/Makefile head/textproc/hs-yaml/Makefile head/www/hs-DAV/Makefile head/www/hs-hjsmin/Makefile head/www/hs-wai-app-static/Makefile head/www/hs-yesod-bin/Makefile head/x11/hs-xmobar/Makefile Modified: head/Mk/Uses/cabal.mk ============================================================================== --- head/Mk/Uses/cabal.mk Thu Jun 20 16:00:59 2019 (r504636) +++ head/Mk/Uses/cabal.mk Thu Jun 20 16:03:10 2019 (r504637) @@ -149,7 +149,7 @@ do-install: ${ECHO} 'export ${dep:S/-/_/}_datadir=${DATADIR}' >> ${STAGEDIR}${PREFIX}/bin/${exe} . endfor ${ECHO} '' >> ${STAGEDIR}${PREFIX}/bin/${exe} - ${ECHO} '${PREFIX}/libexec/cabal/${exe} $$*' >> ${STAGEDIR}${PREFIX}/bin/${exe} + ${ECHO} '${PREFIX}/libexec/cabal/${exe} "$$@"' >> ${STAGEDIR}${PREFIX}/bin/${exe} ${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/${exe} . endfor . endif Modified: head/converters/hs-aeson-pretty/Makefile ============================================================================== --- head/converters/hs-aeson-pretty/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/converters/hs-aeson-pretty/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= aeson-pretty PORTVERSION= 0.8.7 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= converters haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-ShellCheck/Makefile ============================================================================== --- head/devel/hs-ShellCheck/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-ShellCheck/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= ShellCheck DISTVERSION= 0.6.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel haskell MAINTAINER= pizzamig@FreeBSD.org Modified: head/devel/hs-alex/Makefile ============================================================================== --- head/devel/hs-alex/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-alex/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= alex PORTVERSION= 3.2.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-bytestring-nums/Makefile ============================================================================== --- head/devel/hs-bytestring-nums/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-bytestring-nums/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= bytestring-nums PORTVERSION= 0.3.6 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-c2hs/Makefile ============================================================================== --- head/devel/hs-c2hs/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-c2hs/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= c2hs PORTVERSION= 0.28.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-cabal-install/Makefile ============================================================================== --- head/devel/hs-cabal-install/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-cabal-install/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= cabal-install PORTVERSION= 2.4.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-cpphs/Makefile ============================================================================== --- head/devel/hs-cpphs/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-cpphs/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= cpphs PORTVERSION= 1.20.8 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-darcs/Makefile ============================================================================== --- head/devel/hs-darcs/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-darcs/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= darcs PORTVERSION= 2.14.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-ghc-events/Makefile ============================================================================== --- head/devel/hs-ghc-events/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-ghc-events/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,6 +2,7 @@ PORTNAME= ghc-events PORTVERSION= 0.9.0 +PORTREVISION= 1 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-git-annex/Makefile ============================================================================== --- head/devel/hs-git-annex/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-git-annex/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= git-annex PORTVERSION= 7.20190129 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-haddock/Makefile ============================================================================== --- head/devel/hs-haddock/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-haddock/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,6 +3,7 @@ PORTNAME= haddock PORTVERSION= 2.22.0 +PORTREVISION= 1 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-happy/Makefile ============================================================================== --- head/devel/hs-happy/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-happy/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= happy PORTVERSION= 1.19.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-hasktags/Makefile ============================================================================== --- head/devel/hs-hasktags/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-hasktags/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= hasktags PORTVERSION= 0.71.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-hlint/Makefile ============================================================================== --- head/devel/hs-hlint/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-hlint/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= hlint PORTVERSION= 2.1.12 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-hoogle/Makefile ============================================================================== --- head/devel/hs-hoogle/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-hoogle/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,6 +3,7 @@ PORTNAME= hoogle PORTVERSION= 5.0.17.9 +PORTREVISION= 1 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-hspec-discover/Makefile ============================================================================== --- head/devel/hs-hspec-discover/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-hspec-discover/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,6 +2,7 @@ PORTNAME= hspec-discover PORTVERSION= 2.7.1 +PORTREVISION= 1 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-mueval/Makefile ============================================================================== --- head/devel/hs-mueval/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-mueval/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= mueval PORTVERSION= 0.9.3 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-shake/Makefile ============================================================================== --- head/devel/hs-shake/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-shake/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,6 +2,7 @@ PORTNAME= shake PORTVERSION= 0.18.2 +PORTREVISION= 1 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/hs-threadscope/Makefile ============================================================================== --- head/devel/hs-threadscope/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/hs-threadscope/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= threadscope PORTVERSION= 0.2.11.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/devel/stack/Makefile ============================================================================== --- head/devel/stack/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/devel/stack/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= stack PORTVERSION= 1.9.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel haskell MAINTAINER= haskell@FreeBSD.org Modified: head/games/hedgewars-server/Makefile ============================================================================== --- head/games/hedgewars-server/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/games/hedgewars-server/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= hedgewars PORTVERSION= 0.9.25 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= http://www.hedgewars.org/download/releases/ \ http://mirror.amdmi3.ru/distfiles/ Modified: head/games/hs-scroll/Makefile ============================================================================== --- head/games/hs-scroll/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/games/hs-scroll/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= scroll PORTVERSION= 1.20180421 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= games haskell MAINTAINER= haskell@FreeBSD.org Modified: head/lang/hs-brainfuck/Makefile ============================================================================== --- head/lang/hs-brainfuck/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/lang/hs-brainfuck/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= brainfuck PORTVERSION= 0.1.0.3 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= lang haskell MAINTAINER= haskell@FreeBSD.org Modified: head/lang/hs-unlambda/Makefile ============================================================================== --- head/lang/hs-unlambda/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/lang/hs-unlambda/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= unlambda PORTVERSION= 0.1.4.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= lang haskell MAINTAINER= haskell@FreeBSD.org Modified: head/print/hs-hscolour/Makefile ============================================================================== --- head/print/hs-hscolour/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/print/hs-hscolour/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= hscolour PORTVERSION= 1.24.4 -PORTREVISION= 4 +PORTREVISION= 5 PORTEPOCH= 1 CATEGORIES= print haskell Modified: head/textproc/cgrep/Makefile ============================================================================== --- head/textproc/cgrep/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/textproc/cgrep/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= cgrep PORTVERSION= 6.6.25 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= textproc MAINTAINER= lwhsu@FreeBSD.org Modified: head/textproc/hs-lhs2tex/Makefile ============================================================================== --- head/textproc/hs-lhs2tex/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/textproc/hs-lhs2tex/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,7 +3,7 @@ PORTNAME= lhs2tex PORTVERSION= 1.22 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc haskell MAINTAINER= haskell@FreeBSD.org Modified: head/textproc/hs-pandoc-citeproc/Makefile ============================================================================== --- head/textproc/hs-pandoc-citeproc/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/textproc/hs-pandoc-citeproc/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,6 +2,7 @@ PORTNAME= pandoc-citeproc PORTVERSION= 0.16.2 +PORTREVISION= 1 CATEGORIES= textproc haskell MAINTAINER= haskell@FreeBSD.org Modified: head/textproc/hs-pandoc/Makefile ============================================================================== --- head/textproc/hs-pandoc/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/textproc/hs-pandoc/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,6 +3,7 @@ PORTNAME= pandoc PORTVERSION= 2.7.2 +PORTREVISION= 1 CATEGORIES= textproc haskell MAINTAINER= haskell@FreeBSD.org Modified: head/textproc/hs-yaml/Makefile ============================================================================== --- head/textproc/hs-yaml/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/textproc/hs-yaml/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= yaml PORTVERSION= 0.11.0.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= textproc haskell MAINTAINER= haskell@FreeBSD.org Modified: head/www/hs-DAV/Makefile ============================================================================== --- head/www/hs-DAV/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/www/hs-DAV/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= DAV PORTVERSION= 1.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org Modified: head/www/hs-hjsmin/Makefile ============================================================================== --- head/www/hs-hjsmin/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/www/hs-hjsmin/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= hjsmin PORTVERSION= 0.2.0.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org Modified: head/www/hs-wai-app-static/Makefile ============================================================================== --- head/www/hs-wai-app-static/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/www/hs-wai-app-static/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,6 +2,7 @@ PORTNAME= wai-app-static PORTVERSION= 3.1.6.3 +PORTREVISION= 1 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org Modified: head/www/hs-yesod-bin/Makefile ============================================================================== --- head/www/hs-yesod-bin/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/www/hs-yesod-bin/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -2,7 +2,7 @@ PORTNAME= yesod-bin PORTVERSION= 1.6.0.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= www haskell MAINTAINER= haskell@FreeBSD.org Modified: head/x11/hs-xmobar/Makefile ============================================================================== --- head/x11/hs-xmobar/Makefile Thu Jun 20 16:00:59 2019 (r504636) +++ head/x11/hs-xmobar/Makefile Thu Jun 20 16:03:10 2019 (r504637) @@ -3,6 +3,7 @@ PORTNAME= xmobar PORTVERSION= 0.29.5 +PORTREVISION= 1 CATEGORIES= x11 haskell MAINTAINER= haskell@FreeBSD.org From owner-svn-ports-all@freebsd.org Thu Jun 20 16:13:58 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3603F15C0560; Thu, 20 Jun 2019 16:13:58 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D142A87D9C; Thu, 20 Jun 2019 16:13:57 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A4FE1E661; Thu, 20 Jun 2019 16:13:57 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KGDvj6075123; Thu, 20 Jun 2019 16:13:57 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KGDvSc075121; Thu, 20 Jun 2019 16:13:57 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906201613.x5KGDvSc075121@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Thu, 20 Jun 2019 16:13:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504638 - head/www/firefox X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: head/www/firefox X-SVN-Commit-Revision: 504638 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D142A87D9C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:13:58 -0000 Author: cmt Date: Thu Jun 20 16:13:57 2019 New Revision: 504638 URL: https://svnweb.freebsd.org/changeset/ports/504638 Log: www/firefox: update to 67.0.4 Release Notes: https://www.mozilla.org/en-US/firefox/67.0.4/releasenotes/ PR: 236651 Approved by: gecko@ (jbeich@, implicit) MFH: 2019Q2 Modified: head/www/firefox/Makefile head/www/firefox/distinfo Modified: head/www/firefox/Makefile ============================================================================== --- head/www/firefox/Makefile Thu Jun 20 16:03:10 2019 (r504637) +++ head/www/firefox/Makefile Thu Jun 20 16:13:57 2019 (r504638) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 67.0.3 +DISTVERSION= 67.0.4 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Modified: head/www/firefox/distinfo ============================================================================== --- head/www/firefox/distinfo Thu Jun 20 16:03:10 2019 (r504637) +++ head/www/firefox/distinfo Thu Jun 20 16:13:57 2019 (r504638) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560836862 -SHA256 (firefox-67.0.3.source.tar.xz) = b5f8c82910335c26f9a82d6ecd49a01800596026422c6fb6bd941fda900e5f2f -SIZE (firefox-67.0.3.source.tar.xz) = 285477708 +TIMESTAMP = 1561042945 +SHA256 (firefox-67.0.4.source.tar.xz) = b2fb2d3e64a6947ef4f8212b72649acf2aa2cd4c8f70548abb636dd581fd6dc5 +SIZE (firefox-67.0.4.source.tar.xz) = 286036836 From owner-svn-ports-all@freebsd.org Thu Jun 20 16:15:32 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97B2115C05F6; Thu, 20 Jun 2019 16:15:32 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 39EDA87EF7; Thu, 20 Jun 2019 16:15:32 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0E1C4E665; Thu, 20 Jun 2019 16:15:32 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KGFVQs075365; Thu, 20 Jun 2019 16:15:31 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KGFV5K075363; Thu, 20 Jun 2019 16:15:31 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906201615.x5KGFV5K075363@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Thu, 20 Jun 2019 16:15:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504639 - branches/2019Q2/www/firefox X-SVN-Group: ports-branches X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: branches/2019Q2/www/firefox X-SVN-Commit-Revision: 504639 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 39EDA87EF7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:15:32 -0000 Author: cmt Date: Thu Jun 20 16:15:31 2019 New Revision: 504639 URL: https://svnweb.freebsd.org/changeset/ports/504639 Log: MFH: r504638 www/firefox: update to 67.0.4 Release Notes: https://www.mozilla.org/en-US/firefox/67.0.4/releasenotes/ PR: 236651 Approved by: gecko@ (jbeich@, implicit) Approved by: portmgr (blanket: web browser) Modified: branches/2019Q2/www/firefox/Makefile branches/2019Q2/www/firefox/distinfo Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/www/firefox/Makefile ============================================================================== --- branches/2019Q2/www/firefox/Makefile Thu Jun 20 16:13:57 2019 (r504638) +++ branches/2019Q2/www/firefox/Makefile Thu Jun 20 16:15:31 2019 (r504639) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 67.0.3 +DISTVERSION= 67.0.4 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ Modified: branches/2019Q2/www/firefox/distinfo ============================================================================== --- branches/2019Q2/www/firefox/distinfo Thu Jun 20 16:13:57 2019 (r504638) +++ branches/2019Q2/www/firefox/distinfo Thu Jun 20 16:15:31 2019 (r504639) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560836862 -SHA256 (firefox-67.0.3.source.tar.xz) = b5f8c82910335c26f9a82d6ecd49a01800596026422c6fb6bd941fda900e5f2f -SIZE (firefox-67.0.3.source.tar.xz) = 285477708 +TIMESTAMP = 1561042945 +SHA256 (firefox-67.0.4.source.tar.xz) = b2fb2d3e64a6947ef4f8212b72649acf2aa2cd4c8f70548abb636dd581fd6dc5 +SIZE (firefox-67.0.4.source.tar.xz) = 286036836 From owner-svn-ports-all@freebsd.org Thu Jun 20 16:16:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4825F15C06CC; Thu, 20 Jun 2019 16:16:59 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E459588056; Thu, 20 Jun 2019 16:16:58 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BF54BE668; Thu, 20 Jun 2019 16:16:58 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KGGw9f075553; Thu, 20 Jun 2019 16:16:58 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KGGwrW075551; Thu, 20 Jun 2019 16:16:58 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906201616.x5KGGwrW075551@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Thu, 20 Jun 2019 16:16:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504640 - head/www/firefox-esr X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: head/www/firefox-esr X-SVN-Commit-Revision: 504640 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E459588056 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:16:59 -0000 Author: cmt Date: Thu Jun 20 16:16:58 2019 New Revision: 504640 URL: https://svnweb.freebsd.org/changeset/ports/504640 Log: www/firefox-esr: update to 60.7.2 Release Notes: https://www.mozilla.org/en-US/firefox/60.7.2/releasenotes/ Approved by: gecko@ (jbeich@, implicit) MFH: 2019Q2 Modified: head/www/firefox-esr/Makefile head/www/firefox-esr/distinfo Modified: head/www/firefox-esr/Makefile ============================================================================== --- head/www/firefox-esr/Makefile Thu Jun 20 16:15:31 2019 (r504639) +++ head/www/firefox-esr/Makefile Thu Jun 20 16:16:58 2019 (r504640) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 60.7.1 +DISTVERSION= 60.7.2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: head/www/firefox-esr/distinfo ============================================================================== --- head/www/firefox-esr/distinfo Thu Jun 20 16:15:31 2019 (r504639) +++ head/www/firefox-esr/distinfo Thu Jun 20 16:16:58 2019 (r504640) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560837244 -SHA256 (firefox-60.7.1esr.source.tar.xz) = 3d118be1559720e40172cc3cd2605c9c35b504ac777f690a19d9f5279ce05c83 -SIZE (firefox-60.7.1esr.source.tar.xz) = 267808428 +TIMESTAMP = 1561043183 +SHA256 (firefox-60.7.2esr.source.tar.xz) = 8a918ea70c806524f293336f6f4574bb6e69ca1e98e6e5e0e5c2d6ad2ac26ac2 +SIZE (firefox-60.7.2esr.source.tar.xz) = 268579256 From owner-svn-ports-all@freebsd.org Thu Jun 20 16:17:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B7BC915C0743; Thu, 20 Jun 2019 16:17:18 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5AD1D88153; Thu, 20 Jun 2019 16:17:18 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 1579AC5E; Thu, 20 Jun 2019 16:17:18 +0000 (UTC) Date: Thu, 20 Jun 2019 16:17:18 +0000 From: Alexey Dokuchaev To: Gleb Popov Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504637 - in head: Mk/Uses converters/hs-aeson-pretty devel/hs-ShellCheck devel/hs-alex devel/hs-bytestring-nums devel/hs-c2hs devel/hs-cabal-install devel/hs-cpphs devel/hs-darcs devel... Message-ID: <20190620161717.GA89469@FreeBSD.org> References: <201906201603.x5KG3A0W069905@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201906201603.x5KG3A0W069905@repo.freebsd.org> User-Agent: Mutt/1.11.4 (2019-03-13) X-Rspamd-Queue-Id: 5AD1D88153 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.99)[-0.985,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:17:18 -0000 On Thu, Jun 20, 2019 at 04:03:10PM +0000, Gleb Popov wrote: > New Revision: 504637 > URL: https://svnweb.freebsd.org/changeset/ports/504637 > > Log: > In wrapper scripts, use $@ instead of $* to correctly pass arguments > to the real program It always surprized me why people keep making this mistake again and again. ./danfe From owner-svn-ports-all@freebsd.org Thu Jun 20 16:18:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B7D015C07B9; Thu, 20 Jun 2019 16:18:18 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7533E882A1; Thu, 20 Jun 2019 16:18:17 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 474F0E66B; Thu, 20 Jun 2019 16:18:17 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KGIH4G075764; Thu, 20 Jun 2019 16:18:17 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KGIGTN075762; Thu, 20 Jun 2019 16:18:16 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906201618.x5KGIGTN075762@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Thu, 20 Jun 2019 16:18:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504641 - branches/2019Q2/www/firefox-esr X-SVN-Group: ports-branches X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: branches/2019Q2/www/firefox-esr X-SVN-Commit-Revision: 504641 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7533E882A1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:18:18 -0000 Author: cmt Date: Thu Jun 20 16:18:16 2019 New Revision: 504641 URL: https://svnweb.freebsd.org/changeset/ports/504641 Log: MFH: r504640 www/firefox-esr: update to 60.7.2 Release Notes: https://www.mozilla.org/en-US/firefox/60.7.2/releasenotes/ Approved by: gecko@ (jbeich@, implicit) Approved by: portmgr (blanket: web browser) Modified: branches/2019Q2/www/firefox-esr/Makefile branches/2019Q2/www/firefox-esr/distinfo Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/www/firefox-esr/Makefile ============================================================================== --- branches/2019Q2/www/firefox-esr/Makefile Thu Jun 20 16:16:58 2019 (r504640) +++ branches/2019Q2/www/firefox-esr/Makefile Thu Jun 20 16:18:16 2019 (r504641) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= firefox -DISTVERSION= 60.7.1 +DISTVERSION= 60.7.2 PORTEPOCH= 1 CATEGORIES= www ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2019Q2/www/firefox-esr/distinfo ============================================================================== --- branches/2019Q2/www/firefox-esr/distinfo Thu Jun 20 16:16:58 2019 (r504640) +++ branches/2019Q2/www/firefox-esr/distinfo Thu Jun 20 16:18:16 2019 (r504641) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560837244 -SHA256 (firefox-60.7.1esr.source.tar.xz) = 3d118be1559720e40172cc3cd2605c9c35b504ac777f690a19d9f5279ce05c83 -SIZE (firefox-60.7.1esr.source.tar.xz) = 267808428 +TIMESTAMP = 1561043183 +SHA256 (firefox-60.7.2esr.source.tar.xz) = 8a918ea70c806524f293336f6f4574bb6e69ca1e98e6e5e0e5c2d6ad2ac26ac2 +SIZE (firefox-60.7.2esr.source.tar.xz) = 268579256 From owner-svn-ports-all@freebsd.org Thu Jun 20 16:19:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52DFC15C081D; Thu, 20 Jun 2019 16:19:27 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ED6338838F; Thu, 20 Jun 2019 16:19:26 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CB100E66C; Thu, 20 Jun 2019 16:19:26 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KGJQsF075934; Thu, 20 Jun 2019 16:19:26 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KGJQ94075932; Thu, 20 Jun 2019 16:19:26 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906201619.x5KGJQ94075932@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Thu, 20 Jun 2019 16:19:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504642 - head/mail/thunderbird X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: head/mail/thunderbird X-SVN-Commit-Revision: 504642 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: ED6338838F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:19:27 -0000 Author: cmt Date: Thu Jun 20 16:19:26 2019 New Revision: 504642 URL: https://svnweb.freebsd.org/changeset/ports/504642 Log: mail/thunderbird: update to 60.7.2 (rc1) Release Notes (soon): https://www.thunderbird.net/en-US/thunderbird/60.7.2/releasenotes/ Approved by: gecko@ (jbeich@, implicit) MFH: 2019Q2 Modified: head/mail/thunderbird/Makefile head/mail/thunderbird/distinfo Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Thu Jun 20 16:18:16 2019 (r504641) +++ head/mail/thunderbird/Makefile Thu Jun 20 16:19:26 2019 (r504642) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 60.7.1 +DISTVERSION= 60.7.2 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: head/mail/thunderbird/distinfo ============================================================================== --- head/mail/thunderbird/distinfo Thu Jun 20 16:18:16 2019 (r504641) +++ head/mail/thunderbird/distinfo Thu Jun 20 16:19:26 2019 (r504642) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560429483 -SHA256 (thunderbird-60.7.1.source.tar.xz) = f638cb12415af3a34134fa6c60ba082752c949461ca92e529205a05ac6486453 -SIZE (thunderbird-60.7.1.source.tar.xz) = 284760060 +TIMESTAMP = 1561043121 +SHA256 (thunderbird-60.7.2.source.tar.xz) = 7d82afcc9e51bc79a4c843c93ab58cb6bff5f732c78c0a915dd16538249f55ec +SIZE (thunderbird-60.7.2.source.tar.xz) = 285551844 From owner-svn-ports-all@freebsd.org Thu Jun 20 16:21:14 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 81A3E15C08E5; Thu, 20 Jun 2019 16:21:14 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 27EF18855E; Thu, 20 Jun 2019 16:21:14 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 061F8E6A5; Thu, 20 Jun 2019 16:21:14 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KGLD4h076932; Thu, 20 Jun 2019 16:21:13 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KGLD1x076931; Thu, 20 Jun 2019 16:21:13 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906201621.x5KGLD1x076931@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Thu, 20 Jun 2019 16:21:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504643 - branches/2019Q2/mail/thunderbird X-SVN-Group: ports-branches X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: branches/2019Q2/mail/thunderbird X-SVN-Commit-Revision: 504643 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 27EF18855E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:21:14 -0000 Author: cmt Date: Thu Jun 20 16:21:13 2019 New Revision: 504643 URL: https://svnweb.freebsd.org/changeset/ports/504643 Log: MFH: r504642 mail/thunderbird: update to 60.7.2 (rc1) Release Notes (soon): https://www.thunderbird.net/en-US/thunderbird/60.7.2/releasenotes/ Approved by: gecko@ (jbeich@, implicit) Approved by: portmgr (blanket: web browser alike) Modified: branches/2019Q2/mail/thunderbird/Makefile branches/2019Q2/mail/thunderbird/distinfo Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/mail/thunderbird/Makefile ============================================================================== --- branches/2019Q2/mail/thunderbird/Makefile Thu Jun 20 16:19:26 2019 (r504642) +++ branches/2019Q2/mail/thunderbird/Makefile Thu Jun 20 16:21:13 2019 (r504643) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 60.7.1 +DISTVERSION= 60.7.2 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: branches/2019Q2/mail/thunderbird/distinfo ============================================================================== --- branches/2019Q2/mail/thunderbird/distinfo Thu Jun 20 16:19:26 2019 (r504642) +++ branches/2019Q2/mail/thunderbird/distinfo Thu Jun 20 16:21:13 2019 (r504643) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560429483 -SHA256 (thunderbird-60.7.1.source.tar.xz) = f638cb12415af3a34134fa6c60ba082752c949461ca92e529205a05ac6486453 -SIZE (thunderbird-60.7.1.source.tar.xz) = 284760060 +TIMESTAMP = 1561043121 +SHA256 (thunderbird-60.7.2.source.tar.xz) = 7d82afcc9e51bc79a4c843c93ab58cb6bff5f732c78c0a915dd16538249f55ec +SIZE (thunderbird-60.7.2.source.tar.xz) = 285551844 From owner-svn-ports-all@freebsd.org Thu Jun 20 16:29:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE49C15C0FC9; Thu, 20 Jun 2019 16:29:10 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9463888DD6; Thu, 20 Jun 2019 16:29:10 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 67962E817; Thu, 20 Jun 2019 16:29:10 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KGTAC3081257; Thu, 20 Jun 2019 16:29:10 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KGT9GC081254; Thu, 20 Jun 2019 16:29:09 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201906201629.x5KGT9GC081254@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Thu, 20 Jun 2019 16:29:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504644 - in branches/2019Q2/multimedia/vlc: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: riggs X-SVN-Commit-Paths: in branches/2019Q2/multimedia/vlc: . files X-SVN-Commit-Revision: 504644 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9463888DD6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:29:11 -0000 Author: riggs Date: Thu Jun 20 16:29:09 2019 New Revision: 504644 URL: https://svnweb.freebsd.org/changeset/ports/504644 Log: MFH: r504636 Update to upstream release 3.0.7.1; Makefile fixes Details: - Update to newest upstream release 3.0.7.1 - Fix drive-by dependencies, reported in [1] - Introduce new options for JPEG and OGGSPOTS [1] PR: 238261 [1] Reported by: phascolarctos@protonmail.ch [1] Approved by: ports-secteam (riggs) Deleted: branches/2019Q2/multimedia/vlc/files/patch-modules_codec_vpx.c Modified: branches/2019Q2/multimedia/vlc/Makefile branches/2019Q2/multimedia/vlc/distinfo branches/2019Q2/multimedia/vlc/pkg-plist Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/multimedia/vlc/Makefile ============================================================================== --- branches/2019Q2/multimedia/vlc/Makefile Thu Jun 20 16:21:13 2019 (r504643) +++ branches/2019Q2/multimedia/vlc/Makefile Thu Jun 20 16:29:09 2019 (r504644) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= vlc -DISTVERSION= 3.0.6 -PORTREVISION= 9 +DISTVERSION= 3.0.7.1 PORTEPOCH= 4 CATEGORIES= multimedia audio ipv6 net www MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSION:S/a$//}/ \ @@ -45,7 +44,7 @@ CONFIGURE_ARGS= --enable-avcodec --enable-avformat --e --enable-swscale --enable-vlc \ --disable-alsa --disable-archive --disable-chromaprint --disable-crystalhd \ --disable-dc1394 --disable-decklink --disable-dsm \ - --disable-dv1394 --disable-fdkaac \ + --disable-dv1394 --disable-fdkaac --disable-gst-decode \ --disable-gles2 --disable-kai --disable-kva \ --disable-vnc --disable-opencv --disable-projectm \ --disable-secret --disable-soxr --disable-telx \ @@ -64,13 +63,13 @@ LIBS+= -L${LOCALBASE}/lib OPTIONS_DEFINE= A52 AALIB AOM ASS AVAHI CACA CHROMECAST DAV1D DBUS DCA DOCS DVDREAD \ DVDNAV FAAD FLAC FLUID FREERDP FRIBIDI GME GNUTLS \ - GOOM HARFBUZZ JACK KATE LIBBLURAY LIBPLACEBO LIBRSVG2 LIBSSH2 LIRC \ + GOOM HARFBUZZ JACK JPEG KATE LIBBLURAY LIBPLACEBO LIBRSVG2 LIBSSH2 LIRC \ LIVEMEDIA LUA MAD MODPLUG MPEG2 MTP MUSEPACK \ - NCURSES NFS NLS NOTIFY OGG OPTIMIZED_CFLAGS OPUS PNG PULSEAUDIO \ + NCURSES NFS NLS NOTIFY OGG OGGSPOTS OPTIMIZED_CFLAGS OPUS PNG PULSEAUDIO \ QT5 REALRTSP RUNROOT SAMPLERATE SIDPLAY SCHROEDINGER \ SDL SHOUTCAST SKINS SMB SNDIO STREAM SPEEX TAGLIB THEORA \ TWOLAME UPNP V4L VAAPI VCD VDPAU VPX VORBIS WAYLAND X11 X264 X265 ZVBI -OPTIONS_DEFAULT=A52 AVAHI DAV1D DBUS DCA DVDREAD DVDNAV FAAD FLAC GNUTLS \ +OPTIONS_DEFAULT=A52 AVAHI DAV1D DBUS DCA DVDREAD DVDNAV FAAD FLAC GNUTLS JPEG \ LIVEMEDIA LUA MAD MPEG2 OGG OPTIMIZED_CFLAGS \ OPUS PNG QT5 SAMPLERATE STREAM SPEEX TAGLIB THEORA TWOLAME \ V4L VAAPI VCD VDPAU VORBIS WAYLAND X11 @@ -90,6 +89,7 @@ HARFBUZZ_DESC= OpenType text shaping engine KATE_DESC= Kate codec support LIBPLACEBO_DESC=HDR tonemapping support through libplacebo LIBSSH2_DESC= SCP/SFTP support via libssh2 +OGGSPOTS_DESC= Experimental OggSpots codec REALRTSP_DESC= Real RTSP access module RUNROOT_DESC= Enable running as root SIDPLAY_DESC= C64 sid demux support @@ -172,6 +172,9 @@ HARFBUZZ_CONFIGURE_ENABLE= harfbuzz JACK_LIB_DEPENDS= libjack.so:audio/jack JACK_CONFIGURE_ENABLE= jack +JPEG_USES= jpeg +JPEG_CONFIGURE_ENABLE= jpeg + KATE_LIB_DEPENDS= libkate.so:multimedia/libkate KATE_CONFIGURE_ENABLE= kate @@ -181,7 +184,7 @@ LIBBLURAY_CONFIGURE_ENABLE= bluray LIBPLACEBO_LIB_DEPENDS= libplacebo.so:graphics/libplacebo LIBPLACEBO_CONFIGURE_ENABLE= libplacebo -LIBRSVG2_USE= GNOME=librsvg2 +LIBRSVG2_USE= GNOME=librsvg2,cairo LIBRSVG2_CONFIGURE_ENABLE= svg LIBSSH2_LIB_DEPENDS= libssh2.so:security/libssh2 @@ -236,12 +239,15 @@ NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls NOTIFY_LIB_DEPENDS= libnotify.so:devel/libnotify -NOTIFY_USE= GNOME=gtk30 +NOTIFY_USE= GNOME=gtk30,cairo NOTIFY_CONFIGURE_ENABLE=notify OGG_LIB_DEPENDS= libogg.so:audio/libogg OGG_CONFIGURE_ENABLE= ogg +OGGSPOTS_CONFIGURE_ENABLE= oggspots +OGGSPOTS_IMPLIES= OGG + OPTIMIZED_CFLAGS_CONFIGURE_ENABLE= optimizations OPUS_LIB_DEPENDS= libopus.so:audio/opus @@ -268,6 +274,7 @@ SAMPLERATE_CONFIGURE_ENABLE= samplerate SCHROEDINGER_LIB_DEPENDS= libschroedinger-1.0.so:multimedia/schroedinger SCHROEDINGER_CONFIGURE_ENABLE= schroedinger +SDL_USES= sdl SDL_USE= SDL=image SDL_CONFIGURE_ENABLE= sdl-image @@ -332,7 +339,7 @@ WAYLAND_BUILD_DEPENDS= wayland-protocols>=0:graphics/w WAYLAND_LIB_DEPENDS= libwayland-client.so:graphics/wayland WAYLAND_CONFIGURE_ENABLE= wayland -X11_USE= GL=gl XORG=xcb,xorgproto +X11_USE= GL=gl XORG=xcb,xorgproto,sm,ice,x11 X11_USES= gl X11_LIB_DEPENDS= libxcb-keysyms.so:x11/xcb-util-keysyms X11_CONFIGURE_ENABLE= xcb xvideo Modified: branches/2019Q2/multimedia/vlc/distinfo ============================================================================== --- branches/2019Q2/multimedia/vlc/distinfo Thu Jun 20 16:21:13 2019 (r504643) +++ branches/2019Q2/multimedia/vlc/distinfo Thu Jun 20 16:29:09 2019 (r504644) @@ -1,3 +1,3 @@ -TIMESTAMP = 1547225134 -SHA256 (vlc-3.0.6.tar.xz) = 18c16d4be0f34861d0aa51fbd274fb87f0cab3b7119757ead93f3db3a1f27ed3 -SIZE (vlc-3.0.6.tar.xz) = 25699704 +TIMESTAMP = 1560608081 +SHA256 (vlc-3.0.7.1.tar.xz) = 0655804371096772f06104b75c21cde8a76e3b6c8a2fdadc97914f082c6264f5 +SIZE (vlc-3.0.7.1.tar.xz) = 26052372 Modified: branches/2019Q2/multimedia/vlc/pkg-plist ============================================================================== --- branches/2019Q2/multimedia/vlc/pkg-plist Thu Jun 20 16:21:13 2019 (r504643) +++ branches/2019Q2/multimedia/vlc/pkg-plist Thu Jun 20 16:29:09 2019 (r504644) @@ -128,11 +128,11 @@ share/icons/hicolor/48x48/apps/vlc.png %%NLS%%share/locale/ach/LC_MESSAGES/vlc.mo %%NLS%%share/locale/af/LC_MESSAGES/vlc.mo %%NLS%%share/locale/am/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/am_ET/LC_MESSAGES/vlc.mo %%NLS%%share/locale/an/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ar/LC_MESSAGES/vlc.mo %%NLS%%share/locale/as_IN/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ast/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/az/LC_MESSAGES/vlc.mo %%NLS%%share/locale/be/LC_MESSAGES/vlc.mo %%NLS%%share/locale/bg/LC_MESSAGES/vlc.mo %%NLS%%share/locale/bn/LC_MESSAGES/vlc.mo @@ -141,8 +141,8 @@ share/icons/hicolor/48x48/apps/vlc.png %%NLS%%share/locale/brx/LC_MESSAGES/vlc.mo %%NLS%%share/locale/bs/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ca/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/ca@valencia/LC_MESSAGES/vlc.mo %%NLS%%share/locale/cgg/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/ckb/LC_MESSAGES/vlc.mo %%NLS%%share/locale/co/LC_MESSAGES/vlc.mo %%NLS%%share/locale/cs/LC_MESSAGES/vlc.mo %%NLS%%share/locale/cy/LC_MESSAGES/vlc.mo @@ -151,6 +151,7 @@ share/icons/hicolor/48x48/apps/vlc.png %%NLS%%share/locale/el/LC_MESSAGES/vlc.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/vlc.mo %%NLS%%share/locale/es/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/es_MX/LC_MESSAGES/vlc.mo %%NLS%%share/locale/et/LC_MESSAGES/vlc.mo %%NLS%%share/locale/eu/LC_MESSAGES/vlc.mo %%NLS%%share/locale/fa/LC_MESSAGES/vlc.mo @@ -168,34 +169,32 @@ share/icons/hicolor/48x48/apps/vlc.png %%NLS%%share/locale/hr/LC_MESSAGES/vlc.mo %%NLS%%share/locale/hu/LC_MESSAGES/vlc.mo %%NLS%%share/locale/hy/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/ia/LC_MESSAGES/vlc.mo %%NLS%%share/locale/id/LC_MESSAGES/vlc.mo %%NLS%%share/locale/is/LC_MESSAGES/vlc.mo %%NLS%%share/locale/it/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ja/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ka/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/kab/LC_MESSAGES/vlc.mo %%NLS%%share/locale/kk/LC_MESSAGES/vlc.mo %%NLS%%share/locale/km/LC_MESSAGES/vlc.mo %%NLS%%share/locale/kn/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ko/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ks_IN/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/ku_IQ/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ky/LC_MESSAGES/vlc.mo %%NLS%%share/locale/lg/LC_MESSAGES/vlc.mo %%NLS%%share/locale/lt/LC_MESSAGES/vlc.mo %%NLS%%share/locale/lv/LC_MESSAGES/vlc.mo %%NLS%%share/locale/mai/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/mk/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ml/LC_MESSAGES/vlc.mo %%NLS%%share/locale/mn/LC_MESSAGES/vlc.mo %%NLS%%share/locale/mr/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ms/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/my/LC_MESSAGES/vlc.mo %%NLS%%share/locale/nb/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ne/LC_MESSAGES/vlc.mo %%NLS%%share/locale/nl/LC_MESSAGES/vlc.mo %%NLS%%share/locale/nn/LC_MESSAGES/vlc.mo %%NLS%%share/locale/oc/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/or/LC_MESSAGES/vlc.mo %%NLS%%share/locale/pa/LC_MESSAGES/vlc.mo %%NLS%%share/locale/pl/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ps/LC_MESSAGES/vlc.mo @@ -211,10 +210,9 @@ share/icons/hicolor/48x48/apps/vlc.png %%NLS%%share/locale/sv/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ta/LC_MESSAGES/vlc.mo %%NLS%%share/locale/te/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/tet/LC_MESSAGES/vlc.mo %%NLS%%share/locale/th/LC_MESSAGES/vlc.mo -%%NLS%%share/locale/tl/LC_MESSAGES/vlc.mo %%NLS%%share/locale/tr/LC_MESSAGES/vlc.mo +%%NLS%%share/locale/tt/LC_MESSAGES/vlc.mo %%NLS%%share/locale/ug/LC_MESSAGES/vlc.mo %%NLS%%share/locale/uk/LC_MESSAGES/vlc.mo %%NLS%%share/locale/uz/LC_MESSAGES/vlc.mo From owner-svn-ports-all@freebsd.org Thu Jun 20 16:46:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D9CB15C15D7; Thu, 20 Jun 2019 16:46:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D7A97898B5; Thu, 20 Jun 2019 16:46:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B2D37EBC2; Thu, 20 Jun 2019 16:46:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KGk3UR092062; Thu, 20 Jun 2019 16:46:03 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KGk3xR092060; Thu, 20 Jun 2019 16:46:03 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201646.x5KGk3xR092060@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 16:46:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504645 - in head/textproc: . rubygem-asciidoctor-plantuml008 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/textproc: . rubygem-asciidoctor-plantuml008 X-SVN-Commit-Revision: 504645 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D7A97898B5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:46:04 -0000 Author: sunpoet Date: Thu Jun 20 16:46:03 2019 New Revision: 504645 URL: https://svnweb.freebsd.org/changeset/ports/504645 Log: Add rubygem-asciidoctor-plantuml008 0.0.8 (copied from rubygem-asciidoctor-plantuml) - Add PORTSCOUT Added: head/textproc/rubygem-asciidoctor-plantuml008/ - copied from r504574, head/textproc/rubygem-asciidoctor-plantuml/ Modified: head/textproc/Makefile head/textproc/rubygem-asciidoctor-plantuml008/Makefile Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Thu Jun 20 16:29:09 2019 (r504644) +++ head/textproc/Makefile Thu Jun 20 16:46:03 2019 (r504645) @@ -1480,6 +1480,7 @@ SUBDIR += rubygem-asciidoctor SUBDIR += rubygem-asciidoctor-diagram SUBDIR += rubygem-asciidoctor-plantuml + SUBDIR += rubygem-asciidoctor-plantuml008 SUBDIR += rubygem-autoprefixer-rails SUBDIR += rubygem-babel-source SUBDIR += rubygem-babel-transpiler Modified: head/textproc/rubygem-asciidoctor-plantuml008/Makefile ============================================================================== --- head/textproc/rubygem-asciidoctor-plantuml/Makefile Wed Jun 19 16:54:05 2019 (r504574) +++ head/textproc/rubygem-asciidoctor-plantuml008/Makefile Thu Jun 20 16:46:03 2019 (r504645) @@ -5,6 +5,7 @@ PORTNAME= asciidoctor-plantuml PORTVERSION= 0.0.8 CATEGORIES= textproc rubygems MASTER_SITES= RG +PKGNAMESUFFIX= 008 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Asciidoctor PlantUML extension @@ -13,8 +14,11 @@ LICENSE= MIT RUN_DEPENDS= rubygem-asciidoctor>=1.5:textproc/rubygem-asciidoctor -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +PORTSCOUT= ignore:1 .include From owner-svn-ports-all@freebsd.org Thu Jun 20 16:46:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27F2015C160E; Thu, 20 Jun 2019 16:46:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AF908898F9; Thu, 20 Jun 2019 16:46:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9362EBC3; Thu, 20 Jun 2019 16:46:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KGk88h092171; Thu, 20 Jun 2019 16:46:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KGk8qU092170; Thu, 20 Jun 2019 16:46:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201646.x5KGk8qU092170@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 16:46:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504646 - head/www/gitlab-ce X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/gitlab-ce X-SVN-Commit-Revision: 504646 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AF908898F9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:46:10 -0000 Author: sunpoet Date: Thu Jun 20 16:46:08 2019 New Revision: 504646 URL: https://svnweb.freebsd.org/changeset/ports/504646 Log: Change RUN_DEPENDS from rubygem-asciidoctor-plantuml to rubygem-asciidoctor-plantuml008 - Bump PORTREVISION for dependency change Modified: head/www/gitlab-ce/Makefile Modified: head/www/gitlab-ce/Makefile ============================================================================== --- head/www/gitlab-ce/Makefile Thu Jun 20 16:46:03 2019 (r504645) +++ head/www/gitlab-ce/Makefile Thu Jun 20 16:46:08 2019 (r504646) @@ -3,7 +3,7 @@ PORTNAME= gitlab-ce PORTVERSION= 11.11.3 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= www devel MAINTAINER= mfechner@FreeBSD.org @@ -98,7 +98,7 @@ MY_DEPENDS= git>=2.21.0:devel/git \ rubygem-creole>=0.5.0:textproc/rubygem-creole \ rubygem-wikicloth081>=0.8.1:textproc/rubygem-wikicloth081 \ rubygem-asciidoctor>=1.5.8:textproc/rubygem-asciidoctor \ - rubygem-asciidoctor-plantuml>=0.0.8:textproc/rubygem-asciidoctor-plantuml \ + rubygem-asciidoctor-plantuml008>=0.0.8:textproc/rubygem-asciidoctor-plantuml008 \ rubygem-rouge>=3.1:textproc/rubygem-rouge \ rubygem-truncato>=0.7.11:textproc/rubygem-truncato \ rubygem-bootstrap_form>=4.2.0:devel/rubygem-bootstrap_form \ From owner-svn-ports-all@freebsd.org Thu Jun 20 16:48:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 64C6715C16A9 for ; Thu, 20 Jun 2019 16:48:13 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0AA9789C3B for ; Thu, 20 Jun 2019 16:48:13 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: from mail-ed1-f49.google.com (mail-ed1-f49.google.com [209.85.208.49]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "GTS CA 1O1" (verified OK)) (Authenticated sender: sunpoet) by smtp.freebsd.org (Postfix) with ESMTPSA id A3B5F2D0B2 for ; Thu, 20 Jun 2019 16:48:12 +0000 (UTC) (envelope-from sunpoet@freebsd.org) Received: by mail-ed1-f49.google.com with SMTP id k8so5644170eds.7 for ; Thu, 20 Jun 2019 09:48:12 -0700 (PDT) X-Gm-Message-State: APjAAAWs7EUUwS2GfAMcuzC2SVc7Q7giQ2l9rE8JX8iZS7q4Q4vd8tGL 19Daa5FyXX/Agcpeo2p3XJYbKNXpi89ZlZmdrkAk0g== X-Google-Smtp-Source: APXvYqzQm6NpqoPLklMizkXO3tLiocVpHLrtpTNsDN8g85Ay3PWydtmbzNX2ST3eboz+JiCf42ZIEXUuOwUaDBbdsW4= X-Received: by 2002:a50:b64a:: with SMTP id c10mr54351597ede.256.1561049291663; Thu, 20 Jun 2019 09:48:11 -0700 (PDT) MIME-Version: 1.0 References: <201906191654.x5JGsAMB035683@repo.freebsd.org> In-Reply-To: From: Po-Chuan Hsieh Date: Fri, 21 Jun 2019 00:47:35 +0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r504575 - head/textproc/rubygem-asciidoctor-plantuml To: Matthias Fechner Cc: Sunpoet Po-Chuan Hsieh , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-Rspamd-Queue-Id: 0AA9789C3B X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.98)[-0.983,0] Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 16:48:13 -0000 On Thu, Jun 20, 2019 at 3:07 PM Matthias Fechner wrote: > Dear Sunpoet, > > Am 19.06.2019 um 18:54 schrieb Sunpoet Po-Chuan Hsieh: > > Log: > > Update to 0.0.9 > > > > Changes: > https://github.com/hsanson/asciidoctor-plantuml/commits/master > > > > Modified: > > head/textproc/rubygem-asciidoctor-plantuml/Makefile > > head/textproc/rubygem-asciidoctor-plantuml/distinfo > > this has broken www/gitlab-ce. > I have the next day no time to look into it, could you please fix it? > Thanks. > It should be fixed in r504646. Thanks! > > Gru=C3=9F > Matthias > > -- > > "Programming today is a race between software engineers striving to > build bigger and better idiot-proof programs, and the universe trying to > produce bigger and better idiots. So far, the universe is winning." -- > Rich Cook > > > From owner-svn-ports-all@freebsd.org Thu Jun 20 17:16:38 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7CB6515C1F1F; Thu, 20 Jun 2019 17:16:38 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 23DB98AA56; Thu, 20 Jun 2019 17:16:38 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ED5ACF0FC; Thu, 20 Jun 2019 17:16:37 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHGbd4008138; Thu, 20 Jun 2019 17:16:37 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHGbJO008136; Thu, 20 Jun 2019 17:16:37 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201716.x5KHGbJO008136@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:16:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504647 - head/www/py-azure-common X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/www/py-azure-common X-SVN-Commit-Revision: 504647 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 23DB98AA56 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:16:38 -0000 Author: dbaio Date: Thu Jun 20 17:16:37 2019 New Revision: 504647 URL: https://svnweb.freebsd.org/changeset/ports/504647 Log: www/py-azure-common: Update to 1.1.22 Changelog: https://pypi.org/project/azure-common/1.1.22/ Reported by: portscout Modified: head/www/py-azure-common/Makefile head/www/py-azure-common/distinfo Modified: head/www/py-azure-common/Makefile ============================================================================== --- head/www/py-azure-common/Makefile Thu Jun 20 16:46:08 2019 (r504646) +++ head/www/py-azure-common/Makefile Thu Jun 20 17:16:37 2019 (r504647) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-common -PORTVERSION= 1.1.21 +PORTVERSION= 1.1.22 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-azure-common/distinfo ============================================================================== --- head/www/py-azure-common/distinfo Thu Jun 20 16:46:08 2019 (r504646) +++ head/www/py-azure-common/distinfo Thu Jun 20 17:16:37 2019 (r504647) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558573350 -SHA256 (azure-common-1.1.21.zip) = 25d696d2affbf5fe9b13aebe66271fce545e673e7e1eeaaec2d73599ba639d63 -SIZE (azure-common-1.1.21.zip) = 16990 +TIMESTAMP = 1561043381 +SHA256 (azure-common-1.1.22.zip) = c8e4a7bf15f139f779a415d2d3c371738b1e9f5e14abd9c18af6b9bed3babf35 +SIZE (azure-common-1.1.22.zip) = 17065 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:18:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D83815C1F95; Thu, 20 Jun 2019 17:18:11 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B48CF8AB49; Thu, 20 Jun 2019 17:18:10 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A3AE8F0FD; Thu, 20 Jun 2019 17:18:10 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHIAZM008321; Thu, 20 Jun 2019 17:18:10 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHIA6p008319; Thu, 20 Jun 2019 17:18:10 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201718.x5KHIA6p008319@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:18:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504648 - head/devel/py-azure-multiapi-storage X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-multiapi-storage X-SVN-Commit-Revision: 504648 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B48CF8AB49 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:18:11 -0000 Author: dbaio Date: Thu Jun 20 17:18:09 2019 New Revision: 504648 URL: https://svnweb.freebsd.org/changeset/ports/504648 Log: devel/py-azure-multiapi-storage: Update to 0.2.4 Changelog: https://pypi.org/project/azure-multiapi-storage/0.2.4/ Reported by: portscout Modified: head/devel/py-azure-multiapi-storage/Makefile head/devel/py-azure-multiapi-storage/distinfo Modified: head/devel/py-azure-multiapi-storage/Makefile ============================================================================== --- head/devel/py-azure-multiapi-storage/Makefile Thu Jun 20 17:16:37 2019 (r504647) +++ head/devel/py-azure-multiapi-storage/Makefile Thu Jun 20 17:18:09 2019 (r504648) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-multiapi-storage -PORTVERSION= 0.2.3 +PORTVERSION= 0.2.4 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-azure-multiapi-storage/distinfo ============================================================================== --- head/devel/py-azure-multiapi-storage/distinfo Thu Jun 20 17:16:37 2019 (r504647) +++ head/devel/py-azure-multiapi-storage/distinfo Thu Jun 20 17:18:09 2019 (r504648) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553208359 -SHA256 (azure-multiapi-storage-0.2.3.tar.gz) = ab3dbf0c422e53161b5ba0b2e8be5f4a144d15a5c082cfa1f2ef6b7e83b7a414 -SIZE (azure-multiapi-storage-0.2.3.tar.gz) = 816963 +TIMESTAMP = 1561037411 +SHA256 (azure-multiapi-storage-0.2.4.tar.gz) = 2f5e9d3aaef82c6b0e5a1e735bd02548063be6f4d2951ad94a0d9bde08bb0a7f +SIZE (azure-multiapi-storage-0.2.4.tar.gz) = 957724 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:19:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2145815C1FD6; Thu, 20 Jun 2019 17:19:00 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B9F408AC25; Thu, 20 Jun 2019 17:18:59 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 90709F103; Thu, 20 Jun 2019 17:18:59 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHIxo6008471; Thu, 20 Jun 2019 17:18:59 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHIxq7008469; Thu, 20 Jun 2019 17:18:59 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201718.x5KHIxq7008469@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:18:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504649 - head/devel/py-azure-mgmt-storage X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-mgmt-storage X-SVN-Commit-Revision: 504649 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B9F408AC25 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:19:00 -0000 Author: dbaio Date: Thu Jun 20 17:18:58 2019 New Revision: 504649 URL: https://svnweb.freebsd.org/changeset/ports/504649 Log: devel/py-azure-mgmt-storage: Update to 4.0.0 Changelog: https://pypi.org/project/azure-mgmt-storage/4.0.0/ Reported by: portscout Modified: head/devel/py-azure-mgmt-storage/Makefile head/devel/py-azure-mgmt-storage/distinfo Modified: head/devel/py-azure-mgmt-storage/Makefile ============================================================================== --- head/devel/py-azure-mgmt-storage/Makefile Thu Jun 20 17:18:09 2019 (r504648) +++ head/devel/py-azure-mgmt-storage/Makefile Thu Jun 20 17:18:58 2019 (r504649) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-mgmt-storage -PORTVERSION= 3.3.0 +PORTVERSION= 4.0.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-azure-mgmt-storage/distinfo ============================================================================== --- head/devel/py-azure-mgmt-storage/distinfo Thu Jun 20 17:18:09 2019 (r504648) +++ head/devel/py-azure-mgmt-storage/distinfo Thu Jun 20 17:18:58 2019 (r504649) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558571575 -SHA256 (azure-mgmt-storage-3.3.0.zip) = 06faa7033a17ecd5127cab476a7cd79d5fe7b68e332c8e8e8303a20c9157cecd -SIZE (azure-mgmt-storage-3.3.0.zip) = 1058129 +TIMESTAMP = 1561037517 +SHA256 (azure-mgmt-storage-4.0.0.zip) = fbed7ccd0d1567a0b201784c477b128a90434b1bf8ecd13179c376253418adcf +SIZE (azure-mgmt-storage-4.0.0.zip) = 453608 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:19:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F37D15C201A; Thu, 20 Jun 2019 17:19:37 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AA1498AD04; Thu, 20 Jun 2019 17:19:36 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 82CDDF104; Thu, 20 Jun 2019 17:19:36 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHJagi008615; Thu, 20 Jun 2019 17:19:36 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHJaZZ008613; Thu, 20 Jun 2019 17:19:36 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201719.x5KHJaZZ008613@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:19:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504650 - head/devel/py-azure-mgmt-resource X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-mgmt-resource X-SVN-Commit-Revision: 504650 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AA1498AD04 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:19:37 -0000 Author: dbaio Date: Thu Jun 20 17:19:35 2019 New Revision: 504650 URL: https://svnweb.freebsd.org/changeset/ports/504650 Log: devel/py-azure-mgmt-resource: Update to 3.0.0 Changelog: https://pypi.org/project/azure-mgmt-resource/3.0.0/ Reported by: portscout Modified: head/devel/py-azure-mgmt-resource/Makefile head/devel/py-azure-mgmt-resource/distinfo Modified: head/devel/py-azure-mgmt-resource/Makefile ============================================================================== --- head/devel/py-azure-mgmt-resource/Makefile Thu Jun 20 17:18:58 2019 (r504649) +++ head/devel/py-azure-mgmt-resource/Makefile Thu Jun 20 17:19:35 2019 (r504650) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-mgmt-resource -PORTVERSION= 2.2.0 +PORTVERSION= 3.0.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-azure-mgmt-resource/distinfo ============================================================================== --- head/devel/py-azure-mgmt-resource/distinfo Thu Jun 20 17:18:58 2019 (r504649) +++ head/devel/py-azure-mgmt-resource/distinfo Thu Jun 20 17:19:35 2019 (r504650) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559777618 -SHA256 (azure-mgmt-resource-2.2.0.zip) = bc3d683dbd0289a278b79e55c9de8a5a3db03e3894484b2e5dbc95e4e9eb779c -SIZE (azure-mgmt-resource-2.2.0.zip) = 890676 +TIMESTAMP = 1561037567 +SHA256 (azure-mgmt-resource-3.0.0.zip) = a64b49f6e9bc07c7499c767c9fadfa2019a4d44222d78c941cd748653f83a963 +SIZE (azure-mgmt-resource-3.0.0.zip) = 631187 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:19:55 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8370815C204C; Thu, 20 Jun 2019 17:19:55 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2ABCD8ADE8; Thu, 20 Jun 2019 17:19:55 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0611CF106; Thu, 20 Jun 2019 17:19:55 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHJs8K008751; Thu, 20 Jun 2019 17:19:54 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHJsGQ008749; Thu, 20 Jun 2019 17:19:54 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201719.x5KHJsGQ008749@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:19:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504651 - head/devel/py-azure-mgmt-rdbms X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-mgmt-rdbms X-SVN-Commit-Revision: 504651 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2ABCD8ADE8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:19:55 -0000 Author: dbaio Date: Thu Jun 20 17:19:54 2019 New Revision: 504651 URL: https://svnweb.freebsd.org/changeset/ports/504651 Log: devel/py-azure-mgmt-rdbms: Update to 1.9.0 Changelog: https://pypi.org/project/azure-mgmt-rdbms/1.9.0/ Reported by: portscout Modified: head/devel/py-azure-mgmt-rdbms/Makefile head/devel/py-azure-mgmt-rdbms/distinfo Modified: head/devel/py-azure-mgmt-rdbms/Makefile ============================================================================== --- head/devel/py-azure-mgmt-rdbms/Makefile Thu Jun 20 17:19:35 2019 (r504650) +++ head/devel/py-azure-mgmt-rdbms/Makefile Thu Jun 20 17:19:54 2019 (r504651) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-mgmt-rdbms -PORTVERSION= 1.8.0 +PORTVERSION= 1.9.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-azure-mgmt-rdbms/distinfo ============================================================================== --- head/devel/py-azure-mgmt-rdbms/distinfo Thu Jun 20 17:19:35 2019 (r504650) +++ head/devel/py-azure-mgmt-rdbms/distinfo Thu Jun 20 17:19:54 2019 (r504651) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555196831 -SHA256 (azure-mgmt-rdbms-1.8.0.zip) = 40abbe4f9c59d7906594ceed067d0e7d09fef44be0d16aded5d5717f1a8aa5ea -SIZE (azure-mgmt-rdbms-1.8.0.zip) = 269886 +TIMESTAMP = 1561037625 +SHA256 (azure-mgmt-rdbms-1.9.0.zip) = d9d4090010cbb64176ce094603f1298af7368ddb3a0cb606d5e972331285216d +SIZE (azure-mgmt-rdbms-1.9.0.zip) = 272863 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:20:06 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9C4015C2084; Thu, 20 Jun 2019 17:20:06 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 81B6A8AEB9; Thu, 20 Jun 2019 17:20:06 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 599EDF10A; Thu, 20 Jun 2019 17:20:06 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHK6Me008912; Thu, 20 Jun 2019 17:20:06 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHK554008911; Thu, 20 Jun 2019 17:20:05 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201720.x5KHK554008911@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:20:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504652 - head/devel/py-azure-mgmt-keyvault X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-mgmt-keyvault X-SVN-Commit-Revision: 504652 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 81B6A8AEB9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:20:07 -0000 Author: dbaio Date: Thu Jun 20 17:20:05 2019 New Revision: 504652 URL: https://svnweb.freebsd.org/changeset/ports/504652 Log: devel/py-azure-mgmt-keyvault: Update to 2.0.0 Changelog: https://pypi.org/project/azure-mgmt-keyvault/2.0.0/ Reported by: portscout Modified: head/devel/py-azure-mgmt-keyvault/Makefile head/devel/py-azure-mgmt-keyvault/distinfo Modified: head/devel/py-azure-mgmt-keyvault/Makefile ============================================================================== --- head/devel/py-azure-mgmt-keyvault/Makefile Thu Jun 20 17:19:54 2019 (r504651) +++ head/devel/py-azure-mgmt-keyvault/Makefile Thu Jun 20 17:20:05 2019 (r504652) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-mgmt-keyvault -PORTVERSION= 1.1.0 +PORTVERSION= 2.0.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-azure-mgmt-keyvault/distinfo ============================================================================== --- head/devel/py-azure-mgmt-keyvault/distinfo Thu Jun 20 17:19:54 2019 (r504651) +++ head/devel/py-azure-mgmt-keyvault/distinfo Thu Jun 20 17:20:05 2019 (r504652) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544279072 -SHA256 (azure-mgmt-keyvault-1.1.0.zip) = 05a15327a922441d2ba32add50a35c7f1b9225727cbdd3eeb98bc656e4684099 -SIZE (azure-mgmt-keyvault-1.1.0.zip) = 122664 +TIMESTAMP = 1561037658 +SHA256 (azure-mgmt-keyvault-2.0.0.zip) = 4ad6294a19c97db05b754ec2308083f53cbd7a1219d0651dcc277b044989f114 +SIZE (azure-mgmt-keyvault-2.0.0.zip) = 96027 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:20:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3DACC15C20C3; Thu, 20 Jun 2019 17:20:19 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D2F468AF8C; Thu, 20 Jun 2019 17:20:18 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9A1AF10B; Thu, 20 Jun 2019 17:20:18 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHKIpC009040; Thu, 20 Jun 2019 17:20:18 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHKIwN009038; Thu, 20 Jun 2019 17:20:18 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201720.x5KHKIwN009038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:20:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504653 - head/devel/py-azure-mgmt-hdinsight X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-mgmt-hdinsight X-SVN-Commit-Revision: 504653 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D2F468AF8C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:20:19 -0000 Author: dbaio Date: Thu Jun 20 17:20:18 2019 New Revision: 504653 URL: https://svnweb.freebsd.org/changeset/ports/504653 Log: devel/py-azure-mgmt-hdinsight: Update to 1.1.0 Changelog: https://pypi.org/project/azure-mgmt-hdinsight/1.1.0/ Reported by: portscout Modified: head/devel/py-azure-mgmt-hdinsight/Makefile head/devel/py-azure-mgmt-hdinsight/distinfo Modified: head/devel/py-azure-mgmt-hdinsight/Makefile ============================================================================== --- head/devel/py-azure-mgmt-hdinsight/Makefile Thu Jun 20 17:20:05 2019 (r504652) +++ head/devel/py-azure-mgmt-hdinsight/Makefile Thu Jun 20 17:20:18 2019 (r504653) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-mgmt-hdinsight -PORTVERSION= 1.0.0 +PORTVERSION= 1.1.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-azure-mgmt-hdinsight/distinfo ============================================================================== --- head/devel/py-azure-mgmt-hdinsight/distinfo Thu Jun 20 17:20:05 2019 (r504652) +++ head/devel/py-azure-mgmt-hdinsight/distinfo Thu Jun 20 17:20:18 2019 (r504653) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555196862 -SHA256 (azure-mgmt-hdinsight-1.0.0.zip) = e623692af766203adbdbbf3eb08f28ca17f17d1c8c3d361c122c2b293ffc1b08 -SIZE (azure-mgmt-hdinsight-1.0.0.zip) = 136535 +TIMESTAMP = 1561037686 +SHA256 (azure-mgmt-hdinsight-1.1.0.zip) = 76d277fb1a2fedc5181a7c738f058ebff8646bde5fb477cb53a43712166c4952 +SIZE (azure-mgmt-hdinsight-1.1.0.zip) = 62456 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:21:06 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABD5C15C227C; Thu, 20 Jun 2019 17:21:06 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 542F48B0F9; Thu, 20 Jun 2019 17:21:06 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 22647F250; Thu, 20 Jun 2019 17:21:06 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHL5qJ010717; Thu, 20 Jun 2019 17:21:05 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHL5Ok010715; Thu, 20 Jun 2019 17:21:05 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201721.x5KHL5Ok010715@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:21:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504654 - head/devel/py-azure-mgmt-eventhub X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-mgmt-eventhub X-SVN-Commit-Revision: 504654 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 542F48B0F9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:21:06 -0000 Author: dbaio Date: Thu Jun 20 17:21:05 2019 New Revision: 504654 URL: https://svnweb.freebsd.org/changeset/ports/504654 Log: devel/py-azure-mgmt-eventhub: Update to 3.0.0 Changelog: https://pypi.org/project/azure-mgmt-eventhub/3.0.0/ Reported by: portscout Modified: head/devel/py-azure-mgmt-eventhub/Makefile head/devel/py-azure-mgmt-eventhub/distinfo Modified: head/devel/py-azure-mgmt-eventhub/Makefile ============================================================================== --- head/devel/py-azure-mgmt-eventhub/Makefile Thu Jun 20 17:20:18 2019 (r504653) +++ head/devel/py-azure-mgmt-eventhub/Makefile Thu Jun 20 17:21:05 2019 (r504654) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-mgmt-eventhub -PORTVERSION= 2.6.0 +PORTVERSION= 3.0.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-azure-mgmt-eventhub/distinfo ============================================================================== --- head/devel/py-azure-mgmt-eventhub/distinfo Thu Jun 20 17:20:18 2019 (r504653) +++ head/devel/py-azure-mgmt-eventhub/distinfo Thu Jun 20 17:21:05 2019 (r504654) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557601358 -SHA256 (azure-mgmt-eventhub-2.6.0.zip) = e86b20aa1f6f9c77a83d4af6e708823cc3593658bcea7b12228efc48e214d7da -SIZE (azure-mgmt-eventhub-2.6.0.zip) = 217743 +TIMESTAMP = 1561037716 +SHA256 (azure-mgmt-eventhub-3.0.0.zip) = b7e77677d7cd8e075c4b4dd3c2c85d44f6adacd948ec49926e54b7119e8e8615 +SIZE (azure-mgmt-eventhub-3.0.0.zip) = 126050 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:21:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 10DC715C22B4; Thu, 20 Jun 2019 17:21:19 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ADE1D8B342; Thu, 20 Jun 2019 17:21:18 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8ADEBF259; Thu, 20 Jun 2019 17:21:18 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHLI7k010849; Thu, 20 Jun 2019 17:21:18 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHLIk8010847; Thu, 20 Jun 2019 17:21:18 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201721.x5KHLIk8010847@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:21:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504655 - head/devel/py-azure-mgmt-dns X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-mgmt-dns X-SVN-Commit-Revision: 504655 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: ADE1D8B342 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:21:19 -0000 Author: dbaio Date: Thu Jun 20 17:21:17 2019 New Revision: 504655 URL: https://svnweb.freebsd.org/changeset/ports/504655 Log: devel/py-azure-mgmt-dns: Update to 3.0.0 Changelog: https://pypi.org/project/azure-mgmt-dns/3.0.0/ Reported by: portscout Modified: head/devel/py-azure-mgmt-dns/Makefile head/devel/py-azure-mgmt-dns/distinfo Modified: head/devel/py-azure-mgmt-dns/Makefile ============================================================================== --- head/devel/py-azure-mgmt-dns/Makefile Thu Jun 20 17:21:05 2019 (r504654) +++ head/devel/py-azure-mgmt-dns/Makefile Thu Jun 20 17:21:17 2019 (r504655) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-mgmt-dns -PORTVERSION= 2.1.0 +PORTVERSION= 3.0.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-azure-mgmt-dns/distinfo ============================================================================== --- head/devel/py-azure-mgmt-dns/distinfo Thu Jun 20 17:21:05 2019 (r504654) +++ head/devel/py-azure-mgmt-dns/distinfo Thu Jun 20 17:21:17 2019 (r504655) @@ -1,3 +1,3 @@ -TIMESTAMP = 1545601099 -SHA256 (azure-mgmt-dns-2.1.0.zip) = 3730b1b3f545a5aa43c0fff07418b362a789eb7d81286e2bed90ffef88bfa5d0 -SIZE (azure-mgmt-dns-2.1.0.zip) = 145766 +TIMESTAMP = 1561037746 +SHA256 (azure-mgmt-dns-3.0.0.zip) = 6ecdf4e67d8eb5db593ec331e6d9f350616e77c31225c91d266605e03e63b37f +SIZE (azure-mgmt-dns-3.0.0.zip) = 89022 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:22:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7787015C237F; Thu, 20 Jun 2019 17:22:57 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1DDE78B6E3; Thu, 20 Jun 2019 17:22:57 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E6028F2E3; Thu, 20 Jun 2019 17:22:56 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHMuaJ014030; Thu, 20 Jun 2019 17:22:56 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHMuUn014028; Thu, 20 Jun 2019 17:22:56 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201722.x5KHMuUn014028@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:22:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504656 - head/devel/py-azure-mgmt-cosmosdb X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-mgmt-cosmosdb X-SVN-Commit-Revision: 504656 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1DDE78B6E3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:22:57 -0000 Author: dbaio Date: Thu Jun 20 17:22:56 2019 New Revision: 504656 URL: https://svnweb.freebsd.org/changeset/ports/504656 Log: devel/py-azure-mgmt-cosmosdb: Update to 0.7.0 Changelog: https://pypi.org/project/azure-mgmt-cosmosdb/0.7.0/ Reported by: portscout Modified: head/devel/py-azure-mgmt-cosmosdb/Makefile head/devel/py-azure-mgmt-cosmosdb/distinfo Modified: head/devel/py-azure-mgmt-cosmosdb/Makefile ============================================================================== --- head/devel/py-azure-mgmt-cosmosdb/Makefile Thu Jun 20 17:21:17 2019 (r504655) +++ head/devel/py-azure-mgmt-cosmosdb/Makefile Thu Jun 20 17:22:56 2019 (r504656) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-mgmt-cosmosdb -PORTVERSION= 0.6.1 +PORTVERSION= 0.7.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-azure-mgmt-cosmosdb/distinfo ============================================================================== --- head/devel/py-azure-mgmt-cosmosdb/distinfo Thu Jun 20 17:21:17 2019 (r504655) +++ head/devel/py-azure-mgmt-cosmosdb/distinfo Thu Jun 20 17:22:56 2019 (r504656) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559777914 -SHA256 (azure-mgmt-cosmosdb-0.6.1.zip) = 69656c50f06263e77bf1fffc5bb6ed8dc816ba598590fd36f4549f2d0c9cc013 -SIZE (azure-mgmt-cosmosdb-0.6.1.zip) = 209501 +TIMESTAMP = 1561037774 +SHA256 (azure-mgmt-cosmosdb-0.7.0.zip) = b980d1556f1a415a3c7b964faff83a1448914394c4c878a6a61cd2e693fb3db5 +SIZE (azure-mgmt-cosmosdb-0.7.0.zip) = 216358 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:23:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2EDAC15C23BB; Thu, 20 Jun 2019 17:23:13 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C8D0F8B7BE; Thu, 20 Jun 2019 17:23:12 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A4185F2E4; Thu, 20 Jun 2019 17:23:12 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHNCKX014169; Thu, 20 Jun 2019 17:23:12 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHNCND014168; Thu, 20 Jun 2019 17:23:12 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201723.x5KHNCND014168@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:23:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504657 - head/devel/py-azure-mgmt-eventgrid X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-mgmt-eventgrid X-SVN-Commit-Revision: 504657 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C8D0F8B7BE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:23:13 -0000 Author: dbaio Date: Thu Jun 20 17:23:12 2019 New Revision: 504657 URL: https://svnweb.freebsd.org/changeset/ports/504657 Log: devel/py-azure-mgmt-eventgrid: Update to 2.2.0 Modified: head/devel/py-azure-mgmt-eventgrid/Makefile head/devel/py-azure-mgmt-eventgrid/distinfo Modified: head/devel/py-azure-mgmt-eventgrid/Makefile ============================================================================== --- head/devel/py-azure-mgmt-eventgrid/Makefile Thu Jun 20 17:22:56 2019 (r504656) +++ head/devel/py-azure-mgmt-eventgrid/Makefile Thu Jun 20 17:23:12 2019 (r504657) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-mgmt-eventgrid -PORTVERSION= 2.0.0 +PORTVERSION= 2.2.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-azure-mgmt-eventgrid/distinfo ============================================================================== --- head/devel/py-azure-mgmt-eventgrid/distinfo Thu Jun 20 17:22:56 2019 (r504656) +++ head/devel/py-azure-mgmt-eventgrid/distinfo Thu Jun 20 17:23:12 2019 (r504657) @@ -1,3 +1,3 @@ -TIMESTAMP = 1548591493 -SHA256 (azure-mgmt-eventgrid-2.0.0.zip) = 9a1da1085d39163b13dee14215b02f18eab93ede10ffe83dc6030ecf2163d2f1 -SIZE (azure-mgmt-eventgrid-2.0.0.zip) = 70840 +TIMESTAMP = 1561039264 +SHA256 (azure-mgmt-eventgrid-2.2.0.zip) = c62058923ed20db35b04491cd1ad6a692f337244d05c377ecc14a53c06651cc3 +SIZE (azure-mgmt-eventgrid-2.2.0.zip) = 125606 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:23:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C49915C23FE; Thu, 20 Jun 2019 17:23:29 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F292A8B89F; Thu, 20 Jun 2019 17:23:28 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CE4BBF2E6; Thu, 20 Jun 2019 17:23:28 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHNSHT014297; Thu, 20 Jun 2019 17:23:28 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHNSJc014296; Thu, 20 Jun 2019 17:23:28 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201723.x5KHNSJc014296@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:23:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504658 - head/devel/py-azure-batch X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/devel/py-azure-batch X-SVN-Commit-Revision: 504658 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F292A8B89F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:23:29 -0000 Author: dbaio Date: Thu Jun 20 17:23:28 2019 New Revision: 504658 URL: https://svnweb.freebsd.org/changeset/ports/504658 Log: devel/py-azure-batch: Update to 7.0.0 Changelog: https://pypi.org/project/azure-batch/7.0.0/ Reported by: portscout Modified: head/devel/py-azure-batch/Makefile head/devel/py-azure-batch/distinfo Modified: head/devel/py-azure-batch/Makefile ============================================================================== --- head/devel/py-azure-batch/Makefile Thu Jun 20 17:23:12 2019 (r504657) +++ head/devel/py-azure-batch/Makefile Thu Jun 20 17:23:28 2019 (r504658) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-batch -PORTVERSION= 6.0.1 +PORTVERSION= 7.0.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-azure-batch/distinfo ============================================================================== --- head/devel/py-azure-batch/distinfo Thu Jun 20 17:23:12 2019 (r504657) +++ head/devel/py-azure-batch/distinfo Thu Jun 20 17:23:28 2019 (r504658) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553209549 -SHA256 (azure-batch-6.0.1.zip) = d5b0de3db0058cd69baf30e059874094abf865e24ccd82e3cd25f3a48b9676d1 -SIZE (azure-batch-6.0.1.zip) = 226998 +TIMESTAMP = 1561037811 +SHA256 (azure-batch-7.0.0.zip) = 1225f142176a1cbc8330d0367009da41a2f7d3c3fd070fa4f80890bf9a6c15e1 +SIZE (azure-batch-7.0.0.zip) = 236003 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:23:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3EF5A15C2458; Thu, 20 Jun 2019 17:23:46 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D82018B996; Thu, 20 Jun 2019 17:23:45 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A93B1F2E8; Thu, 20 Jun 2019 17:23:45 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHNjVq014428; Thu, 20 Jun 2019 17:23:45 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHNjrd014427; Thu, 20 Jun 2019 17:23:45 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201723.x5KHNjrd014427@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:23:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504659 - head/sysutils/py-azure-cli-vm X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-vm X-SVN-Commit-Revision: 504659 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D82018B996 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:23:46 -0000 Author: dbaio Date: Thu Jun 20 17:23:45 2019 New Revision: 504659 URL: https://svnweb.freebsd.org/changeset/ports/504659 Log: sysutils/py-azure-cli-vm: Update to 2.2.23 Changelog: https://pypi.org/project/azure-cli-vm/2.2.23/ Reported by: portscout Modified: head/sysutils/py-azure-cli-vm/Makefile head/sysutils/py-azure-cli-vm/distinfo Modified: head/sysutils/py-azure-cli-vm/Makefile ============================================================================== --- head/sysutils/py-azure-cli-vm/Makefile Thu Jun 20 17:23:28 2019 (r504658) +++ head/sysutils/py-azure-cli-vm/Makefile Thu Jun 20 17:23:45 2019 (r504659) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-vm -PORTVERSION= 2.2.22 +PORTVERSION= 2.2.23 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,7 +16,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-msi>=0. ${PYTHON_PKGNAMEPREFIX}azure-mgmt-compute>=5.0.0:devel/py-azure-mgmt-compute@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-mgmt-keyvault>=1.1.0:devel/py-azure-mgmt-keyvault@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-keyvault>=1.1.0:devel/py-azure-keyvault@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-mgmt-network>=2.7.0:devel/py-azure-mgmt-network@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-mgmt-network>=3.0.0:devel/py-azure-mgmt-network@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-multiapi-storage>=0.2.3:devel/py-azure-multiapi-storage@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-mgmt-marketplaceordering>=0.1.0:devel/py-azure-mgmt-marketplaceordering@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-core>=0:sysutils/py-azure-cli-core@${PY_FLAVOR} Modified: head/sysutils/py-azure-cli-vm/distinfo ============================================================================== --- head/sysutils/py-azure-cli-vm/distinfo Thu Jun 20 17:23:28 2019 (r504658) +++ head/sysutils/py-azure-cli-vm/distinfo Thu Jun 20 17:23:45 2019 (r504659) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559778017 -SHA256 (azure-cli-vm-2.2.22.tar.gz) = 5adb774df1269b275045457d742bb0c39f621815a0d96c6cede9ca7aaf8af475 -SIZE (azure-cli-vm-2.2.22.tar.gz) = 108370 +TIMESTAMP = 1561037856 +SHA256 (azure-cli-vm-2.2.23.tar.gz) = b9727f18ff7f1bbb9155ca493e07b7d029b6446ed0433c47430fc96d0dc385b8 +SIZE (azure-cli-vm-2.2.23.tar.gz) = 117373 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:24:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61E7B15C24ED; Thu, 20 Jun 2019 17:24:31 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 08F108BAAB; Thu, 20 Jun 2019 17:24:31 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C8B16F2E9; Thu, 20 Jun 2019 17:24:30 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHOURl014582; Thu, 20 Jun 2019 17:24:30 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHOUaE014581; Thu, 20 Jun 2019 17:24:30 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201724.x5KHOUaE014581@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:24:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504660 - head/sysutils/py-azure-cli-storage X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-storage X-SVN-Commit-Revision: 504660 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 08F108BAAB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:24:31 -0000 Author: dbaio Date: Thu Jun 20 17:24:30 2019 New Revision: 504660 URL: https://svnweb.freebsd.org/changeset/ports/504660 Log: sysutils/py-azure-cli-storage: Update to 2.4.3 Changelog: https://pypi.org/project/azure-cli-storage/2.4.3/ Reported by: portscout Modified: head/sysutils/py-azure-cli-storage/Makefile head/sysutils/py-azure-cli-storage/distinfo Modified: head/sysutils/py-azure-cli-storage/Makefile ============================================================================== --- head/sysutils/py-azure-cli-storage/Makefile Thu Jun 20 17:23:45 2019 (r504659) +++ head/sysutils/py-azure-cli-storage/Makefile Thu Jun 20 17:24:30 2019 (r504660) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-storage -PORTVERSION= 2.4.2 +PORTVERSION= 2.4.3 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-storage/distinfo ============================================================================== --- head/sysutils/py-azure-cli-storage/distinfo Thu Jun 20 17:23:45 2019 (r504659) +++ head/sysutils/py-azure-cli-storage/distinfo Thu Jun 20 17:24:30 2019 (r504660) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558571476 -SHA256 (azure-cli-storage-2.4.2.tar.gz) = 49750de4958d52ad9595aa5dbdcd194c01a7a062a39515299b8acc223ecfab99 -SIZE (azure-cli-storage-2.4.2.tar.gz) = 63373 +TIMESTAMP = 1561037941 +SHA256 (azure-cli-storage-2.4.3.tar.gz) = e18ce6134d39c5a7335b60e573534e476d81df2dbae85bd15bf2cf7a7de10ae6 +SIZE (azure-cli-storage-2.4.3.tar.gz) = 63484 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:24:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2EB4915C2511; Thu, 20 Jun 2019 17:24:47 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C513E8BB93; Thu, 20 Jun 2019 17:24:46 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A1FFCF2EA; Thu, 20 Jun 2019 17:24:46 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHOk7b014713; Thu, 20 Jun 2019 17:24:46 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHOkX4014710; Thu, 20 Jun 2019 17:24:46 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201724.x5KHOkX4014710@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:24:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504661 - head/sysutils/py-azure-cli-sqlvm X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-sqlvm X-SVN-Commit-Revision: 504661 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C513E8BB93 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:24:47 -0000 Author: dbaio Date: Thu Jun 20 17:24:45 2019 New Revision: 504661 URL: https://svnweb.freebsd.org/changeset/ports/504661 Log: sysutils/py-azure-cli-sqlvm: Update to 0.2.0 Changelog: https://pypi.org/project/azure-cli-sqlvm/0.2.0/ Reported by: portscout Modified: head/sysutils/py-azure-cli-sqlvm/Makefile head/sysutils/py-azure-cli-sqlvm/distinfo Modified: head/sysutils/py-azure-cli-sqlvm/Makefile ============================================================================== --- head/sysutils/py-azure-cli-sqlvm/Makefile Thu Jun 20 17:24:30 2019 (r504660) +++ head/sysutils/py-azure-cli-sqlvm/Makefile Thu Jun 20 17:24:45 2019 (r504661) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-sqlvm -PORTVERSION= 0.1.1 +PORTVERSION= 0.2.0 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,7 +11,7 @@ COMMENT= Microsoft Azure Command-Line Tools SQL virtua LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-sqlvirtualmachine>=0.2.0:devel/py-azure-mgmt-sqlvirtualmachine@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-sqlvirtualmachine>=0.3.0:devel/py-azure-mgmt-sqlvirtualmachine@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-core>=0:sysutils/py-azure-cli-core@${PY_FLAVOR} USES= azurepy python Modified: head/sysutils/py-azure-cli-sqlvm/distinfo ============================================================================== --- head/sysutils/py-azure-cli-sqlvm/distinfo Thu Jun 20 17:24:30 2019 (r504660) +++ head/sysutils/py-azure-cli-sqlvm/distinfo Thu Jun 20 17:24:45 2019 (r504661) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553900971 -SHA256 (azure-cli-sqlvm-0.1.1.tar.gz) = e2128c25b5e252ec451f8e7ffd70c024ff54e8b353da964657aa298ed5e6e443 -SIZE (azure-cli-sqlvm-0.1.1.tar.gz) = 12869 +TIMESTAMP = 1561037992 +SHA256 (azure-cli-sqlvm-0.2.0.tar.gz) = 0bc03736268e141b9076bbd56b330283b4c71c14cb726f572f40e17cc2354d84 +SIZE (azure-cli-sqlvm-0.2.0.tar.gz) = 13194 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:24:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AD05815C255A; Thu, 20 Jun 2019 17:24:57 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 50C0D8BC6E; Thu, 20 Jun 2019 17:24:57 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2E254F2EB; Thu, 20 Jun 2019 17:24:57 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHOvQ7014838; Thu, 20 Jun 2019 17:24:57 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHOuLS014837; Thu, 20 Jun 2019 17:24:56 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201724.x5KHOuLS014837@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:24:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504662 - head/sysutils/py-azure-cli-sql X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-sql X-SVN-Commit-Revision: 504662 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 50C0D8BC6E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:24:57 -0000 Author: dbaio Date: Thu Jun 20 17:24:56 2019 New Revision: 504662 URL: https://svnweb.freebsd.org/changeset/ports/504662 Log: sysutils/py-azure-cli-sql: Update to 2.2.5 Changelog: https://pypi.org/project/azure-cli-sql/2.2.5/ Reported by: portscout Modified: head/sysutils/py-azure-cli-sql/Makefile head/sysutils/py-azure-cli-sql/distinfo Modified: head/sysutils/py-azure-cli-sql/Makefile ============================================================================== --- head/sysutils/py-azure-cli-sql/Makefile Thu Jun 20 17:24:45 2019 (r504661) +++ head/sysutils/py-azure-cli-sql/Makefile Thu Jun 20 17:24:56 2019 (r504662) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-sql -PORTVERSION= 2.2.4 +PORTVERSION= 2.2.5 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-sql/distinfo ============================================================================== --- head/sysutils/py-azure-cli-sql/distinfo Thu Jun 20 17:24:45 2019 (r504661) +++ head/sysutils/py-azure-cli-sql/distinfo Thu Jun 20 17:24:56 2019 (r504662) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558571721 -SHA256 (azure-cli-sql-2.2.4.tar.gz) = abdb57110aab09b48bbcb4ceda0bf5ce2def41d70ee86c0d19c9febe33ad53b5 -SIZE (azure-cli-sql-2.2.4.tar.gz) = 40369 +TIMESTAMP = 1561038063 +SHA256 (azure-cli-sql-2.2.5.tar.gz) = 6da3a23d05d2d77c3ba3212509254918e18fe0e2cdbff2a66c81a65a819ac487 +SIZE (azure-cli-sql-2.2.5.tar.gz) = 40613 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:25:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3DD7015C258F; Thu, 20 Jun 2019 17:25:08 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D9D508BD5A; Thu, 20 Jun 2019 17:25:07 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B2CBCF2EC; Thu, 20 Jun 2019 17:25:07 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHP7GT014978; Thu, 20 Jun 2019 17:25:07 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHP7O8014976; Thu, 20 Jun 2019 17:25:07 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201725.x5KHP7O8014976@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:25:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504663 - head/sysutils/py-azure-cli-signalr X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-signalr X-SVN-Commit-Revision: 504663 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D9D508BD5A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:25:08 -0000 Author: dbaio Date: Thu Jun 20 17:25:06 2019 New Revision: 504663 URL: https://svnweb.freebsd.org/changeset/ports/504663 Log: sysutils/py-azure-cli-signalr: Update to 1.0.1 Reported by: portscout Modified: head/sysutils/py-azure-cli-signalr/Makefile head/sysutils/py-azure-cli-signalr/distinfo Modified: head/sysutils/py-azure-cli-signalr/Makefile ============================================================================== --- head/sysutils/py-azure-cli-signalr/Makefile Thu Jun 20 17:24:56 2019 (r504662) +++ head/sysutils/py-azure-cli-signalr/Makefile Thu Jun 20 17:25:06 2019 (r504663) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-signalr -PORTVERSION= 1.0.0 +PORTVERSION= 1.0.1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-signalr/distinfo ============================================================================== --- head/sysutils/py-azure-cli-signalr/distinfo Thu Jun 20 17:24:56 2019 (r504662) +++ head/sysutils/py-azure-cli-signalr/distinfo Thu Jun 20 17:25:06 2019 (r504663) @@ -1,3 +1,3 @@ -TIMESTAMP = 1545594432 -SHA256 (azure-cli-signalr-1.0.0.tar.gz) = 863f382f0cc8ed89ed63db3c25b14c5fabf81f0950f9535ad7cd440a165484be -SIZE (azure-cli-signalr-1.0.0.tar.gz) = 3896 +TIMESTAMP = 1561038098 +SHA256 (azure-cli-signalr-1.0.1.tar.gz) = 48722925ba3bcaa99965573cafafb22d03c842ff74ffe8e972f9daf525c77176 +SIZE (azure-cli-signalr-1.0.1.tar.gz) = 3905 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:25:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8829D15C25C6; Thu, 20 Jun 2019 17:25:18 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2C24F8BE3E; Thu, 20 Jun 2019 17:25:18 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E8E75F2ED; Thu, 20 Jun 2019 17:25:17 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHPHCK015106; Thu, 20 Jun 2019 17:25:17 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHPHX4015104; Thu, 20 Jun 2019 17:25:17 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201725.x5KHPHX4015104@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:25:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504664 - head/sysutils/py-azure-cli-servicefabric X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-servicefabric X-SVN-Commit-Revision: 504664 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2C24F8BE3E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:25:18 -0000 Author: dbaio Date: Thu Jun 20 17:25:17 2019 New Revision: 504664 URL: https://svnweb.freebsd.org/changeset/ports/504664 Log: sysutils/py-azure-cli-servicefabric: Update to 0.1.20 Reported by: portscout Modified: head/sysutils/py-azure-cli-servicefabric/Makefile head/sysutils/py-azure-cli-servicefabric/distinfo Modified: head/sysutils/py-azure-cli-servicefabric/Makefile ============================================================================== --- head/sysutils/py-azure-cli-servicefabric/Makefile Thu Jun 20 17:25:06 2019 (r504663) +++ head/sysutils/py-azure-cli-servicefabric/Makefile Thu Jun 20 17:25:17 2019 (r504664) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-servicefabric -PORTVERSION= 0.1.19 +PORTVERSION= 0.1.20 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +13,7 @@ LICENSE= MIT RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-graphrbac>=0.60.0:devel/py-azure-graphrbac@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-keyvault>=1.1.0:devel/py-azure-keyvault@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-mgmt-network>=2.7.0:devel/py-azure-mgmt-network@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-mgmt-network>=3.0.0:devel/py-azure-mgmt-network@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-mgmt-compute>=5.0.0:devel/py-azure-mgmt-compute@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-mgmt-storage>=3.3.0:devel/py-azure-mgmt-storage@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-mgmt-servicefabric>=0.2.0:devel/py-azure-mgmt-servicefabric@${PY_FLAVOR} \ Modified: head/sysutils/py-azure-cli-servicefabric/distinfo ============================================================================== --- head/sysutils/py-azure-cli-servicefabric/distinfo Thu Jun 20 17:25:06 2019 (r504663) +++ head/sysutils/py-azure-cli-servicefabric/distinfo Thu Jun 20 17:25:17 2019 (r504664) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558571816 -SHA256 (azure-cli-servicefabric-0.1.19.tar.gz) = 25282d9d9e808e906ff10f84d9bf66ddad9496fac513783b4d7d080477dea6e5 -SIZE (azure-cli-servicefabric-0.1.19.tar.gz) = 31651 +TIMESTAMP = 1561038194 +SHA256 (azure-cli-servicefabric-0.1.20.tar.gz) = 8a81b4192ad128d1dfdfae4cdd5f453e9d39d5592a7879c82752a20870901a40 +SIZE (azure-cli-servicefabric-0.1.20.tar.gz) = 31752 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:25:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B703F15C25FB; Thu, 20 Jun 2019 17:25:30 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 776A98BF1D; Thu, 20 Jun 2019 17:25:30 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1E6CDF2EE; Thu, 20 Jun 2019 17:25:30 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHPUtw015234; Thu, 20 Jun 2019 17:25:30 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHPTEd015233; Thu, 20 Jun 2019 17:25:29 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201725.x5KHPTEd015233@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:25:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504665 - head/sysutils/py-azure-cli-servicebus X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-servicebus X-SVN-Commit-Revision: 504665 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 776A98BF1D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:25:30 -0000 Author: dbaio Date: Thu Jun 20 17:25:29 2019 New Revision: 504665 URL: https://svnweb.freebsd.org/changeset/ports/504665 Log: sysutils/py-azure-cli-servicebus: Update to 0.3.6 Changelog: https://pypi.org/project/azure-cli-servicebus/0.3.6/ Reported by: portscout Modified: head/sysutils/py-azure-cli-servicebus/Makefile head/sysutils/py-azure-cli-servicebus/distinfo Modified: head/sysutils/py-azure-cli-servicebus/Makefile ============================================================================== --- head/sysutils/py-azure-cli-servicebus/Makefile Thu Jun 20 17:25:17 2019 (r504664) +++ head/sysutils/py-azure-cli-servicebus/Makefile Thu Jun 20 17:25:29 2019 (r504665) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-servicebus -PORTVERSION= 0.3.5 +PORTVERSION= 0.3.6 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-servicebus/distinfo ============================================================================== --- head/sysutils/py-azure-cli-servicebus/distinfo Thu Jun 20 17:25:17 2019 (r504664) +++ head/sysutils/py-azure-cli-servicebus/distinfo Thu Jun 20 17:25:29 2019 (r504665) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557602526 -SHA256 (azure-cli-servicebus-0.3.5.tar.gz) = a391ac34cce83be8762203aa03e8c73aab7166c9fe6114a3f7255123d75a7585 -SIZE (azure-cli-servicebus-0.3.5.tar.gz) = 15821 +TIMESTAMP = 1561038284 +SHA256 (azure-cli-servicebus-0.3.6.tar.gz) = c3311d7858548b83650cdf9f2a2e0178112e16e8d4a3062a2bf42d1789fbae81 +SIZE (azure-cli-servicebus-0.3.6.tar.gz) = 16062 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:26:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7707D15C2665; Thu, 20 Jun 2019 17:26:15 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 161908C027; Thu, 20 Jun 2019 17:26:15 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F09FCF2EF; Thu, 20 Jun 2019 17:26:14 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHQESW015388; Thu, 20 Jun 2019 17:26:14 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHQEgj015386; Thu, 20 Jun 2019 17:26:14 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201726.x5KHQEgj015386@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:26:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504666 - head/sysutils/py-azure-cli-security X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-security X-SVN-Commit-Revision: 504666 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 161908C027 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:26:15 -0000 Author: dbaio Date: Thu Jun 20 17:26:14 2019 New Revision: 504666 URL: https://svnweb.freebsd.org/changeset/ports/504666 Log: sysutils/py-azure-cli-security: Update to 0.1.2 Reported by: portscout Modified: head/sysutils/py-azure-cli-security/Makefile head/sysutils/py-azure-cli-security/distinfo Modified: head/sysutils/py-azure-cli-security/Makefile ============================================================================== --- head/sysutils/py-azure-cli-security/Makefile Thu Jun 20 17:25:29 2019 (r504665) +++ head/sysutils/py-azure-cli-security/Makefile Thu Jun 20 17:26:14 2019 (r504666) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-security -PORTVERSION= 0.1.1 +PORTVERSION= 0.1.2 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-security/distinfo ============================================================================== --- head/sysutils/py-azure-cli-security/distinfo Thu Jun 20 17:25:29 2019 (r504665) +++ head/sysutils/py-azure-cli-security/distinfo Thu Jun 20 17:26:14 2019 (r504666) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553901533 -SHA256 (azure-cli-security-0.1.1.tar.gz) = abd027832b30311dd06c8809482a1098a9ec2b0740f4d8162c6b68e5d312e121 -SIZE (azure-cli-security-0.1.1.tar.gz) = 7245 +TIMESTAMP = 1561038311 +SHA256 (azure-cli-security-0.1.2.tar.gz) = f6e7e0f21c54584f4a19b94339054e68c57d87a87567fbf8168066e12b04a6ef +SIZE (azure-cli-security-0.1.2.tar.gz) = 7277 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:26:25 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 342BA15C268E; Thu, 20 Jun 2019 17:26:25 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C3F878C0ED; Thu, 20 Jun 2019 17:26:24 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9E94DF2F0; Thu, 20 Jun 2019 17:26:24 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHQOpu015513; Thu, 20 Jun 2019 17:26:24 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHQOwS015511; Thu, 20 Jun 2019 17:26:24 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201726.x5KHQOwS015511@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:26:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504667 - head/sysutils/py-azure-cli-search X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-search X-SVN-Commit-Revision: 504667 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C3F878C0ED X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:26:25 -0000 Author: dbaio Date: Thu Jun 20 17:26:23 2019 New Revision: 504667 URL: https://svnweb.freebsd.org/changeset/ports/504667 Log: sysutils/py-azure-cli-search: Update to 0.1.2 Reported by: portscout Modified: head/sysutils/py-azure-cli-search/Makefile head/sysutils/py-azure-cli-search/distinfo Modified: head/sysutils/py-azure-cli-search/Makefile ============================================================================== --- head/sysutils/py-azure-cli-search/Makefile Thu Jun 20 17:26:14 2019 (r504666) +++ head/sysutils/py-azure-cli-search/Makefile Thu Jun 20 17:26:23 2019 (r504667) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-search -PORTVERSION= 0.1.1 +PORTVERSION= 0.1.2 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-search/distinfo ============================================================================== --- head/sysutils/py-azure-cli-search/distinfo Thu Jun 20 17:26:14 2019 (r504666) +++ head/sysutils/py-azure-cli-search/distinfo Thu Jun 20 17:26:23 2019 (r504667) @@ -1,3 +1,3 @@ -TIMESTAMP = 1545597056 -SHA256 (azure-cli-search-0.1.1.tar.gz) = c00f042c9c3604eec20360d083ca57f2903c1c250940e7606ef9360711ed5efe -SIZE (azure-cli-search-0.1.1.tar.gz) = 3667 +TIMESTAMP = 1561038352 +SHA256 (azure-cli-search-0.1.2.tar.gz) = 7f6c11e380172b2b91421e8416f94d055af6a35cc70e16718325d9f04445f455 +SIZE (azure-cli-search-0.1.2.tar.gz) = 3712 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:26:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6DC5415C26B8; Thu, 20 Jun 2019 17:26:39 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 155F58C1D6; Thu, 20 Jun 2019 17:26:39 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E5DECF2F1; Thu, 20 Jun 2019 17:26:38 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHQcb3015646; Thu, 20 Jun 2019 17:26:38 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHQcWV015644; Thu, 20 Jun 2019 17:26:38 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201726.x5KHQcWV015644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:26:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504668 - head/sysutils/py-azure-cli-role X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-role X-SVN-Commit-Revision: 504668 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 155F58C1D6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:26:39 -0000 Author: dbaio Date: Thu Jun 20 17:26:38 2019 New Revision: 504668 URL: https://svnweb.freebsd.org/changeset/ports/504668 Log: sysutils/py-azure-cli-role: Update to 2.6.4 Reported by: portscout Modified: head/sysutils/py-azure-cli-role/Makefile head/sysutils/py-azure-cli-role/distinfo Modified: head/sysutils/py-azure-cli-role/Makefile ============================================================================== --- head/sysutils/py-azure-cli-role/Makefile Thu Jun 20 17:26:23 2019 (r504667) +++ head/sysutils/py-azure-cli-role/Makefile Thu Jun 20 17:26:38 2019 (r504668) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-role -PORTVERSION= 2.6.3 +PORTVERSION= 2.6.4 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-role/distinfo ============================================================================== --- head/sysutils/py-azure-cli-role/distinfo Thu Jun 20 17:26:23 2019 (r504667) +++ head/sysutils/py-azure-cli-role/distinfo Thu Jun 20 17:26:38 2019 (r504668) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559778046 -SHA256 (azure-cli-role-2.6.3.tar.gz) = 001d777b7e16e9537b1c14a0c03cc9884bb8d6681c05b2db7e3de34290a6c50a -SIZE (azure-cli-role-2.6.3.tar.gz) = 34734 +TIMESTAMP = 1561038389 +SHA256 (azure-cli-role-2.6.4.tar.gz) = 0984af4b1bfa51566d4e518d85f1245785ae51c7374392823644a71f505481ab +SIZE (azure-cli-role-2.6.4.tar.gz) = 34861 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:26:50 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 19B0415C26F7; Thu, 20 Jun 2019 17:26:50 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B092F8C2AC; Thu, 20 Jun 2019 17:26:49 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8EBDAF2F2; Thu, 20 Jun 2019 17:26:49 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHQnGf015776; Thu, 20 Jun 2019 17:26:49 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHQnvr015773; Thu, 20 Jun 2019 17:26:49 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201726.x5KHQnvr015773@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:26:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504669 - head/sysutils/py-azure-cli-resource X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-resource X-SVN-Commit-Revision: 504669 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B092F8C2AC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:26:50 -0000 Author: dbaio Date: Thu Jun 20 17:26:48 2019 New Revision: 504669 URL: https://svnweb.freebsd.org/changeset/ports/504669 Log: sysutils/py-azure-cli-resource: Update to 2.1.16 Changelog: https://pypi.org/project/azure-cli-resource/2.1.16/ Reported by: portscout Modified: head/sysutils/py-azure-cli-resource/Makefile head/sysutils/py-azure-cli-resource/distinfo Modified: head/sysutils/py-azure-cli-resource/Makefile ============================================================================== --- head/sysutils/py-azure-cli-resource/Makefile Thu Jun 20 17:26:38 2019 (r504668) +++ head/sysutils/py-azure-cli-resource/Makefile Thu Jun 20 17:26:48 2019 (r504669) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-resource -PORTVERSION= 2.1.15 +PORTVERSION= 2.1.16 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-resource/distinfo ============================================================================== --- head/sysutils/py-azure-cli-resource/distinfo Thu Jun 20 17:26:38 2019 (r504668) +++ head/sysutils/py-azure-cli-resource/distinfo Thu Jun 20 17:26:48 2019 (r504669) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559778074 -SHA256 (azure-cli-resource-2.1.15.tar.gz) = fa26769fe716a0f78715493aaa0c8e382a5480a3dc024deab1afbf76f57b2718 -SIZE (azure-cli-resource-2.1.15.tar.gz) = 39091 +TIMESTAMP = 1561038434 +SHA256 (azure-cli-resource-2.1.16.tar.gz) = d4a5c18de5bec0ed844dda0efb6d342af7868237b8591d7aed52ef0cef811333 +SIZE (azure-cli-resource-2.1.16.tar.gz) = 40020 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:27:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABA4015C272A; Thu, 20 Jun 2019 17:27:03 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F3F58C367; Thu, 20 Jun 2019 17:27:03 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 12F21F2F3; Thu, 20 Jun 2019 17:27:00 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHQxKp015903; Thu, 20 Jun 2019 17:26:59 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHQxcq015901; Thu, 20 Jun 2019 17:26:59 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201726.x5KHQxcq015901@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:26:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504670 - head/sysutils/py-azure-cli-reservations X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-reservations X-SVN-Commit-Revision: 504670 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4F3F58C367 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:27:03 -0000 Author: dbaio Date: Thu Jun 20 17:26:59 2019 New Revision: 504670 URL: https://svnweb.freebsd.org/changeset/ports/504670 Log: sysutils/py-azure-cli-reservations: Update to 0.4.3 Reported by: portscout Modified: head/sysutils/py-azure-cli-reservations/Makefile head/sysutils/py-azure-cli-reservations/distinfo Modified: head/sysutils/py-azure-cli-reservations/Makefile ============================================================================== --- head/sysutils/py-azure-cli-reservations/Makefile Thu Jun 20 17:26:48 2019 (r504669) +++ head/sysutils/py-azure-cli-reservations/Makefile Thu Jun 20 17:26:59 2019 (r504670) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-reservations -PORTVERSION= 0.4.2 +PORTVERSION= 0.4.3 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-reservations/distinfo ============================================================================== --- head/sysutils/py-azure-cli-reservations/distinfo Thu Jun 20 17:26:48 2019 (r504669) +++ head/sysutils/py-azure-cli-reservations/distinfo Thu Jun 20 17:26:59 2019 (r504670) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553901658 -SHA256 (azure-cli-reservations-0.4.2.tar.gz) = 728e4e6fe695ac6a0f1fdbca027d4d8fa789c27259727eb8196044ff88381681 -SIZE (azure-cli-reservations-0.4.2.tar.gz) = 4951 +TIMESTAMP = 1561038459 +SHA256 (azure-cli-reservations-0.4.3.tar.gz) = 8deaf25bdb1c7acb09c29be3d40c48a1f28f6e62a8f816b5173ae57a14376709 +SIZE (azure-cli-reservations-0.4.3.tar.gz) = 4984 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:27:12 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CCA5115C276E; Thu, 20 Jun 2019 17:27:12 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6E58D8C444; Thu, 20 Jun 2019 17:27:12 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8CDB6F2F4; Thu, 20 Jun 2019 17:27:09 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHR97V016035; Thu, 20 Jun 2019 17:27:09 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHR9FB016034; Thu, 20 Jun 2019 17:27:09 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201727.x5KHR9FB016034@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:27:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504671 - head/sysutils/py-azure-cli-relay X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-relay X-SVN-Commit-Revision: 504671 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6E58D8C444 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:27:13 -0000 Author: dbaio Date: Thu Jun 20 17:27:08 2019 New Revision: 504671 URL: https://svnweb.freebsd.org/changeset/ports/504671 Log: sysutils/py-azure-cli-relay: Update to 0.1.5 Reported by: portscout Modified: head/sysutils/py-azure-cli-relay/Makefile head/sysutils/py-azure-cli-relay/distinfo Modified: head/sysutils/py-azure-cli-relay/Makefile ============================================================================== --- head/sysutils/py-azure-cli-relay/Makefile Thu Jun 20 17:26:59 2019 (r504670) +++ head/sysutils/py-azure-cli-relay/Makefile Thu Jun 20 17:27:08 2019 (r504671) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-relay -PORTVERSION= 0.1.4 +PORTVERSION= 0.1.5 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-relay/distinfo ============================================================================== --- head/sysutils/py-azure-cli-relay/distinfo Thu Jun 20 17:26:59 2019 (r504670) +++ head/sysutils/py-azure-cli-relay/distinfo Thu Jun 20 17:27:08 2019 (r504671) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553901695 -SHA256 (azure-cli-relay-0.1.4.tar.gz) = 023b067beb563756361d74f84e61fe76e5a9f9d6bac524d7325a88c69be4605c -SIZE (azure-cli-relay-0.1.4.tar.gz) = 7173 +TIMESTAMP = 1561038495 +SHA256 (azure-cli-relay-0.1.5.tar.gz) = 879c4a41f84a8168082e3b65f26081c8872b6986abf3310c8978554635ed1bab +SIZE (azure-cli-relay-0.1.5.tar.gz) = 7188 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:27:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6472615C27AD; Thu, 20 Jun 2019 17:27:23 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0BC3F8C523; Thu, 20 Jun 2019 17:27:23 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E56E8F2F5; Thu, 20 Jun 2019 17:27:19 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHRJPO016163; Thu, 20 Jun 2019 17:27:19 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHRJuQ016161; Thu, 20 Jun 2019 17:27:19 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201727.x5KHRJuQ016161@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:27:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504672 - head/sysutils/py-azure-cli-redis X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-redis X-SVN-Commit-Revision: 504672 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0BC3F8C523 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:27:23 -0000 Author: dbaio Date: Thu Jun 20 17:27:19 2019 New Revision: 504672 URL: https://svnweb.freebsd.org/changeset/ports/504672 Log: sysutils/py-azure-cli-redis: Update to 0.4.4 Reported by: portscout Modified: head/sysutils/py-azure-cli-redis/Makefile head/sysutils/py-azure-cli-redis/distinfo Modified: head/sysutils/py-azure-cli-redis/Makefile ============================================================================== --- head/sysutils/py-azure-cli-redis/Makefile Thu Jun 20 17:27:08 2019 (r504671) +++ head/sysutils/py-azure-cli-redis/Makefile Thu Jun 20 17:27:19 2019 (r504672) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-redis -PORTVERSION= 0.4.3 +PORTVERSION= 0.4.4 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-redis/distinfo ============================================================================== --- head/sysutils/py-azure-cli-redis/distinfo Thu Jun 20 17:27:08 2019 (r504671) +++ head/sysutils/py-azure-cli-redis/distinfo Thu Jun 20 17:27:19 2019 (r504672) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558571920 -SHA256 (azure-cli-redis-0.4.3.tar.gz) = 460503c82c183bbb598396cf2d05d0c5110f0365e4d2a2ee34acae70eeb30836 -SIZE (azure-cli-redis-0.4.3.tar.gz) = 8212 +TIMESTAMP = 1561038537 +SHA256 (azure-cli-redis-0.4.4.tar.gz) = 5c3802730ef17264d9400a11f0ae731a8af02c2fb0f45d717adc036b3b882b06 +SIZE (azure-cli-redis-0.4.4.tar.gz) = 8232 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:27:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C6CF15C27DF; Thu, 20 Jun 2019 17:27:33 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A84C88C5F5; Thu, 20 Jun 2019 17:27:32 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 98131F2F6; Thu, 20 Jun 2019 17:27:31 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHRVIT016295; Thu, 20 Jun 2019 17:27:31 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHRV9n016293; Thu, 20 Jun 2019 17:27:31 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201727.x5KHRV9n016293@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:27:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504673 - head/sysutils/py-azure-cli-rdbms X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-rdbms X-SVN-Commit-Revision: 504673 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A84C88C5F5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:27:33 -0000 Author: dbaio Date: Thu Jun 20 17:27:30 2019 New Revision: 504673 URL: https://svnweb.freebsd.org/changeset/ports/504673 Log: sysutils/py-azure-cli-rdbms: Update to 0.3.12 Reported by: portscout Modified: head/sysutils/py-azure-cli-rdbms/Makefile head/sysutils/py-azure-cli-rdbms/distinfo Modified: head/sysutils/py-azure-cli-rdbms/Makefile ============================================================================== --- head/sysutils/py-azure-cli-rdbms/Makefile Thu Jun 20 17:27:19 2019 (r504672) +++ head/sysutils/py-azure-cli-rdbms/Makefile Thu Jun 20 17:27:30 2019 (r504673) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-rdbms -PORTVERSION= 0.3.11 +PORTVERSION= 0.3.12 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-rdbms/distinfo ============================================================================== --- head/sysutils/py-azure-cli-rdbms/distinfo Thu Jun 20 17:27:19 2019 (r504672) +++ head/sysutils/py-azure-cli-rdbms/distinfo Thu Jun 20 17:27:30 2019 (r504673) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558571970 -SHA256 (azure-cli-rdbms-0.3.11.tar.gz) = 42adbe065348bb69850cecd54ece28da3bebbbd6af041502d97feefde578a5d4 -SIZE (azure-cli-rdbms-0.3.11.tar.gz) = 15181 +TIMESTAMP = 1561038568 +SHA256 (azure-cli-rdbms-0.3.12.tar.gz) = f5e8a670020f9ed20fea3b2dfb5cf82d136cbf02fe5156f57fe6cc398073373d +SIZE (azure-cli-rdbms-0.3.12.tar.gz) = 15188 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:28:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D9F5A15C285C; Thu, 20 Jun 2019 17:28:33 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E1C878C726; Thu, 20 Jun 2019 17:28:32 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BAE0DF2F7; Thu, 20 Jun 2019 17:28:32 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHSWIg016451; Thu, 20 Jun 2019 17:28:32 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHSW1a016449; Thu, 20 Jun 2019 17:28:32 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201728.x5KHSW1a016449@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:28:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504674 - head/sysutils/py-azure-cli-policyinsights X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-policyinsights X-SVN-Commit-Revision: 504674 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E1C878C726 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:28:34 -0000 Author: dbaio Date: Thu Jun 20 17:28:31 2019 New Revision: 504674 URL: https://svnweb.freebsd.org/changeset/ports/504674 Log: sysutils/py-azure-cli-policyinsights: Update to 0.1.4 Reported by: portscout Modified: head/sysutils/py-azure-cli-policyinsights/Makefile head/sysutils/py-azure-cli-policyinsights/distinfo Modified: head/sysutils/py-azure-cli-policyinsights/Makefile ============================================================================== --- head/sysutils/py-azure-cli-policyinsights/Makefile Thu Jun 20 17:27:30 2019 (r504673) +++ head/sysutils/py-azure-cli-policyinsights/Makefile Thu Jun 20 17:28:31 2019 (r504674) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-policyinsights -PORTVERSION= 0.1.3 +PORTVERSION= 0.1.4 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-policyinsights/distinfo ============================================================================== --- head/sysutils/py-azure-cli-policyinsights/distinfo Thu Jun 20 17:27:30 2019 (r504673) +++ head/sysutils/py-azure-cli-policyinsights/distinfo Thu Jun 20 17:28:31 2019 (r504674) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557602627 -SHA256 (azure-cli-policyinsights-0.1.3.tar.gz) = 0144c2478ea3f728a4b3536fbea3d0a5683cdfc949f59fc0dcb3933d709a10f8 -SIZE (azure-cli-policyinsights-0.1.3.tar.gz) = 8386 +TIMESTAMP = 1561038609 +SHA256 (azure-cli-policyinsights-0.1.4.tar.gz) = 83dda6cbd5923c7124993a92586c3f28625f4151101b39e9e98871fc13b39750 +SIZE (azure-cli-policyinsights-0.1.4.tar.gz) = 8423 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:28:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8A06F15C287F; Thu, 20 Jun 2019 17:28:47 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2F0928C7F9; Thu, 20 Jun 2019 17:28:47 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C3529F2F8; Thu, 20 Jun 2019 17:28:46 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHSkbo016579; Thu, 20 Jun 2019 17:28:46 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHSkRB016577; Thu, 20 Jun 2019 17:28:46 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201728.x5KHSkRB016577@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:28:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504675 - head/sysutils/py-azure-cli-network X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-network X-SVN-Commit-Revision: 504675 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2F0928C7F9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:28:47 -0000 Author: dbaio Date: Thu Jun 20 17:28:46 2019 New Revision: 504675 URL: https://svnweb.freebsd.org/changeset/ports/504675 Log: sysutils/py-azure-cli-network: Update to 2.5.2 Changelog: https://pypi.org/project/azure-cli-network/2.5.2/ Reported by: portscout Modified: head/sysutils/py-azure-cli-network/Makefile head/sysutils/py-azure-cli-network/distinfo Modified: head/sysutils/py-azure-cli-network/Makefile ============================================================================== --- head/sysutils/py-azure-cli-network/Makefile Thu Jun 20 17:28:31 2019 (r504674) +++ head/sysutils/py-azure-cli-network/Makefile Thu Jun 20 17:28:46 2019 (r504675) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-network -PORTVERSION= 2.5.1 +PORTVERSION= 2.5.2 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,7 +11,7 @@ COMMENT= Microsoft Azure Command-Line Tools Network Co LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-network>=2.7.0:devel/py-azure-mgmt-network@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-network>=3.0.0:devel/py-azure-mgmt-network@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-mgmt-trafficmanager>=0.51.0:devel/py-azure-mgmt-trafficmanager@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-mgmt-dns>=2.1.0:devel/py-azure-mgmt-dns@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-core>=0:sysutils/py-azure-cli-core@${PY_FLAVOR} Modified: head/sysutils/py-azure-cli-network/distinfo ============================================================================== --- head/sysutils/py-azure-cli-network/distinfo Thu Jun 20 17:28:31 2019 (r504674) +++ head/sysutils/py-azure-cli-network/distinfo Thu Jun 20 17:28:46 2019 (r504675) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559778117 -SHA256 (azure-cli-network-2.5.1.tar.gz) = 6efbdba6df02bf30ad2bb9bd4dfc70e4ee79fb2937651b270af0761441c56e56 -SIZE (azure-cli-network-2.5.1.tar.gz) = 117125 +TIMESTAMP = 1561038650 +SHA256 (azure-cli-network-2.5.2.tar.gz) = 86923f8afcf1fd38c074fad39f337cb26b1549233e6b002cac9f7667a7f9e423 +SIZE (azure-cli-network-2.5.2.tar.gz) = 117359 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:28:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C409415C28BD; Thu, 20 Jun 2019 17:28:59 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6B11B8C8D0; Thu, 20 Jun 2019 17:28:59 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 43B25F2F9; Thu, 20 Jun 2019 17:28:59 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHSxMi016711; Thu, 20 Jun 2019 17:28:59 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHSwOP016710; Thu, 20 Jun 2019 17:28:58 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201728.x5KHSwOP016710@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:28:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504676 - head/sysutils/py-azure-cli-monitor X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-monitor X-SVN-Commit-Revision: 504676 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6B11B8C8D0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:28:59 -0000 Author: dbaio Date: Thu Jun 20 17:28:58 2019 New Revision: 504676 URL: https://svnweb.freebsd.org/changeset/ports/504676 Log: sysutils/py-azure-cli-monitor: Update to 0.2.15 Reported by: portscout Modified: head/sysutils/py-azure-cli-monitor/Makefile head/sysutils/py-azure-cli-monitor/distinfo Modified: head/sysutils/py-azure-cli-monitor/Makefile ============================================================================== --- head/sysutils/py-azure-cli-monitor/Makefile Thu Jun 20 17:28:46 2019 (r504675) +++ head/sysutils/py-azure-cli-monitor/Makefile Thu Jun 20 17:28:58 2019 (r504676) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-monitor -PORTVERSION= 0.2.14 +PORTVERSION= 0.2.15 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-monitor/distinfo ============================================================================== --- head/sysutils/py-azure-cli-monitor/distinfo Thu Jun 20 17:28:46 2019 (r504675) +++ head/sysutils/py-azure-cli-monitor/distinfo Thu Jun 20 17:28:58 2019 (r504676) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558572092 -SHA256 (azure-cli-monitor-0.2.14.tar.gz) = a6d6e520f10dfba40a99d072582ab1d7ef0acb14d37d25c59af216383d26f58c -SIZE (azure-cli-monitor-0.2.14.tar.gz) = 45475 +TIMESTAMP = 1561038702 +SHA256 (azure-cli-monitor-0.2.15.tar.gz) = e48590ab2c3d9f17978f1e55d556b7d56566e362746b6aff777ff75e114d89ea +SIZE (azure-cli-monitor-0.2.15.tar.gz) = 45508 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:29:09 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D215115C28F2; Thu, 20 Jun 2019 17:29:09 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 75DF48C9A3; Thu, 20 Jun 2019 17:29:09 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 524F7F2FA; Thu, 20 Jun 2019 17:29:09 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHT9vk016843; Thu, 20 Jun 2019 17:29:09 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHT8kG016842; Thu, 20 Jun 2019 17:29:08 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201729.x5KHT8kG016842@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:29:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504677 - head/sysutils/py-azure-cli-maps X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-maps X-SVN-Commit-Revision: 504677 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 75DF48C9A3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:29:10 -0000 Author: dbaio Date: Thu Jun 20 17:29:08 2019 New Revision: 504677 URL: https://svnweb.freebsd.org/changeset/ports/504677 Log: sysutils/py-azure-cli-maps: Update to 0.3.5 Reported by: portscout Modified: head/sysutils/py-azure-cli-maps/Makefile head/sysutils/py-azure-cli-maps/distinfo Modified: head/sysutils/py-azure-cli-maps/Makefile ============================================================================== --- head/sysutils/py-azure-cli-maps/Makefile Thu Jun 20 17:28:58 2019 (r504676) +++ head/sysutils/py-azure-cli-maps/Makefile Thu Jun 20 17:29:08 2019 (r504677) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-maps -PORTVERSION= 0.3.4 +PORTVERSION= 0.3.5 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-maps/distinfo ============================================================================== --- head/sysutils/py-azure-cli-maps/distinfo Thu Jun 20 17:28:58 2019 (r504676) +++ head/sysutils/py-azure-cli-maps/distinfo Thu Jun 20 17:29:08 2019 (r504677) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553901917 -SHA256 (azure-cli-maps-0.3.4.tar.gz) = 3ec586304d95ec96bb3d974b6a5df3d4bb5785ac6257e3aaae51feddddd35aa3 -SIZE (azure-cli-maps-0.3.4.tar.gz) = 4477 +TIMESTAMP = 1561038727 +SHA256 (azure-cli-maps-0.3.5.tar.gz) = 61e52d7f40e0f2162f83c324c15828b9df1d4c00d5b45aca11336262ee5163b7 +SIZE (azure-cli-maps-0.3.5.tar.gz) = 4488 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:29:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4FDE515C2927; Thu, 20 Jun 2019 17:29:20 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EB6408CA70; Thu, 20 Jun 2019 17:29:19 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C81EAF2FB; Thu, 20 Jun 2019 17:29:19 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHTJx4016971; Thu, 20 Jun 2019 17:29:19 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHTJF0016969; Thu, 20 Jun 2019 17:29:19 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201729.x5KHTJF0016969@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:29:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504678 - head/sysutils/py-azure-cli-lab X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-lab X-SVN-Commit-Revision: 504678 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EB6408CA70 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:29:20 -0000 Author: dbaio Date: Thu Jun 20 17:29:19 2019 New Revision: 504678 URL: https://svnweb.freebsd.org/changeset/ports/504678 Log: sysutils/py-azure-cli-lab: Update to 0.1.8 Reported by: portscout Modified: head/sysutils/py-azure-cli-lab/Makefile head/sysutils/py-azure-cli-lab/distinfo Modified: head/sysutils/py-azure-cli-lab/Makefile ============================================================================== --- head/sysutils/py-azure-cli-lab/Makefile Thu Jun 20 17:29:08 2019 (r504677) +++ head/sysutils/py-azure-cli-lab/Makefile Thu Jun 20 17:29:19 2019 (r504678) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-lab -PORTVERSION= 0.1.7 +PORTVERSION= 0.1.8 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-lab/distinfo ============================================================================== --- head/sysutils/py-azure-cli-lab/distinfo Thu Jun 20 17:29:08 2019 (r504677) +++ head/sysutils/py-azure-cli-lab/distinfo Thu Jun 20 17:29:19 2019 (r504678) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556400025 -SHA256 (azure-cli-lab-0.1.7.tar.gz) = d2c0638f1596ad31f973ed534d00d21c19f43be9a1113c662d6f2fe498cc947e -SIZE (azure-cli-lab-0.1.7.tar.gz) = 15588 +TIMESTAMP = 1561038761 +SHA256 (azure-cli-lab-0.1.8.tar.gz) = ab32b224fec8905c525eb7deefc444fdc84ec0e4b48dd7149378e84ce4b622cf +SIZE (azure-cli-lab-0.1.8.tar.gz) = 15635 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:29:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8DC3715C295B; Thu, 20 Jun 2019 17:29:33 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 342BA8CB5D; Thu, 20 Jun 2019 17:29:33 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 00207F2FC; Thu, 20 Jun 2019 17:29:33 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHTWCo017099; Thu, 20 Jun 2019 17:29:32 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHTWAj017097; Thu, 20 Jun 2019 17:29:32 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201729.x5KHTWAj017097@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:29:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504679 - head/sysutils/py-azure-cli-kusto X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-kusto X-SVN-Commit-Revision: 504679 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 342BA8CB5D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:29:33 -0000 Author: dbaio Date: Thu Jun 20 17:29:32 2019 New Revision: 504679 URL: https://svnweb.freebsd.org/changeset/ports/504679 Log: sysutils/py-azure-cli-kusto: Update to 0.2.3 Reported by: portscout Modified: head/sysutils/py-azure-cli-kusto/Makefile head/sysutils/py-azure-cli-kusto/distinfo Modified: head/sysutils/py-azure-cli-kusto/Makefile ============================================================================== --- head/sysutils/py-azure-cli-kusto/Makefile Thu Jun 20 17:29:19 2019 (r504678) +++ head/sysutils/py-azure-cli-kusto/Makefile Thu Jun 20 17:29:32 2019 (r504679) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-kusto -PORTVERSION= 0.2.2 +PORTVERSION= 0.2.3 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-kusto/distinfo ============================================================================== --- head/sysutils/py-azure-cli-kusto/distinfo Thu Jun 20 17:29:19 2019 (r504678) +++ head/sysutils/py-azure-cli-kusto/distinfo Thu Jun 20 17:29:32 2019 (r504679) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555200419 -SHA256 (azure-cli-kusto-0.2.2.tar.gz) = 1c7d3aa9962b57e19f8207321e0f0fb35fd7999fdaf830d4944620704e85c8fe -SIZE (azure-cli-kusto-0.2.2.tar.gz) = 5048 +TIMESTAMP = 1561038789 +SHA256 (azure-cli-kusto-0.2.3.tar.gz) = a52f9adae4b362a677188d9061fb032949283dbee17e7cff32a24bfdbfb853f9 +SIZE (azure-cli-kusto-0.2.3.tar.gz) = 5038 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:29:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 831CD15C29AF; Thu, 20 Jun 2019 17:29:46 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2BEA88CC42; Thu, 20 Jun 2019 17:29:46 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F2855F2FD; Thu, 20 Jun 2019 17:29:45 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHTjQM017227; Thu, 20 Jun 2019 17:29:45 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHTjHX017226; Thu, 20 Jun 2019 17:29:45 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201729.x5KHTjHX017226@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:29:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504680 - head/sysutils/py-azure-cli-keyvault X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-keyvault X-SVN-Commit-Revision: 504680 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2BEA88CC42 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:29:46 -0000 Author: dbaio Date: Thu Jun 20 17:29:45 2019 New Revision: 504680 URL: https://svnweb.freebsd.org/changeset/ports/504680 Log: sysutils/py-azure-cli-keyvault: Update to 2.2.16 Reported by: portscout Modified: head/sysutils/py-azure-cli-keyvault/Makefile head/sysutils/py-azure-cli-keyvault/distinfo Modified: head/sysutils/py-azure-cli-keyvault/Makefile ============================================================================== --- head/sysutils/py-azure-cli-keyvault/Makefile Thu Jun 20 17:29:32 2019 (r504679) +++ head/sysutils/py-azure-cli-keyvault/Makefile Thu Jun 20 17:29:45 2019 (r504680) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-keyvault -PORTVERSION= 2.2.15 +PORTVERSION= 2.2.16 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-keyvault/distinfo ============================================================================== --- head/sysutils/py-azure-cli-keyvault/distinfo Thu Jun 20 17:29:32 2019 (r504679) +++ head/sysutils/py-azure-cli-keyvault/distinfo Thu Jun 20 17:29:45 2019 (r504680) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557602898 -SHA256 (azure-cli-keyvault-2.2.15.tar.gz) = d7608e2c796f3aca185a99c75116ef56419e9d2739d175aa33cc19b870212305 -SIZE (azure-cli-keyvault-2.2.15.tar.gz) = 27553 +TIMESTAMP = 1561038923 +SHA256 (azure-cli-keyvault-2.2.16.tar.gz) = 2d1200e354bee8a56290b3a94f1f8c54fc32b30344ba5587a9cfd973349b3ec9 +SIZE (azure-cli-keyvault-2.2.16.tar.gz) = 27592 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:30:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1BD0315C29EE; Thu, 20 Jun 2019 17:30:01 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AFD158CD1A; Thu, 20 Jun 2019 17:30:00 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8C88BF301; Thu, 20 Jun 2019 17:30:00 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHU07O017387; Thu, 20 Jun 2019 17:30:00 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHU0wb017385; Thu, 20 Jun 2019 17:30:00 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201730.x5KHU0wb017385@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:30:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504681 - head/sysutils/py-azure-cli-iotcentral X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-iotcentral X-SVN-Commit-Revision: 504681 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AFD158CD1A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:30:01 -0000 Author: dbaio Date: Thu Jun 20 17:29:59 2019 New Revision: 504681 URL: https://svnweb.freebsd.org/changeset/ports/504681 Log: sysutils/py-azure-cli-iotcentral: Update to 0.1.7 Reported by: portscout Modified: head/sysutils/py-azure-cli-iotcentral/Makefile head/sysutils/py-azure-cli-iotcentral/distinfo Modified: head/sysutils/py-azure-cli-iotcentral/Makefile ============================================================================== --- head/sysutils/py-azure-cli-iotcentral/Makefile Thu Jun 20 17:29:45 2019 (r504680) +++ head/sysutils/py-azure-cli-iotcentral/Makefile Thu Jun 20 17:29:59 2019 (r504681) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-iotcentral -PORTVERSION= 0.1.6 +PORTVERSION= 0.1.7 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-iotcentral/distinfo ============================================================================== --- head/sysutils/py-azure-cli-iotcentral/distinfo Thu Jun 20 17:29:45 2019 (r504680) +++ head/sysutils/py-azure-cli-iotcentral/distinfo Thu Jun 20 17:29:59 2019 (r504681) @@ -1,3 +1,3 @@ -TIMESTAMP = 1550321067 -SHA256 (azure-cli-iotcentral-0.1.6.tar.gz) = b5ef298cfb28744464ef750f8d1d618e71971eb9a62f273ff59d6378c38d9fbe -SIZE (azure-cli-iotcentral-0.1.6.tar.gz) = 4696 +TIMESTAMP = 1561038968 +SHA256 (azure-cli-iotcentral-0.1.7.tar.gz) = f7fcc39da95d76b8ca7d67df2574308fddc498c7c5bfcc0f1464a326abcaad64 +SIZE (azure-cli-iotcentral-0.1.7.tar.gz) = 4712 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:30:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 278A115C2A31; Thu, 20 Jun 2019 17:30:17 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C03D48CE24; Thu, 20 Jun 2019 17:30:16 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9BCFDF302; Thu, 20 Jun 2019 17:30:16 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHUGZU017518; Thu, 20 Jun 2019 17:30:16 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHUGud017517; Thu, 20 Jun 2019 17:30:16 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201730.x5KHUGud017517@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:30:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504682 - head/sysutils/py-azure-cli-iot X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-iot X-SVN-Commit-Revision: 504682 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C03D48CE24 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:30:17 -0000 Author: dbaio Date: Thu Jun 20 17:30:16 2019 New Revision: 504682 URL: https://svnweb.freebsd.org/changeset/ports/504682 Log: sysutils/py-azure-cli-iot: Update to 0.3.11 Changelog: https://pypi.org/project/azure-cli-iot/0.3.11/ Reported by: portscout Modified: head/sysutils/py-azure-cli-iot/Makefile head/sysutils/py-azure-cli-iot/distinfo Modified: head/sysutils/py-azure-cli-iot/Makefile ============================================================================== --- head/sysutils/py-azure-cli-iot/Makefile Thu Jun 20 17:29:59 2019 (r504681) +++ head/sysutils/py-azure-cli-iot/Makefile Thu Jun 20 17:30:16 2019 (r504682) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-iot -PORTVERSION= 0.3.10 +PORTVERSION= 0.3.11 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-iot/distinfo ============================================================================== --- head/sysutils/py-azure-cli-iot/distinfo Thu Jun 20 17:29:59 2019 (r504681) +++ head/sysutils/py-azure-cli-iot/distinfo Thu Jun 20 17:30:16 2019 (r504682) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559778150 -SHA256 (azure-cli-iot-0.3.10.tar.gz) = 7c1a8fd03aa6389ffdfa7ac25ca0fe27f629fb07592e746d162eb0e38139d36a -SIZE (azure-cli-iot-0.3.10.tar.gz) = 26092 +TIMESTAMP = 1561038990 +SHA256 (azure-cli-iot-0.3.11.tar.gz) = ad96f6ba12c352967ac2a93d830fdd02b9d0a4fc1f56d6055aa84ba116ce9866 +SIZE (azure-cli-iot-0.3.11.tar.gz) = 32354 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:31:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C524615C2ADD; Thu, 20 Jun 2019 17:31:18 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 69A488CFE5; Thu, 20 Jun 2019 17:31:18 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 42DBDF339; Thu, 20 Jun 2019 17:31:18 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHVIHY019215; Thu, 20 Jun 2019 17:31:18 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHVHJ8019213; Thu, 20 Jun 2019 17:31:17 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201731.x5KHVHJ8019213@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:31:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504683 - head/sysutils/py-azure-cli-interactive X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-interactive X-SVN-Commit-Revision: 504683 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 69A488CFE5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:31:18 -0000 Author: dbaio Date: Thu Jun 20 17:31:17 2019 New Revision: 504683 URL: https://svnweb.freebsd.org/changeset/ports/504683 Log: sysutils/py-azure-cli-interactive: Update to 0.4.5 Reported by: portscout Modified: head/sysutils/py-azure-cli-interactive/Makefile head/sysutils/py-azure-cli-interactive/distinfo Modified: head/sysutils/py-azure-cli-interactive/Makefile ============================================================================== --- head/sysutils/py-azure-cli-interactive/Makefile Thu Jun 20 17:30:16 2019 (r504682) +++ head/sysutils/py-azure-cli-interactive/Makefile Thu Jun 20 17:31:17 2019 (r504683) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-interactive -PORTVERSION= 0.4.4 +PORTVERSION= 0.4.5 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-interactive/distinfo ============================================================================== --- head/sysutils/py-azure-cli-interactive/distinfo Thu Jun 20 17:30:16 2019 (r504682) +++ head/sysutils/py-azure-cli-interactive/distinfo Thu Jun 20 17:31:17 2019 (r504683) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558572245 -SHA256 (azure-cli-interactive-0.4.4.tar.gz) = eccf52fbd9d3cb4688b7a85f05cfa7f2876fdd2864d50d55ca9c5ce62b5cae42 -SIZE (azure-cli-interactive-0.4.4.tar.gz) = 7037 +TIMESTAMP = 1561039024 +SHA256 (azure-cli-interactive-0.4.5.tar.gz) = bf265d5ca7d0c3d9b79927b76a8bca6096facac92b733ebe27bbba8bfde1c422 +SIZE (azure-cli-interactive-0.4.5.tar.gz) = 7048 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:31:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AB89515C2C5C; Thu, 20 Jun 2019 17:31:33 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D4D78D0D8; Thu, 20 Jun 2019 17:31:33 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 286E5F34D; Thu, 20 Jun 2019 17:31:33 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHVXja019346; Thu, 20 Jun 2019 17:31:33 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHVWcV019344; Thu, 20 Jun 2019 17:31:32 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201731.x5KHVWcV019344@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:31:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504684 - head/sysutils/py-azure-cli-hdinsight X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-hdinsight X-SVN-Commit-Revision: 504684 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4D4D78D0D8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:31:34 -0000 Author: dbaio Date: Thu Jun 20 17:31:32 2019 New Revision: 504684 URL: https://svnweb.freebsd.org/changeset/ports/504684 Log: sysutils/py-azure-cli-hdinsight: Update to 0.3.5 Changelog: https://pypi.org/project/azure-cli-hdinsight/0.3.5/ Reported by: portscout Modified: head/sysutils/py-azure-cli-hdinsight/Makefile head/sysutils/py-azure-cli-hdinsight/distinfo Modified: head/sysutils/py-azure-cli-hdinsight/Makefile ============================================================================== --- head/sysutils/py-azure-cli-hdinsight/Makefile Thu Jun 20 17:31:17 2019 (r504683) +++ head/sysutils/py-azure-cli-hdinsight/Makefile Thu Jun 20 17:31:32 2019 (r504684) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-hdinsight -PORTVERSION= 0.3.4 +PORTVERSION= 0.3.5 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,7 +13,7 @@ LICENSE= MIT RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-hdinsight>=0.2.1:devel/py-azure-mgmt-hdinsight@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-mgmt-storage>=3.3.0:devel/py-azure-mgmt-storage@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-mgmt-network>=2.7.0:devel/py-azure-mgmt-network@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-mgmt-network>=3.0.0:devel/py-azure-mgmt-network@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-core>=0:sysutils/py-azure-cli-core@${PY_FLAVOR} USES= azurepy python Modified: head/sysutils/py-azure-cli-hdinsight/distinfo ============================================================================== --- head/sysutils/py-azure-cli-hdinsight/distinfo Thu Jun 20 17:31:17 2019 (r504683) +++ head/sysutils/py-azure-cli-hdinsight/distinfo Thu Jun 20 17:31:32 2019 (r504684) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558572443 -SHA256 (azure-cli-hdinsight-0.3.4.tar.gz) = 7e94777c2c4f674caf088d8009141b1809bd57cc920020947272ea48161dc5c6 -SIZE (azure-cli-hdinsight-0.3.4.tar.gz) = 13106 +TIMESTAMP = 1561039064 +SHA256 (azure-cli-hdinsight-0.3.5.tar.gz) = 6c8b15cad14bad6e0bbae4f7ded521c2ce25363101d942a80c654b464422fe58 +SIZE (azure-cli-hdinsight-0.3.5.tar.gz) = 13256 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:31:44 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96AEA15C2C8D; Thu, 20 Jun 2019 17:31:44 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 402FC8D2F5; Thu, 20 Jun 2019 17:31:44 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 338FBF355; Thu, 20 Jun 2019 17:31:44 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHViT9019474; Thu, 20 Jun 2019 17:31:44 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHVhrM019473; Thu, 20 Jun 2019 17:31:43 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201731.x5KHVhrM019473@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:31:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504685 - head/sysutils/py-azure-cli-find X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-find X-SVN-Commit-Revision: 504685 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 402FC8D2F5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:31:44 -0000 Author: dbaio Date: Thu Jun 20 17:31:43 2019 New Revision: 504685 URL: https://svnweb.freebsd.org/changeset/ports/504685 Log: sysutils/py-azure-cli-find: Update to 0.3.4 Reported by: portscout Modified: head/sysutils/py-azure-cli-find/Makefile head/sysutils/py-azure-cli-find/distinfo Modified: head/sysutils/py-azure-cli-find/Makefile ============================================================================== --- head/sysutils/py-azure-cli-find/Makefile Thu Jun 20 17:31:32 2019 (r504684) +++ head/sysutils/py-azure-cli-find/Makefile Thu Jun 20 17:31:43 2019 (r504685) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-find -PORTVERSION= 0.3.3 +PORTVERSION= 0.3.4 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-find/distinfo ============================================================================== --- head/sysutils/py-azure-cli-find/distinfo Thu Jun 20 17:31:32 2019 (r504684) +++ head/sysutils/py-azure-cli-find/distinfo Thu Jun 20 17:31:43 2019 (r504685) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558572586 -SHA256 (azure-cli-find-0.3.3.tar.gz) = 00c0af82f7dd8b35f4ee3645deb4d4ab6f3aca5968e8aaa8be1066f22933c878 -SIZE (azure-cli-find-0.3.3.tar.gz) = 4624 +TIMESTAMP = 1561039133 +SHA256 (azure-cli-find-0.3.4.tar.gz) = 193c15f57847ac992e21c1fa05a241f9a2cac0b2fd9d8099a139cf3b4254535c +SIZE (azure-cli-find-0.3.4.tar.gz) = 4638 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:31:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9ABDC15C2CD5; Thu, 20 Jun 2019 17:31:59 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 420348D40A; Thu, 20 Jun 2019 17:31:59 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0FCB8F367; Thu, 20 Jun 2019 17:31:59 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHVwUP019602; Thu, 20 Jun 2019 17:31:58 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHVw6n019600; Thu, 20 Jun 2019 17:31:58 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201731.x5KHVw6n019600@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:31:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504686 - head/sysutils/py-azure-cli-eventhubs X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-eventhubs X-SVN-Commit-Revision: 504686 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 420348D40A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:31:59 -0000 Author: dbaio Date: Thu Jun 20 17:31:58 2019 New Revision: 504686 URL: https://svnweb.freebsd.org/changeset/ports/504686 Log: sysutils/py-azure-cli-eventhubs: Update to 0.3.7 Reported by: portscout Modified: head/sysutils/py-azure-cli-eventhubs/Makefile head/sysutils/py-azure-cli-eventhubs/distinfo Modified: head/sysutils/py-azure-cli-eventhubs/Makefile ============================================================================== --- head/sysutils/py-azure-cli-eventhubs/Makefile Thu Jun 20 17:31:43 2019 (r504685) +++ head/sysutils/py-azure-cli-eventhubs/Makefile Thu Jun 20 17:31:58 2019 (r504686) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-eventhubs -PORTVERSION= 0.3.6 +PORTVERSION= 0.3.7 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-eventhubs/distinfo ============================================================================== --- head/sysutils/py-azure-cli-eventhubs/distinfo Thu Jun 20 17:31:43 2019 (r504685) +++ head/sysutils/py-azure-cli-eventhubs/distinfo Thu Jun 20 17:31:58 2019 (r504686) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558572612 -SHA256 (azure-cli-eventhubs-0.3.6.tar.gz) = 5e3b8448f4849e09ad327a3cc087812461c60e59f9f0f5b0a705df0b5e633460 -SIZE (azure-cli-eventhubs-0.3.6.tar.gz) = 11696 +TIMESTAMP = 1561039159 +SHA256 (azure-cli-eventhubs-0.3.7.tar.gz) = 380c584d45da5a6a7b8daca71ea41ea22b2a599f3ddd258c278d1215a39c056f +SIZE (azure-cli-eventhubs-0.3.7.tar.gz) = 11727 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:32:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16A9315C2D30; Thu, 20 Jun 2019 17:32:17 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AA46E8D529; Thu, 20 Jun 2019 17:32:16 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 84260F381; Thu, 20 Jun 2019 17:32:16 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHWGZY022711; Thu, 20 Jun 2019 17:32:16 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHWGoB022710; Thu, 20 Jun 2019 17:32:16 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201732.x5KHWGoB022710@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:32:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504687 - head/sysutils/py-azure-cli-eventgrid X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-eventgrid X-SVN-Commit-Revision: 504687 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AA46E8D529 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:32:17 -0000 Author: dbaio Date: Thu Jun 20 17:32:15 2019 New Revision: 504687 URL: https://svnweb.freebsd.org/changeset/ports/504687 Log: sysutils/py-azure-cli-eventgrid: Update to 0.2.4 Changelog: https://pypi.org/project/azure-cli-eventgrid/0.2.4/ Reported by: portscout Modified: head/sysutils/py-azure-cli-eventgrid/Makefile head/sysutils/py-azure-cli-eventgrid/distinfo Modified: head/sysutils/py-azure-cli-eventgrid/Makefile ============================================================================== --- head/sysutils/py-azure-cli-eventgrid/Makefile Thu Jun 20 17:31:58 2019 (r504686) +++ head/sysutils/py-azure-cli-eventgrid/Makefile Thu Jun 20 17:32:15 2019 (r504687) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-eventgrid -PORTVERSION= 0.2.3 +PORTVERSION= 0.2.4 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,7 +11,7 @@ COMMENT= Microsoft Azure Command-Line Tools EventGrid LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-eventgrid>=2.0.0:devel/py-azure-mgmt-eventgrid@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-eventgrid>=2.2.0:devel/py-azure-mgmt-eventgrid@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-core>=0:sysutils/py-azure-cli-core@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} Modified: head/sysutils/py-azure-cli-eventgrid/distinfo ============================================================================== --- head/sysutils/py-azure-cli-eventgrid/distinfo Thu Jun 20 17:31:58 2019 (r504686) +++ head/sysutils/py-azure-cli-eventgrid/distinfo Thu Jun 20 17:32:15 2019 (r504687) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556400452 -SHA256 (azure-cli-eventgrid-0.2.3.tar.gz) = a0a97d06f9efab9ed250c76bb4978c082844838c6c8cd3b9cf5add6c7f6850d0 -SIZE (azure-cli-eventgrid-0.2.3.tar.gz) = 12064 +TIMESTAMP = 1561039190 +SHA256 (azure-cli-eventgrid-0.2.4.tar.gz) = 62e4dd24c96539d82172f521061961f38127c59abe1287ae1a1598a246867707 +SIZE (azure-cli-eventgrid-0.2.4.tar.gz) = 15778 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:32:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4DC8615C2D6C; Thu, 20 Jun 2019 17:32:29 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E7E5E8D621; Thu, 20 Jun 2019 17:32:28 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C2714F398; Thu, 20 Jun 2019 17:32:28 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHWSXk022839; Thu, 20 Jun 2019 17:32:28 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHWScp022838; Thu, 20 Jun 2019 17:32:28 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201732.x5KHWScp022838@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:32:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504688 - head/sysutils/py-azure-cli-dms X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-dms X-SVN-Commit-Revision: 504688 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E7E5E8D621 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:32:29 -0000 Author: dbaio Date: Thu Jun 20 17:32:28 2019 New Revision: 504688 URL: https://svnweb.freebsd.org/changeset/ports/504688 Log: sysutils/py-azure-cli-dms: Update to 0.1.4 Reported by: portscout Modified: head/sysutils/py-azure-cli-dms/Makefile head/sysutils/py-azure-cli-dms/distinfo Modified: head/sysutils/py-azure-cli-dms/Makefile ============================================================================== --- head/sysutils/py-azure-cli-dms/Makefile Thu Jun 20 17:32:15 2019 (r504687) +++ head/sysutils/py-azure-cli-dms/Makefile Thu Jun 20 17:32:28 2019 (r504688) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-dms -PORTVERSION= 0.1.3 +PORTVERSION= 0.1.4 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-dms/distinfo ============================================================================== --- head/sysutils/py-azure-cli-dms/distinfo Thu Jun 20 17:32:15 2019 (r504687) +++ head/sysutils/py-azure-cli-dms/distinfo Thu Jun 20 17:32:28 2019 (r504688) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553902449 -SHA256 (azure-cli-dms-0.1.3.tar.gz) = 6cf5817ab8462ac43c9c407f996e47165ccaf2fe5398322b5b589628224e7224 -SIZE (azure-cli-dms-0.1.3.tar.gz) = 7904 +TIMESTAMP = 1561039888 +SHA256 (azure-cli-dms-0.1.4.tar.gz) = a16fe2d364f5c48e6ad9a196e6f9052698fff336ac52cb43988f0d12e193e97d +SIZE (azure-cli-dms-0.1.4.tar.gz) = 7931 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:32:40 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0AFF15C2D99; Thu, 20 Jun 2019 17:32:39 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 96BA08D6FB; Thu, 20 Jun 2019 17:32:39 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 59F41F4BA; Thu, 20 Jun 2019 17:32:39 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHWddd022967; Thu, 20 Jun 2019 17:32:39 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHWdbt022966; Thu, 20 Jun 2019 17:32:39 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201732.x5KHWdbt022966@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:32:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504689 - head/sysutils/py-azure-cli-dls X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-dls X-SVN-Commit-Revision: 504689 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 96BA08D6FB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:32:40 -0000 Author: dbaio Date: Thu Jun 20 17:32:38 2019 New Revision: 504689 URL: https://svnweb.freebsd.org/changeset/ports/504689 Log: sysutils/py-azure-cli-dls: Update to 0.1.10 Reported by: portscout Modified: head/sysutils/py-azure-cli-dls/Makefile head/sysutils/py-azure-cli-dls/distinfo Modified: head/sysutils/py-azure-cli-dls/Makefile ============================================================================== --- head/sysutils/py-azure-cli-dls/Makefile Thu Jun 20 17:32:28 2019 (r504688) +++ head/sysutils/py-azure-cli-dls/Makefile Thu Jun 20 17:32:38 2019 (r504689) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-dls -PORTVERSION= 0.1.9 +PORTVERSION= 0.1.10 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-dls/distinfo ============================================================================== --- head/sysutils/py-azure-cli-dls/distinfo Thu Jun 20 17:32:28 2019 (r504688) +++ head/sysutils/py-azure-cli-dls/distinfo Thu Jun 20 17:32:38 2019 (r504689) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556400508 -SHA256 (azure-cli-dls-0.1.9.tar.gz) = 6b1a5ad4dabd997cb1ca1d4cea9f71b4f7109081917c6fac9e1896503e98688b -SIZE (azure-cli-dls-0.1.9.tar.gz) = 12913 +TIMESTAMP = 1561039920 +SHA256 (azure-cli-dls-0.1.10.tar.gz) = 2ff4769754dbb168cf234151ffa40882d1c7deb0097468ef2cf1e7c9ecc3a389 +SIZE (azure-cli-dls-0.1.10.tar.gz) = 12937 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:32:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7B20115C2DCD; Thu, 20 Jun 2019 17:32:53 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7C57B8D7DF; Thu, 20 Jun 2019 17:32:52 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 653EAF4BB; Thu, 20 Jun 2019 17:32:52 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHWq3L023095; Thu, 20 Jun 2019 17:32:52 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHWqlD023094; Thu, 20 Jun 2019 17:32:52 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201732.x5KHWqlD023094@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:32:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504690 - head/sysutils/py-azure-cli-dla X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-dla X-SVN-Commit-Revision: 504690 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7C57B8D7DF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:32:53 -0000 Author: dbaio Date: Thu Jun 20 17:32:51 2019 New Revision: 504690 URL: https://svnweb.freebsd.org/changeset/ports/504690 Log: sysutils/py-azure-cli-dla: Update to 0.2.6 Reported by: portscout Modified: head/sysutils/py-azure-cli-dla/Makefile head/sysutils/py-azure-cli-dla/distinfo Modified: head/sysutils/py-azure-cli-dla/Makefile ============================================================================== --- head/sysutils/py-azure-cli-dla/Makefile Thu Jun 20 17:32:38 2019 (r504689) +++ head/sysutils/py-azure-cli-dla/Makefile Thu Jun 20 17:32:51 2019 (r504690) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-dla -PORTVERSION= 0.2.5 +PORTVERSION= 0.2.6 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-dla/distinfo ============================================================================== --- head/sysutils/py-azure-cli-dla/distinfo Thu Jun 20 17:32:38 2019 (r504689) +++ head/sysutils/py-azure-cli-dla/distinfo Thu Jun 20 17:32:51 2019 (r504690) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553902471 -SHA256 (azure-cli-dla-0.2.5.tar.gz) = 58d60a558cb82151b38b2bcb5cfc430d6cbe847cb7f0033a94d97719eb2382d0 -SIZE (azure-cli-dla-0.2.5.tar.gz) = 12740 +TIMESTAMP = 1561040011 +SHA256 (azure-cli-dla-0.2.6.tar.gz) = 92d7708ec9ffea1d3a4e39ab51c48a8e1e61c87c9f9e002fec7fcb9a727a4a9f +SIZE (azure-cli-dla-0.2.6.tar.gz) = 13001 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:37:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 93A7A15C2E91; Thu, 20 Jun 2019 17:37:00 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 399838D92E; Thu, 20 Jun 2019 17:37:00 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 28C16F4BE; Thu, 20 Jun 2019 17:37:00 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHb0fN023478; Thu, 20 Jun 2019 17:37:00 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHaxlg023472; Thu, 20 Jun 2019 17:36:59 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201736.x5KHaxlg023472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:36:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504691 - in head: . devel devel/py-azure-cosmos devel/py-pydocumentdb X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head: . devel devel/py-azure-cosmos devel/py-pydocumentdb X-SVN-Commit-Revision: 504691 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 399838D92E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:37:00 -0000 Author: dbaio Date: Thu Jun 20 17:36:58 2019 New Revision: 504691 URL: https://svnweb.freebsd.org/changeset/ports/504691 Log: devel/py-pydocumentdb: Rename to devel/py-azure-cosmos and update to 3.1.0 Added: head/devel/py-azure-cosmos/ - copied from r504690, head/devel/py-pydocumentdb/ Deleted: head/devel/py-pydocumentdb/ Modified: head/MOVED head/devel/Makefile head/devel/py-azure-cosmos/Makefile head/devel/py-azure-cosmos/distinfo head/devel/py-azure-cosmos/pkg-descr Modified: head/MOVED ============================================================================== --- head/MOVED Thu Jun 20 17:32:51 2019 (r504690) +++ head/MOVED Thu Jun 20 17:36:58 2019 (r504691) @@ -12804,3 +12804,4 @@ databases/postgis20|databases/postgis23|2019-06-16|Has databases/postgis22|databases/postgis23|2019-06-16|Has expired: Upstream no longer maintained games/freeciv-sounds||2019-06-16|Unused and already part of games/freeciv security/py-bro-pkg|security/py-zkg|2019-06-17|Renamed to match upstream changes +devel/py-pydocumentdb|devel/py-azure-cosmos|2019-06-20|Renamed upstream Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu Jun 20 17:32:51 2019 (r504690) +++ head/devel/Makefile Thu Jun 20 17:36:58 2019 (r504691) @@ -4118,6 +4118,7 @@ SUBDIR += py-aws-sam-translator SUBDIR += py-aws-xray-sdk SUBDIR += py-azure-batch + SUBDIR += py-azure-cosmos SUBDIR += py-azure-datalake-store SUBDIR += py-azure-graphrbac SUBDIR += py-azure-keyvault @@ -4769,7 +4770,6 @@ SUBDIR += py-pydevd SUBDIR += py-pydispatcher SUBDIR += py-pydocstyle - SUBDIR += py-pydocumentdb SUBDIR += py-pydoop SUBDIR += py-pydrive SUBDIR += py-pyechonest Modified: head/devel/py-azure-cosmos/Makefile ============================================================================== --- head/devel/py-pydocumentdb/Makefile Thu Jun 20 17:32:51 2019 (r504690) +++ head/devel/py-azure-cosmos/Makefile Thu Jun 20 17:36:58 2019 (r504691) @@ -1,22 +1,25 @@ # $FreeBSD$ -PORTNAME= pydocumentdb -PORTVERSION= 2.3.3 +PORTNAME= azure-cosmos +PORTVERSION= 3.1.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= dbaio@FreeBSD.org -COMMENT= Azure DocumentDB Python SDK +COMMENT= Azure Cosmos Python SDK LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.6:devel/py-six@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=2.10.0:www/py-requests@${PY_FLAVOR} USES= azurepy python USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes + +post-extract: + @${RM} -r ${WRKSRC}/samples ${WRKSRC}/doc .include Modified: head/devel/py-azure-cosmos/distinfo ============================================================================== --- head/devel/py-pydocumentdb/distinfo Thu Jun 20 17:32:51 2019 (r504690) +++ head/devel/py-azure-cosmos/distinfo Thu Jun 20 17:36:58 2019 (r504691) @@ -1,3 +1,3 @@ -TIMESTAMP = 1545688600 -SHA256 (pydocumentdb-2.3.3.tar.gz) = 77c8da2b50920442da42f13b2cb9ff0a4062a982b26d9381ba30b12bcc1b97b9 -SIZE (pydocumentdb-2.3.3.tar.gz) = 104513 +TIMESTAMP = 1561040691 +SHA256 (azure-cosmos-3.1.0.tar.gz) = f4a718cc4d26e90ad22abbd0d208f43040cbb4b7768144632dd3042fec9da5a4 +SIZE (azure-cosmos-3.1.0.tar.gz) = 122634 Modified: head/devel/py-azure-cosmos/pkg-descr ============================================================================== --- head/devel/py-pydocumentdb/pkg-descr Thu Jun 20 17:32:51 2019 (r504690) +++ head/devel/py-azure-cosmos/pkg-descr Thu Jun 20 17:36:58 2019 (r504691) @@ -10,4 +10,4 @@ comprehensive service level agreements (SLAs) for thro availability, and consistency guarantees, something no other database service can offer. -WWW: https://pypi.org/project/pydocumentdb/ +WWW: https://pypi.org/project/azure-cosmos/ From owner-svn-ports-all@freebsd.org Thu Jun 20 17:38:16 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0A7C15C2EE1; Thu, 20 Jun 2019 17:38:15 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 94DBF8DA27; Thu, 20 Jun 2019 17:38:15 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6885FF4BF; Thu, 20 Jun 2019 17:38:15 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHcF5k023654; Thu, 20 Jun 2019 17:38:15 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHcFRv023653; Thu, 20 Jun 2019 17:38:15 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201738.x5KHcFRv023653@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:38:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504692 - head/sysutils/py-azure-cli-cosmosdb X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-cosmosdb X-SVN-Commit-Revision: 504692 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 94DBF8DA27 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:38:16 -0000 Author: dbaio Date: Thu Jun 20 17:38:14 2019 New Revision: 504692 URL: https://svnweb.freebsd.org/changeset/ports/504692 Log: sysutils/py-azure-cli-cosmosdb: Update to 0.2.11 Changelog: https://pypi.org/project/azure-cli-cosmosdb/0.2.11/ Reported by: portscout Modified: head/sysutils/py-azure-cli-cosmosdb/Makefile head/sysutils/py-azure-cli-cosmosdb/distinfo Modified: head/sysutils/py-azure-cli-cosmosdb/Makefile ============================================================================== --- head/sysutils/py-azure-cli-cosmosdb/Makefile Thu Jun 20 17:36:58 2019 (r504691) +++ head/sysutils/py-azure-cli-cosmosdb/Makefile Thu Jun 20 17:38:14 2019 (r504692) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-cosmosdb -PORTVERSION= 0.2.10 +PORTVERSION= 0.2.11 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -11,9 +11,9 @@ COMMENT= Microsoft Azure Command-Line Tools Cosmos DB LICENSE= MIT -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-cosmosdb>=0.5.2:devel/py-azure-mgmt-cosmosdb@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-cosmosdb>=0.6.1:devel/py-azure-mgmt-cosmosdb@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-core>=0:sysutils/py-azure-cli-core@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pydocumentdb>=2.0.1:devel/py-pydocumentdb@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}azure-cosmos>=3.0.2:devel/py-azure-cosmos@${PY_FLAVOR} USES= azurepy python USE_PYTHON= autoplist concurrent distutils Modified: head/sysutils/py-azure-cli-cosmosdb/distinfo ============================================================================== --- head/sysutils/py-azure-cli-cosmosdb/distinfo Thu Jun 20 17:36:58 2019 (r504691) +++ head/sysutils/py-azure-cli-cosmosdb/distinfo Thu Jun 20 17:38:14 2019 (r504692) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556400535 -SHA256 (azure-cli-cosmosdb-0.2.10.tar.gz) = 2f8f08a0e45a5da631a09bb069cadd5432bbc9815d2f8f9656f1434da5baa0c2 -SIZE (azure-cli-cosmosdb-0.2.10.tar.gz) = 12863 +TIMESTAMP = 1561040045 +SHA256 (azure-cli-cosmosdb-0.2.11.tar.gz) = 2b1dc92d65f8ff7fc4abc0f4e6f9ffdf46c3229f0f3ee956c339bacd2f1544a0 +SIZE (azure-cli-cosmosdb-0.2.11.tar.gz) = 14423 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:39:36 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B881415C2F32; Thu, 20 Jun 2019 17:39:36 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5F07E8DB1D; Thu, 20 Jun 2019 17:39:36 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3BDC8F4C0; Thu, 20 Jun 2019 17:39:36 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHdaJo023828; Thu, 20 Jun 2019 17:39:36 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHdZju023824; Thu, 20 Jun 2019 17:39:35 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201739.x5KHdZju023824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:39:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504693 - head/sysutils/py-azure-cli-core X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-core X-SVN-Commit-Revision: 504693 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5F07E8DB1D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:39:37 -0000 Author: dbaio Date: Thu Jun 20 17:39:35 2019 New Revision: 504693 URL: https://svnweb.freebsd.org/changeset/ports/504693 Log: sysutils/py-azure-cli-core: Update to 2.0.67 Changelog: https://pypi.org/project/azure-cli-core/2.0.67/ Reported by: portscout Modified: head/sysutils/py-azure-cli-core/Makefile head/sysutils/py-azure-cli-core/distinfo Modified: head/sysutils/py-azure-cli-core/Makefile ============================================================================== --- head/sysutils/py-azure-cli-core/Makefile Thu Jun 20 17:38:14 2019 (r504692) +++ head/sysutils/py-azure-cli-core/Makefile Thu Jun 20 17:39:35 2019 (r504693) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-core -PORTVERSION= 2.0.66 +PORTVERSION= 2.0.67 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -17,7 +17,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}adal>=1.2.0:net-mg ${PYTHON_PKGNAMEPREFIX}colorama>=0.3.9:devel/py-colorama@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}humanfriendly>=4.7:textproc/py-humanfriendly@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}jmespath>=0:devel/py-jmespath@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}knack>=0.6.1:devel/py-knack@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}knack>=0.6.2:devel/py-knack@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}msrest>=0.4.4:net-mgmt/py-msrest@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}msrestazure>=0.4.25:net-mgmt/py-msrestazure@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}paramiko>=2.0.8:security/py-paramiko@${PY_FLAVOR} \ Modified: head/sysutils/py-azure-cli-core/distinfo ============================================================================== --- head/sysutils/py-azure-cli-core/distinfo Thu Jun 20 17:38:14 2019 (r504692) +++ head/sysutils/py-azure-cli-core/distinfo Thu Jun 20 17:39:35 2019 (r504693) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559778224 -SHA256 (azure-cli-core-2.0.66.tar.gz) = a546abb932d297b2b21d3a1850e7248c4a9b01aa5a1dc5ee016f251aba58e63a -SIZE (azure-cli-core-2.0.66.tar.gz) = 107317 +TIMESTAMP = 1561042044 +SHA256 (azure-cli-core-2.0.67.tar.gz) = af52a0af876ca1153ff71d2d320234e681c35a8cbdcf14336edd55e57b9ab565 +SIZE (azure-cli-core-2.0.67.tar.gz) = 109441 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:39:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE96E15C2F58; Thu, 20 Jun 2019 17:39:49 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 55B828DBE5; Thu, 20 Jun 2019 17:39:49 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 22115F4C1; Thu, 20 Jun 2019 17:39:49 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHdndZ023958; Thu, 20 Jun 2019 17:39:49 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHdmjb023956; Thu, 20 Jun 2019 17:39:48 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201739.x5KHdmjb023956@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:39:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504694 - head/sysutils/py-azure-cli-container X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-container X-SVN-Commit-Revision: 504694 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 55B828DBE5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:39:49 -0000 Author: dbaio Date: Thu Jun 20 17:39:48 2019 New Revision: 504694 URL: https://svnweb.freebsd.org/changeset/ports/504694 Log: sysutils/py-azure-cli-container: Update to 0.3.18 Reported by: portscout Modified: head/sysutils/py-azure-cli-container/Makefile head/sysutils/py-azure-cli-container/distinfo Modified: head/sysutils/py-azure-cli-container/Makefile ============================================================================== --- head/sysutils/py-azure-cli-container/Makefile Thu Jun 20 17:39:35 2019 (r504693) +++ head/sysutils/py-azure-cli-container/Makefile Thu Jun 20 17:39:48 2019 (r504694) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-container -PORTVERSION= 0.3.17 +PORTVERSION= 0.3.18 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,7 +14,7 @@ LICENSE= MIT RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-containerinstance>=1.4.0:devel/py-azure-mgmt-containerinstance@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-mgmt-loganalytics>=0.2.0:devel/py-azure-mgmt-loganalytics@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-mgmt-resource>=2.0.0:devel/py-azure-mgmt-resource@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-mgmt-network>=2.7.0:devel/py-azure-mgmt-network@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-mgmt-network>=3.0.0:devel/py-azure-mgmt-network@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-mgmt-authorization>=0.50.0:devel/py-azure-mgmt-authorization@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-core>=0:sysutils/py-azure-cli-core@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}yaml>=3.13:devel/py-yaml@${PY_FLAVOR} \ Modified: head/sysutils/py-azure-cli-container/distinfo ============================================================================== --- head/sysutils/py-azure-cli-container/distinfo Thu Jun 20 17:39:35 2019 (r504693) +++ head/sysutils/py-azure-cli-container/distinfo Thu Jun 20 17:39:48 2019 (r504694) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558572751 -SHA256 (azure-cli-container-0.3.17.tar.gz) = 9982a7b50c07222cba5cee1ee348d1ca88973023058f7b09c75770c946734028 -SIZE (azure-cli-container-0.3.17.tar.gz) = 23293 +TIMESTAMP = 1561042164 +SHA256 (azure-cli-container-0.3.18.tar.gz) = 0c1b46aacd9bcd24f27cf92b5b7ed6193bc1aa8b05aafde7c3bb1ea7cdf69bad +SIZE (azure-cli-container-0.3.18.tar.gz) = 23322 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:40:32 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BCD4F15C2FBB; Thu, 20 Jun 2019 17:40:32 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6347D8DCE0; Thu, 20 Jun 2019 17:40:32 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 58612F4C6; Thu, 20 Jun 2019 17:40:32 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHeWla024134; Thu, 20 Jun 2019 17:40:32 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHeWe1024131; Thu, 20 Jun 2019 17:40:32 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201740.x5KHeWe1024131@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:40:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504695 - head/sysutils/py-azure-cli-consumption X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-consumption X-SVN-Commit-Revision: 504695 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6347D8DCE0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:40:32 -0000 Author: dbaio Date: Thu Jun 20 17:40:31 2019 New Revision: 504695 URL: https://svnweb.freebsd.org/changeset/ports/504695 Log: sysutils/py-azure-cli-consumption: Update to 0.4.4 Reported by: portscout Modified: head/sysutils/py-azure-cli-consumption/Makefile head/sysutils/py-azure-cli-consumption/distinfo Modified: head/sysutils/py-azure-cli-consumption/Makefile ============================================================================== --- head/sysutils/py-azure-cli-consumption/Makefile Thu Jun 20 17:39:48 2019 (r504694) +++ head/sysutils/py-azure-cli-consumption/Makefile Thu Jun 20 17:40:31 2019 (r504695) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-consumption -PORTVERSION= 0.4.3 +PORTVERSION= 0.4.4 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-consumption/distinfo ============================================================================== --- head/sysutils/py-azure-cli-consumption/distinfo Thu Jun 20 17:39:48 2019 (r504694) +++ head/sysutils/py-azure-cli-consumption/distinfo Thu Jun 20 17:40:31 2019 (r504695) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558572807 -SHA256 (azure-cli-consumption-0.4.3.tar.gz) = ec3192b041c3a761f4a70cdcb922b0bd09dafffc2e08003560e0c0f98388dc20 -SIZE (azure-cli-consumption-0.4.3.tar.gz) = 7816 +TIMESTAMP = 1561042228 +SHA256 (azure-cli-consumption-0.4.4.tar.gz) = 6c96763ec86acfbe6b8e3207c9ab2fb9ef08c28d33a68431e31f0fc538ccb13e +SIZE (azure-cli-consumption-0.4.4.tar.gz) = 7851 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:40:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 629E715C2FEF; Thu, 20 Jun 2019 17:40:48 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0B29D8DDDC; Thu, 20 Jun 2019 17:40:48 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D9C13F5E0; Thu, 20 Jun 2019 17:40:47 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHelYE024267; Thu, 20 Jun 2019 17:40:47 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHelp1024266; Thu, 20 Jun 2019 17:40:47 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201740.x5KHelp1024266@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:40:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504696 - head/sysutils/py-azure-cli-configure X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-configure X-SVN-Commit-Revision: 504696 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0B29D8DDDC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:40:48 -0000 Author: dbaio Date: Thu Jun 20 17:40:47 2019 New Revision: 504696 URL: https://svnweb.freebsd.org/changeset/ports/504696 Log: sysutils/py-azure-cli-configure: Update to 2.0.24 Reported by: portscout Modified: head/sysutils/py-azure-cli-configure/Makefile head/sysutils/py-azure-cli-configure/distinfo Modified: head/sysutils/py-azure-cli-configure/Makefile ============================================================================== --- head/sysutils/py-azure-cli-configure/Makefile Thu Jun 20 17:40:31 2019 (r504695) +++ head/sysutils/py-azure-cli-configure/Makefile Thu Jun 20 17:40:47 2019 (r504696) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-configure -PORTVERSION= 2.0.23 +PORTVERSION= 2.0.24 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-configure/distinfo ============================================================================== --- head/sysutils/py-azure-cli-configure/distinfo Thu Jun 20 17:40:31 2019 (r504695) +++ head/sysutils/py-azure-cli-configure/distinfo Thu Jun 20 17:40:47 2019 (r504696) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557603544 -SHA256 (azure-cli-configure-2.0.23.tar.gz) = 42e90f62cb94bc0e056378f05d17fa722e7a8982a0bc99dd7bd20cfc5c88422f -SIZE (azure-cli-configure-2.0.23.tar.gz) = 8597 +TIMESTAMP = 1561042270 +SHA256 (azure-cli-configure-2.0.24.tar.gz) = 0645e91c86475aceb8314e56d524e493d9b39e802845b6006900ae8160f5a172 +SIZE (azure-cli-configure-2.0.24.tar.gz) = 8616 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:41:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B2FA15C3033; Thu, 20 Jun 2019 17:41:05 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A710C8DFFE; Thu, 20 Jun 2019 17:41:04 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 82AA6F5F3; Thu, 20 Jun 2019 17:41:04 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHf4HN024406; Thu, 20 Jun 2019 17:41:04 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHf48I024404; Thu, 20 Jun 2019 17:41:04 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201741.x5KHf48I024404@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:41:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504697 - head/sysutils/py-azure-cli-cognitiveservices X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-cognitiveservices X-SVN-Commit-Revision: 504697 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A710C8DFFE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:41:05 -0000 Author: dbaio Date: Thu Jun 20 17:41:03 2019 New Revision: 504697 URL: https://svnweb.freebsd.org/changeset/ports/504697 Log: sysutils/py-azure-cli-cognitiveservices: Update to 0.2.6 Reported by: portscout Modified: head/sysutils/py-azure-cli-cognitiveservices/Makefile head/sysutils/py-azure-cli-cognitiveservices/distinfo Modified: head/sysutils/py-azure-cli-cognitiveservices/Makefile ============================================================================== --- head/sysutils/py-azure-cli-cognitiveservices/Makefile Thu Jun 20 17:40:47 2019 (r504696) +++ head/sysutils/py-azure-cli-cognitiveservices/Makefile Thu Jun 20 17:41:03 2019 (r504697) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-cognitiveservices -PORTVERSION= 0.2.5 +PORTVERSION= 0.2.6 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-cognitiveservices/distinfo ============================================================================== --- head/sysutils/py-azure-cli-cognitiveservices/distinfo Thu Jun 20 17:40:47 2019 (r504696) +++ head/sysutils/py-azure-cli-cognitiveservices/distinfo Thu Jun 20 17:41:03 2019 (r504697) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553902708 -SHA256 (azure-cli-cognitiveservices-0.2.5.tar.gz) = ddece91cae859e017b2bab043d54fab3f9e4010b0d2aa8e15bb6a228391258a9 -SIZE (azure-cli-cognitiveservices-0.2.5.tar.gz) = 7398 +TIMESTAMP = 1561042305 +SHA256 (azure-cli-cognitiveservices-0.2.6.tar.gz) = 709db9aec859f0dd557f5235fae43d3bb049393b5e447d0a4c1399b51265262a +SIZE (azure-cli-cognitiveservices-0.2.6.tar.gz) = 7428 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:41:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 02D9E15C3070; Thu, 20 Jun 2019 17:41:17 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F8E78E106; Thu, 20 Jun 2019 17:41:16 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4CAB4F60D; Thu, 20 Jun 2019 17:41:16 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHfGOd026450; Thu, 20 Jun 2019 17:41:16 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHfFnW026448; Thu, 20 Jun 2019 17:41:15 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201741.x5KHfFnW026448@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:41:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504698 - head/sysutils/py-azure-cli-cdn X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-cdn X-SVN-Commit-Revision: 504698 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9F8E78E106 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:41:17 -0000 Author: dbaio Date: Thu Jun 20 17:41:15 2019 New Revision: 504698 URL: https://svnweb.freebsd.org/changeset/ports/504698 Log: sysutils/py-azure-cli-cdn: Update to 0.2.4 Reported by: portscout Modified: head/sysutils/py-azure-cli-cdn/Makefile head/sysutils/py-azure-cli-cdn/distinfo Modified: head/sysutils/py-azure-cli-cdn/Makefile ============================================================================== --- head/sysutils/py-azure-cli-cdn/Makefile Thu Jun 20 17:41:03 2019 (r504697) +++ head/sysutils/py-azure-cli-cdn/Makefile Thu Jun 20 17:41:15 2019 (r504698) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-cdn -PORTVERSION= 0.2.3 +PORTVERSION= 0.2.4 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-cdn/distinfo ============================================================================== --- head/sysutils/py-azure-cli-cdn/distinfo Thu Jun 20 17:41:03 2019 (r504697) +++ head/sysutils/py-azure-cli-cdn/distinfo Thu Jun 20 17:41:15 2019 (r504698) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556400830 -SHA256 (azure-cli-cdn-0.2.3.tar.gz) = ded048d282ff7be60b774391ba6b2fe0b182b0644fec3d454047352778966895 -SIZE (azure-cli-cdn-0.2.3.tar.gz) = 8590 +TIMESTAMP = 1561042332 +SHA256 (azure-cli-cdn-0.2.4.tar.gz) = 88a16b2f248eee98cc40181b2f98764f231d30cc35061f4925d34c108a36eeab +SIZE (azure-cli-cdn-0.2.4.tar.gz) = 8608 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:41:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D29215C30A9; Thu, 20 Jun 2019 17:41:31 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 346C68E20E; Thu, 20 Jun 2019 17:41:31 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 110C9F620; Thu, 20 Jun 2019 17:41:31 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHfUal026582; Thu, 20 Jun 2019 17:41:30 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHfUNM026581; Thu, 20 Jun 2019 17:41:30 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201741.x5KHfUNM026581@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:41:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504699 - head/sysutils/py-azure-cli-botservice X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-botservice X-SVN-Commit-Revision: 504699 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 346C68E20E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:41:31 -0000 Author: dbaio Date: Thu Jun 20 17:41:30 2019 New Revision: 504699 URL: https://svnweb.freebsd.org/changeset/ports/504699 Log: sysutils/py-azure-cli-botservice: Update to 0.2.2 Changelog: https://pypi.org/project/azure-cli-botservice/0.2.2/ Reported by: portscout Modified: head/sysutils/py-azure-cli-botservice/Makefile head/sysutils/py-azure-cli-botservice/distinfo Modified: head/sysutils/py-azure-cli-botservice/Makefile ============================================================================== --- head/sysutils/py-azure-cli-botservice/Makefile Thu Jun 20 17:41:15 2019 (r504698) +++ head/sysutils/py-azure-cli-botservice/Makefile Thu Jun 20 17:41:30 2019 (r504699) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-botservice -PORTVERSION= 0.2.1 +PORTVERSION= 0.2.2 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,7 +12,7 @@ COMMENT= Microsoft Azure Command-Line Tools Bot Servic LICENSE= MIT RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}azure-mgmt-botservice>=0:devel/py-azure-mgmt-botservice@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-mgmt-web>=0.41.0:devel/py-azure-mgmt-web@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-mgmt-web>=0.42.0:devel/py-azure-mgmt-web@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-core>=0:sysutils/py-azure-cli-core@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}cryptography>=0:security/py-cryptography@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} Modified: head/sysutils/py-azure-cli-botservice/distinfo ============================================================================== --- head/sysutils/py-azure-cli-botservice/distinfo Thu Jun 20 17:41:15 2019 (r504698) +++ head/sysutils/py-azure-cli-botservice/distinfo Thu Jun 20 17:41:30 2019 (r504699) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558572837 -SHA256 (azure-cli-botservice-0.2.1.tar.gz) = 0df372657a02b10ad9f2dc17fbdc1fe05eda6daee965cac43682fab354465dc2 -SIZE (azure-cli-botservice-0.2.1.tar.gz) = 39283 +TIMESTAMP = 1561042362 +SHA256 (azure-cli-botservice-0.2.2.tar.gz) = 4d9e290a9a83a2265b7a3a24d25cc2b5752a374711987260cee4acc464d4a28f +SIZE (azure-cli-botservice-0.2.2.tar.gz) = 39786 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:41:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4ABA115C30F4; Thu, 20 Jun 2019 17:41:49 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E56BE8E31B; Thu, 20 Jun 2019 17:41:48 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C3ACEF638; Thu, 20 Jun 2019 17:41:48 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHfmI2028969; Thu, 20 Jun 2019 17:41:48 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHfmXj028968; Thu, 20 Jun 2019 17:41:48 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201741.x5KHfmXj028968@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:41:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504700 - head/sysutils/py-azure-cli-billing X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-billing X-SVN-Commit-Revision: 504700 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E56BE8E31B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:41:49 -0000 Author: dbaio Date: Thu Jun 20 17:41:48 2019 New Revision: 504700 URL: https://svnweb.freebsd.org/changeset/ports/504700 Log: sysutils/py-azure-cli-billing: Update to 0.2.2 Reported by: portscout Modified: head/sysutils/py-azure-cli-billing/Makefile head/sysutils/py-azure-cli-billing/distinfo Modified: head/sysutils/py-azure-cli-billing/Makefile ============================================================================== --- head/sysutils/py-azure-cli-billing/Makefile Thu Jun 20 17:41:30 2019 (r504699) +++ head/sysutils/py-azure-cli-billing/Makefile Thu Jun 20 17:41:48 2019 (r504700) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-billing -PORTVERSION= 0.2.1 +PORTVERSION= 0.2.2 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-billing/distinfo ============================================================================== --- head/sysutils/py-azure-cli-billing/distinfo Thu Jun 20 17:41:30 2019 (r504699) +++ head/sysutils/py-azure-cli-billing/distinfo Thu Jun 20 17:41:48 2019 (r504700) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553902835 -SHA256 (azure-cli-billing-0.2.1.tar.gz) = 0a340dd6931710873679e788331aaeb5b066f65859655799e9ca4400b8b76a86 -SIZE (azure-cli-billing-0.2.1.tar.gz) = 3728 +TIMESTAMP = 1561042431 +SHA256 (azure-cli-billing-0.2.2.tar.gz) = 31433a8ab55828683297996fad99ced4f6891431557e9c081cd424b866154197 +SIZE (azure-cli-billing-0.2.2.tar.gz) = 3748 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:42:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 13C5B15C3300; Thu, 20 Jun 2019 17:42:51 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AE1988E491; Thu, 20 Jun 2019 17:42:50 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8B0F7F667; Thu, 20 Jun 2019 17:42:50 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHgom3030056; Thu, 20 Jun 2019 17:42:50 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHgoXb030053; Thu, 20 Jun 2019 17:42:50 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201742.x5KHgoXb030053@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:42:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504701 - head/sysutils/py-azure-cli-batchai X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-batchai X-SVN-Commit-Revision: 504701 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AE1988E491 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:42:51 -0000 Author: dbaio Date: Thu Jun 20 17:42:49 2019 New Revision: 504701 URL: https://svnweb.freebsd.org/changeset/ports/504701 Log: sysutils/py-azure-cli-batchai: Update to 0.4.10 Changelog: https://pypi.org/project/azure-cli-batchai/0.4.10/ Reported by: portscout Modified: head/sysutils/py-azure-cli-batchai/Makefile head/sysutils/py-azure-cli-batchai/distinfo Modified: head/sysutils/py-azure-cli-batchai/Makefile ============================================================================== --- head/sysutils/py-azure-cli-batchai/Makefile Thu Jun 20 17:41:48 2019 (r504700) +++ head/sysutils/py-azure-cli-batchai/Makefile Thu Jun 20 17:42:49 2019 (r504701) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-batchai -PORTVERSION= 0.4.9 +PORTVERSION= 0.4.10 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-batchai/distinfo ============================================================================== --- head/sysutils/py-azure-cli-batchai/distinfo Thu Jun 20 17:41:48 2019 (r504700) +++ head/sysutils/py-azure-cli-batchai/distinfo Thu Jun 20 17:42:49 2019 (r504701) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558572875 -SHA256 (azure-cli-batchai-0.4.9.tar.gz) = e2cca398158c27dfbbd3d1fa4014252b604a1decf76bc16af76a2cb46fd7aa3b -SIZE (azure-cli-batchai-0.4.9.tar.gz) = 26768 +TIMESTAMP = 1561042466 +SHA256 (azure-cli-batchai-0.4.10.tar.gz) = c93123902f5a5da7ac455ae11abb6c008b73eb8b784c7955564202a6b021422c +SIZE (azure-cli-batchai-0.4.10.tar.gz) = 26855 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:43:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9BFBB15C332F; Thu, 20 Jun 2019 17:43:03 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 44FD08E565; Thu, 20 Jun 2019 17:43:03 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 209B5F668; Thu, 20 Jun 2019 17:43:03 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHh3gZ030190; Thu, 20 Jun 2019 17:43:03 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHh2h8030188; Thu, 20 Jun 2019 17:43:02 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201743.x5KHh2h8030188@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:43:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504702 - head/sysutils/py-azure-cli-batch X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-batch X-SVN-Commit-Revision: 504702 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 44FD08E565 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:43:03 -0000 Author: dbaio Date: Thu Jun 20 17:43:02 2019 New Revision: 504702 URL: https://svnweb.freebsd.org/changeset/ports/504702 Log: sysutils/py-azure-cli-batch: Update to 4.0.3 Changelog: https://pypi.org/project/azure-cli-batch/4.0.3/ Reported by: portscout Modified: head/sysutils/py-azure-cli-batch/Makefile head/sysutils/py-azure-cli-batch/distinfo Modified: head/sysutils/py-azure-cli-batch/Makefile ============================================================================== --- head/sysutils/py-azure-cli-batch/Makefile Thu Jun 20 17:42:49 2019 (r504701) +++ head/sysutils/py-azure-cli-batch/Makefile Thu Jun 20 17:43:02 2019 (r504702) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-batch -PORTVERSION= 4.0.2 +PORTVERSION= 4.0.3 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-batch/distinfo ============================================================================== --- head/sysutils/py-azure-cli-batch/distinfo Thu Jun 20 17:42:49 2019 (r504701) +++ head/sysutils/py-azure-cli-batch/distinfo Thu Jun 20 17:43:02 2019 (r504702) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559778290 -SHA256 (azure-cli-batch-4.0.2.tar.gz) = 36b2d48d0a0d6bea71f0f178322fec27046a32e206d6353f0855fe76262ad8bb -SIZE (azure-cli-batch-4.0.2.tar.gz) = 31410 +TIMESTAMP = 1561042507 +SHA256 (azure-cli-batch-4.0.3.tar.gz) = 58eae1d7ccdbd20abe9650e0cac42e596389d7540dc11e9c07e87004d8c96135 +SIZE (azure-cli-batch-4.0.3.tar.gz) = 31560 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:43:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C135915C337A; Thu, 20 Jun 2019 17:43:17 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 694898E63F; Thu, 20 Jun 2019 17:43:17 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 45663F66A; Thu, 20 Jun 2019 17:43:17 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHhHMb030328; Thu, 20 Jun 2019 17:43:17 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHhGhT030327; Thu, 20 Jun 2019 17:43:16 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201743.x5KHhGhT030327@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:43:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504703 - head/sysutils/py-azure-cli-backup X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-backup X-SVN-Commit-Revision: 504703 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 694898E63F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:43:17 -0000 Author: dbaio Date: Thu Jun 20 17:43:16 2019 New Revision: 504703 URL: https://svnweb.freebsd.org/changeset/ports/504703 Log: sysutils/py-azure-cli-backup: Update to 1.2.5 Reported by: portscout Modified: head/sysutils/py-azure-cli-backup/Makefile head/sysutils/py-azure-cli-backup/distinfo Modified: head/sysutils/py-azure-cli-backup/Makefile ============================================================================== --- head/sysutils/py-azure-cli-backup/Makefile Thu Jun 20 17:43:02 2019 (r504702) +++ head/sysutils/py-azure-cli-backup/Makefile Thu Jun 20 17:43:16 2019 (r504703) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-backup -PORTVERSION= 1.2.4 +PORTVERSION= 1.2.5 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-backup/distinfo ============================================================================== --- head/sysutils/py-azure-cli-backup/distinfo Thu Jun 20 17:43:02 2019 (r504702) +++ head/sysutils/py-azure-cli-backup/distinfo Thu Jun 20 17:43:16 2019 (r504703) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556400885 -SHA256 (azure-cli-backup-1.2.4.tar.gz) = e25d3f402763b2bbbc619d0f0d71fa046b662ce9fe0294322cd12ee41faa7d50 -SIZE (azure-cli-backup-1.2.4.tar.gz) = 16735 +TIMESTAMP = 1561042534 +SHA256 (azure-cli-backup-1.2.5.tar.gz) = a16561644880745f349cfbaaeba2fb634586d4277e63dd42f613fa525263c526 +SIZE (azure-cli-backup-1.2.5.tar.gz) = 16761 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:43:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D355615C33B5; Thu, 20 Jun 2019 17:43:29 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7C6D88E720; Thu, 20 Jun 2019 17:43:29 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5521AF66B; Thu, 20 Jun 2019 17:43:29 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHhTBj030456; Thu, 20 Jun 2019 17:43:29 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHhTL3030454; Thu, 20 Jun 2019 17:43:29 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201743.x5KHhTL3030454@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:43:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504704 - head/sysutils/py-azure-cli-ams X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-ams X-SVN-Commit-Revision: 504704 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7C6D88E720 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:43:30 -0000 Author: dbaio Date: Thu Jun 20 17:43:28 2019 New Revision: 504704 URL: https://svnweb.freebsd.org/changeset/ports/504704 Log: sysutils/py-azure-cli-ams: Update to 0.4.7 Changelog: https://pypi.org/project/azure-cli-ams/0.4.7/ Reported by: portscout Modified: head/sysutils/py-azure-cli-ams/Makefile head/sysutils/py-azure-cli-ams/distinfo Modified: head/sysutils/py-azure-cli-ams/Makefile ============================================================================== --- head/sysutils/py-azure-cli-ams/Makefile Thu Jun 20 17:43:16 2019 (r504703) +++ head/sysutils/py-azure-cli-ams/Makefile Thu Jun 20 17:43:28 2019 (r504704) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-ams -PORTVERSION= 0.4.6 +PORTVERSION= 0.4.7 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-ams/distinfo ============================================================================== --- head/sysutils/py-azure-cli-ams/distinfo Thu Jun 20 17:43:16 2019 (r504703) +++ head/sysutils/py-azure-cli-ams/distinfo Thu Jun 20 17:43:28 2019 (r504704) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558572963 -SHA256 (azure-cli-ams-0.4.6.tar.gz) = 64e3dfa6c753acdb8305b3d3fa8ba22b07b240ce21a813caf013e893283d6275 -SIZE (azure-cli-ams-0.4.6.tar.gz) = 37134 +TIMESTAMP = 1561042560 +SHA256 (azure-cli-ams-0.4.7.tar.gz) = eb4f56604abd26c29e30f525ae32f291255f3bd2eb82a4f5dc70f7ff9f833583 +SIZE (azure-cli-ams-0.4.7.tar.gz) = 37220 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:43:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CEAFF15C33F1; Thu, 20 Jun 2019 17:43:42 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7567B8E802; Thu, 20 Jun 2019 17:43:42 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 06A6DF66C; Thu, 20 Jun 2019 17:43:42 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHhf5K030587; Thu, 20 Jun 2019 17:43:41 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHhfLb030585; Thu, 20 Jun 2019 17:43:41 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201743.x5KHhfLb030585@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:43:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504705 - head/sysutils/py-azure-cli-advisor X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-advisor X-SVN-Commit-Revision: 504705 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7567B8E802 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:43:43 -0000 Author: dbaio Date: Thu Jun 20 17:43:41 2019 New Revision: 504705 URL: https://svnweb.freebsd.org/changeset/ports/504705 Log: sysutils/py-azure-cli-advisor: Update to 2.0.1 Reported by: portscout Modified: head/sysutils/py-azure-cli-advisor/Makefile head/sysutils/py-azure-cli-advisor/distinfo Modified: head/sysutils/py-azure-cli-advisor/Makefile ============================================================================== --- head/sysutils/py-azure-cli-advisor/Makefile Thu Jun 20 17:43:28 2019 (r504704) +++ head/sysutils/py-azure-cli-advisor/Makefile Thu Jun 20 17:43:41 2019 (r504705) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-advisor -PORTVERSION= 2.0.0 +PORTVERSION= 2.0.1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-advisor/distinfo ============================================================================== --- head/sysutils/py-azure-cli-advisor/distinfo Thu Jun 20 17:43:28 2019 (r504704) +++ head/sysutils/py-azure-cli-advisor/distinfo Thu Jun 20 17:43:41 2019 (r504705) @@ -1,3 +1,3 @@ -TIMESTAMP = 1546105369 -SHA256 (azure-cli-advisor-2.0.0.tar.gz) = 68d7a86fa4a8c31dd40a9ff777dfb8b6f27e71ea5a54f89edb7a42acb1770381 -SIZE (azure-cli-advisor-2.0.0.tar.gz) = 5624 +TIMESTAMP = 1561042590 +SHA256 (azure-cli-advisor-2.0.1.tar.gz) = 63bdd1d8fa356c6b05f8a8681e48b02f11e667548ffc9d1c7cd16712796ff1bd +SIZE (azure-cli-advisor-2.0.1.tar.gz) = 5649 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:43:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C407415C342F; Thu, 20 Jun 2019 17:43:57 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 68A848E8DE; Thu, 20 Jun 2019 17:43:57 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 152E4F66D; Thu, 20 Jun 2019 17:43:57 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHhu6F030719; Thu, 20 Jun 2019 17:43:56 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHhuGT030717; Thu, 20 Jun 2019 17:43:56 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201743.x5KHhuGT030717@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:43:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504706 - head/sysutils/py-azure-cli-acs X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-acs X-SVN-Commit-Revision: 504706 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 68A848E8DE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:43:57 -0000 Author: dbaio Date: Thu Jun 20 17:43:56 2019 New Revision: 504706 URL: https://svnweb.freebsd.org/changeset/ports/504706 Log: sysutils/py-azure-cli-acs: Update to 2.4.4 Changelog: https://pypi.org/project/azure-cli-acs/2.4.4/ Reported by: portscout Modified: head/sysutils/py-azure-cli-acs/Makefile head/sysutils/py-azure-cli-acs/distinfo Modified: head/sysutils/py-azure-cli-acs/Makefile ============================================================================== --- head/sysutils/py-azure-cli-acs/Makefile Thu Jun 20 17:43:41 2019 (r504705) +++ head/sysutils/py-azure-cli-acs/Makefile Thu Jun 20 17:43:56 2019 (r504706) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-acs -PORTVERSION= 2.4.3 +PORTVERSION= 2.4.4 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-acs/distinfo ============================================================================== --- head/sysutils/py-azure-cli-acs/distinfo Thu Jun 20 17:43:41 2019 (r504705) +++ head/sysutils/py-azure-cli-acs/distinfo Thu Jun 20 17:43:56 2019 (r504706) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559778315 -SHA256 (azure-cli-acs-2.4.3.tar.gz) = b0abcc64be55399190e9600257023e2a7b3e7436e6658474bee306d17beb034d -SIZE (azure-cli-acs-2.4.3.tar.gz) = 53845 +TIMESTAMP = 1561042639 +SHA256 (azure-cli-acs-2.4.4.tar.gz) = f89fbca9ae4d070be8924eac6ed7bdf44a64a4850d825330bc6f0daecf946e86 +SIZE (azure-cli-acs-2.4.4.tar.gz) = 54037 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:44:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 503C215C346F; Thu, 20 Jun 2019 17:44:10 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ED0C28E9BB; Thu, 20 Jun 2019 17:44:09 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C5D96F66E; Thu, 20 Jun 2019 17:44:09 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHi9An030872; Thu, 20 Jun 2019 17:44:09 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHi9J4030871; Thu, 20 Jun 2019 17:44:09 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201744.x5KHi9J4030871@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:44:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504707 - head/sysutils/py-azure-cli-acr X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli-acr X-SVN-Commit-Revision: 504707 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: ED0C28E9BB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:44:10 -0000 Author: dbaio Date: Thu Jun 20 17:44:09 2019 New Revision: 504707 URL: https://svnweb.freebsd.org/changeset/ports/504707 Log: sysutils/py-azure-cli-acr: Update to 2.2.9 Changelog: https://pypi.org/project/azure-cli-acr/2.2.9/ Reported by: portscout Modified: head/sysutils/py-azure-cli-acr/Makefile head/sysutils/py-azure-cli-acr/distinfo Modified: head/sysutils/py-azure-cli-acr/Makefile ============================================================================== --- head/sysutils/py-azure-cli-acr/Makefile Thu Jun 20 17:43:56 2019 (r504706) +++ head/sysutils/py-azure-cli-acr/Makefile Thu Jun 20 17:44:09 2019 (r504707) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli-acr -PORTVERSION= 2.2.8 +PORTVERSION= 2.2.9 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/sysutils/py-azure-cli-acr/distinfo ============================================================================== --- head/sysutils/py-azure-cli-acr/distinfo Thu Jun 20 17:43:56 2019 (r504706) +++ head/sysutils/py-azure-cli-acr/distinfo Thu Jun 20 17:44:09 2019 (r504707) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559778349 -SHA256 (azure-cli-acr-2.2.8.tar.gz) = 8d9a45e9eba0f4568a1037907f8e7b77f3b568b2584ca9a0b383a9485ef9cfa5 -SIZE (azure-cli-acr-2.2.8.tar.gz) = 52057 +TIMESTAMP = 1561042691 +SHA256 (azure-cli-acr-2.2.9.tar.gz) = 577d35fc11dad396bfb4983e9cd210b9da73623c7e51490f8274fa938646910e +SIZE (azure-cli-acr-2.2.9.tar.gz) = 55624 From owner-svn-ports-all@freebsd.org Thu Jun 20 17:45:50 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1DA7115C34D5; Thu, 20 Jun 2019 17:45:50 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B838E8EAAD; Thu, 20 Jun 2019 17:45:49 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8E24CF66F; Thu, 20 Jun 2019 17:45:49 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KHjn42031077; Thu, 20 Jun 2019 17:45:49 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KHjm41031074; Thu, 20 Jun 2019 17:45:48 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906201745.x5KHjm41031074@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Thu, 20 Jun 2019 17:45:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504708 - head/sysutils/py-azure-cli X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/py-azure-cli X-SVN-Commit-Revision: 504708 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B838E8EAAD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 17:45:50 -0000 Author: dbaio Date: Thu Jun 20 17:45:48 2019 New Revision: 504708 URL: https://svnweb.freebsd.org/changeset/ports/504708 Log: sysutils/py-azure-cli: Update to 2.0.67 - Convert pkg-message to UCL format - Remove module appservice: This is provisional, because appservice needs fabric2, and there is already a review(D20683) to update it. Changelog: https://pypi.org/project/azure-cli/2.0.67/ Reported by: portscout Modified: head/sysutils/py-azure-cli/Makefile head/sysutils/py-azure-cli/distinfo head/sysutils/py-azure-cli/pkg-message Modified: head/sysutils/py-azure-cli/Makefile ============================================================================== --- head/sysutils/py-azure-cli/Makefile Thu Jun 20 17:44:09 2019 (r504707) +++ head/sysutils/py-azure-cli/Makefile Thu Jun 20 17:45:48 2019 (r504708) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= azure-cli -PORTVERSION= 2.0.66 +PORTVERSION= 2.0.67 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -13,60 +13,59 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= bash:shells/bash \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-core>=2.0.64:sysutils/py-azure-cli-core@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-core>=2.0.67:sysutils/py-azure-cli-core@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-profile>=2.1.5:sysutils/py-azure-cli-profile@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-resource>=2.1.14:sysutils/py-azure-cli-resource@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-monitor>=0.2.13:sysutils/py-azure-cli-monitor@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-vm>=2.2.20:sysutils/py-azure-cli-vm@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-resource>=2.1.16:sysutils/py-azure-cli-resource@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-monitor>=0.2.15:sysutils/py-azure-cli-monitor@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-vm>=2.2.23:sysutils/py-azure-cli-vm@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-telemetry>=1.0.2:sysutils/py-azure-cli-telemetry@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-storage>=2.4.2:sysutils/py-azure-cli-storage@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-sql>=2.2.4:sysutils/py-azure-cli-sql@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-sqlvm>=0.1.1:sysutils/py-azure-cli-sqlvm@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-signalr>=1.0.0:sysutils/py-azure-cli-signalr@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-servicefabric>=0.1.19:sysutils/py-azure-cli-servicefabric@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-servicebus>=0.3.5:sysutils/py-azure-cli-servicebus@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-security>=0.1.1:sysutils/py-azure-cli-security@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-search>=0.1.1:sysutils/py-azure-cli-search@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-role>=2.6.3:sysutils/py-azure-cli-role@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-reservations>=0.4.2:sysutils/py-azure-cli-reservations@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-relay>=0.1.4:sysutils/py-azure-cli-relay@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-redis>=0.4.3:sysutils/py-azure-cli-redis@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-rdbms>=0.3.11:sysutils/py-azure-cli-rdbms@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-policyinsights>=0.1.3:sysutils/py-azure-cli-policyinsights@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-network>=2.5.1:sysutils/py-azure-cli-network@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-maps>=0.3.4:sysutils/py-azure-cli-maps@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-lab>=0.1.7:sysutils/py-azure-cli-lab@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-kusto>=0.2.2:sysutils/py-azure-cli-kusto@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-keyvault>=2.2.15:sysutils/py-azure-cli-keyvault@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-iotcentral>=0.1.6:sysutils/py-azure-cli-iotcentral@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-iot>=0.3.10:sysutils/py-azure-cli-iot@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-interactive>=0.4.4:sysutils/py-azure-cli-interactive@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-hdinsight>=0.3.4:sysutils/py-azure-cli-hdinsight@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-find>=0.3.3:sysutils/py-azure-cli-find@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-storage>=2.4.3:sysutils/py-azure-cli-storage@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-sql>=2.2.5:sysutils/py-azure-cli-sql@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-sqlvm>=0.2.0:sysutils/py-azure-cli-sqlvm@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-signalr>=1.0.1:sysutils/py-azure-cli-signalr@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-servicefabric>=0.1.20:sysutils/py-azure-cli-servicefabric@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-servicebus>=0.3.6:sysutils/py-azure-cli-servicebus@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-security>=0.1.2:sysutils/py-azure-cli-security@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-search>=0.1.2:sysutils/py-azure-cli-search@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-role>=2.6.4:sysutils/py-azure-cli-role@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-reservations>=0.4.3:sysutils/py-azure-cli-reservations@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-relay>=0.1.5:sysutils/py-azure-cli-relay@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-redis>=0.4.4:sysutils/py-azure-cli-redis@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-rdbms>=0.3.12:sysutils/py-azure-cli-rdbms@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-policyinsights>=0.1.4:sysutils/py-azure-cli-policyinsights@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-network>=2.5.2:sysutils/py-azure-cli-network@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-maps>=0.3.5:sysutils/py-azure-cli-maps@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-lab>=0.1.8:sysutils/py-azure-cli-lab@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-kusto>=0.2.3:sysutils/py-azure-cli-kusto@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-keyvault>=2.2.16:sysutils/py-azure-cli-keyvault@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-iotcentral>=0.1.7:sysutils/py-azure-cli-iotcentral@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-iot>=0.3.11:sysutils/py-azure-cli-iot@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-interactive>=0.4.5:sysutils/py-azure-cli-interactive@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-hdinsight>=0.3.5:sysutils/py-azure-cli-hdinsight@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-find>=0.3.4:sysutils/py-azure-cli-find@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-feedback>=2.2.1:sysutils/py-azure-cli-feedback@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-extension>=0.2.5:sysutils/py-azure-cli-extension@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-eventhubs>=0.3.6:sysutils/py-azure-cli-eventhubs@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-eventgrid>=0.2.3:sysutils/py-azure-cli-eventgrid@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-dms>=0.1.3:sysutils/py-azure-cli-dms@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-dls>=0.1.9:sysutils/py-azure-cli-dls@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-dla>=0.2.5:sysutils/py-azure-cli-dla@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-cosmosdb>=0.2.10:sysutils/py-azure-cli-cosmosdb@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-container>=0.3.17:sysutils/py-azure-cli-container@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-consumption>=0.4.3:sysutils/py-azure-cli-consumption@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-configure>=2.0.23:sysutils/py-azure-cli-configure@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-cognitiveservices>=0.2.5:sysutils/py-azure-cli-cognitiveservices@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-eventhubs>=0.3.7:sysutils/py-azure-cli-eventhubs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-eventgrid>=0.2.4:sysutils/py-azure-cli-eventgrid@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-dms>=0.1.4:sysutils/py-azure-cli-dms@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-dls>=0.1.10:sysutils/py-azure-cli-dls@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-dla>=0.2.6:sysutils/py-azure-cli-dla@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-cosmosdb>=0.2.11:sysutils/py-azure-cli-cosmosdb@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-container>=0.3.18:sysutils/py-azure-cli-container@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-consumption>=0.4.4:sysutils/py-azure-cli-consumption@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-configure>=2.0.24:sysutils/py-azure-cli-configure@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-cognitiveservices>=0.2.6:sysutils/py-azure-cli-cognitiveservices@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}azure-cli-cloud>=2.1.1:sysutils/py-azure-cli-cloud@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-cdn>=0.2.3:sysutils/py-azure-cli-cdn@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-botservice>=0.2.1:sysutils/py-azure-cli-botservice@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-billing>=0.2.1:sysutils/py-azure-cli-billing@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-batchai>=0.4.9:sysutils/py-azure-cli-batchai@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-batch>=4.0.2:sysutils/py-azure-cli-batch@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-backup>=1.2.4:sysutils/py-azure-cli-backup@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-appservice>=0.2.14:sysutils/py-azure-cli-appservice@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-ams>=0.4.6:sysutils/py-azure-cli-ams@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-advisor>=2.0.0:sysutils/py-azure-cli-advisor@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-acs>=2.4.3:sysutils/py-azure-cli-acs@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}azure-cli-acr>=2.2.8:sysutils/py-azure-cli-acr@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}azure-cli-cdn>=0.2.4:sysutils/py-azure-cli-cdn@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-botservice>=0.2.2:sysutils/py-azure-cli-botservice@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-billing>=0.2.2:sysutils/py-azure-cli-billing@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-batchai>=0.4.10:sysutils/py-azure-cli-batchai@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-batch>=4.0.3:sysutils/py-azure-cli-batch@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-backup>=1.2.5:sysutils/py-azure-cli-backup@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-ams>=0.4.7:sysutils/py-azure-cli-ams@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-advisor>=2.0.1:sysutils/py-azure-cli-advisor@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-acs>=2.4.4:sysutils/py-azure-cli-acs@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}azure-cli-acr>=2.2.9:sysutils/py-azure-cli-acr@${PY_FLAVOR} USES= azurepy python USE_PYTHON= autoplist concurrent distutils Modified: head/sysutils/py-azure-cli/distinfo ============================================================================== --- head/sysutils/py-azure-cli/distinfo Thu Jun 20 17:44:09 2019 (r504707) +++ head/sysutils/py-azure-cli/distinfo Thu Jun 20 17:45:48 2019 (r504708) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559778375 -SHA256 (azure-cli-2.0.66.tar.gz) = ad5bc7460377c76a5485e2065fd7bec8ff2542700322ee874bd3e9d7af4bf970 -SIZE (azure-cli-2.0.66.tar.gz) = 8082 +TIMESTAMP = 1561042718 +SHA256 (azure-cli-2.0.67.tar.gz) = 4c7e87f8bb6f6143f5a2c2bc9c2e7e7d56f6836dbb658cca00452cfd09194ec5 +SIZE (azure-cli-2.0.67.tar.gz) = 8603 Modified: head/sysutils/py-azure-cli/pkg-message ============================================================================== --- head/sysutils/py-azure-cli/pkg-message Thu Jun 20 17:44:09 2019 (r504707) +++ head/sysutils/py-azure-cli/pkg-message Thu Jun 20 17:45:48 2019 (r504708) @@ -1,3 +1,6 @@ +[ +{ + message: < Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F2F3E15C4AA2; Thu, 20 Jun 2019 18:53:15 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6EC77916E3; Thu, 20 Jun 2019 18:53:15 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 489F11829F; Thu, 20 Jun 2019 18:53:15 +0000 (UTC) (envelope-from antoine@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KIrF8q067525; Thu, 20 Jun 2019 18:53:15 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KIrFam067524; Thu, 20 Jun 2019 18:53:15 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201906201853.x5KIrFam067524@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Thu, 20 Jun 2019 18:53:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504709 - head/audio/rhythmbox X-SVN-Group: ports-head X-SVN-Commit-Author: antoine X-SVN-Commit-Paths: head/audio/rhythmbox X-SVN-Commit-Revision: 504709 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6EC77916E3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 18:53:16 -0000 Author: antoine Date: Thu Jun 20 18:53:14 2019 New Revision: 504709 URL: https://svnweb.freebsd.org/changeset/ports/504709 Log: Depend on legacy libtdb Reported by: pkg-fallout Modified: head/audio/rhythmbox/Makefile Modified: head/audio/rhythmbox/Makefile ============================================================================== --- head/audio/rhythmbox/Makefile Thu Jun 20 17:45:48 2019 (r504708) +++ head/audio/rhythmbox/Makefile Thu Jun 20 18:53:14 2019 (r504709) @@ -3,7 +3,7 @@ PORTNAME= rhythmbox PORTVERSION= 3.4.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 @@ -17,7 +17,9 @@ LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:multimedia/v4l_compat \ valac:lang/vala \ gtkdoc-check:textproc/gtk-doc \ - itstool:textproc/itstool + itstool:textproc/itstool \ + tdb1>0:databases/tdb1 +RUN_DEPENDS= tdb1>0:databases/tdb1 LIB_DEPENDS= libmusicbrainz5.so:audio/libmusicbrainz5 \ libtotem-plparser.so:multimedia/totem-pl-parser \ libdbus-1.so:devel/dbus \ @@ -28,8 +30,7 @@ LIB_DEPENDS= libmusicbrainz5.so:audio/libmusicbrainz5 libpeas-1.0.so:devel/libpeas \ libjson-glib-1.0.so:devel/json-glib \ libsoup-gnome-2.4.so:devel/libsoup-gnome \ - libsecret-1.so:security/libsecret \ - libtdb.so:databases/tdb + libsecret-1.so:security/libsecret USES= desktop-file-utils gmake gnome libtool localbase \ pathfix pkgconfig tar:xz From owner-svn-ports-all@freebsd.org Thu Jun 20 19:08:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EEF6F15C4F20; Thu, 20 Jun 2019 19:08:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 95B8B91D70; Thu, 20 Jun 2019 19:08:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 792C218453; Thu, 20 Jun 2019 19:08:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ8arM073127; Thu, 20 Jun 2019 19:08:36 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ8Z9I073124; Thu, 20 Jun 2019 19:08:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201908.x5KJ8Z9I073124@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:08:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504710 - in head/net: . rubygem-fog-cloudstack X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/net: . rubygem-fog-cloudstack X-SVN-Commit-Revision: 504710 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 95B8B91D70 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.983,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:08:37 -0000 Author: sunpoet Date: Thu Jun 20 19:08:35 2019 New Revision: 504710 URL: https://svnweb.freebsd.org/changeset/ports/504710 Log: Add rubygem-fog-cloudstack 0.1.0 Fog::Cloudstack is a module for the fog gem to support CloudStack. WWW: https://github.com/fog/fog-cloudstack Added: head/net/rubygem-fog-cloudstack/ head/net/rubygem-fog-cloudstack/Makefile (contents, props changed) head/net/rubygem-fog-cloudstack/distinfo (contents, props changed) head/net/rubygem-fog-cloudstack/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Thu Jun 20 18:53:14 2019 (r504709) +++ head/net/Makefile Thu Jun 20 19:08:35 2019 (r504710) @@ -1218,6 +1218,7 @@ SUBDIR += rubygem-fog-brightbox SUBDIR += rubygem-fog-brightbox0 SUBDIR += rubygem-fog-cloudatcost + SUBDIR += rubygem-fog-cloudstack SUBDIR += rubygem-fog-digitalocean SUBDIR += rubygem-fog-dnsimple SUBDIR += rubygem-fog-dynect Added: head/net/rubygem-fog-cloudstack/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-fog-cloudstack/Makefile Thu Jun 20 19:08:35 2019 (r504710) @@ -0,0 +1,24 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= fog-cloudstack +PORTVERSION= 0.1.0 +CATEGORIES= net rubygems +MASTER_SITES= RG + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Module for the 'fog' gem to support CloudStack + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE.md + +RUN_DEPENDS= rubygem-fog-core>=2.1:devel/rubygem-fog-core \ + rubygem-fog-json>=1.1:devel/rubygem-fog-json \ + rubygem-fog-xml>=0.1:textproc/rubygem-fog-xml + +USES= gem +USE_RUBY= yes + +NO_ARCH= yes + +.include Added: head/net/rubygem-fog-cloudstack/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-fog-cloudstack/distinfo Thu Jun 20 19:08:35 2019 (r504710) @@ -0,0 +1,3 @@ +TIMESTAMP = 1561049476 +SHA256 (rubygem/fog-cloudstack-0.1.0.gem) = 13efccf314d0cbb851344b7cc719c6eb117915a6afbc2eb86579e584b68edcd0 +SIZE (rubygem/fog-cloudstack-0.1.0.gem) = 76288 Added: head/net/rubygem-fog-cloudstack/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-fog-cloudstack/pkg-descr Thu Jun 20 19:08:35 2019 (r504710) @@ -0,0 +1,3 @@ +Fog::Cloudstack is a module for the fog gem to support CloudStack. + +WWW: https://github.com/fog/fog-cloudstack From owner-svn-ports-all@freebsd.org Thu Jun 20 19:08:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 67B2115C4F45; Thu, 20 Jun 2019 19:08:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C945991E3A; Thu, 20 Jun 2019 19:08:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 25ABE18454; Thu, 20 Jun 2019 19:08:44 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ8i0U073252; Thu, 20 Jun 2019 19:08:44 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ8hKb073251; Thu, 20 Jun 2019 19:08:43 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201908.x5KJ8hKb073251@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:08:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504711 - head/converters/p5-JSON-PP X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/converters/p5-JSON-PP X-SVN-Commit-Revision: 504711 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C945991E3A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:08:46 -0000 Author: sunpoet Date: Thu Jun 20 19:08:43 2019 New Revision: 504711 URL: https://svnweb.freebsd.org/changeset/ports/504711 Log: Update to 4.03 Changes: https://metacpan.org/changes/distribution/JSON-PP Modified: head/converters/p5-JSON-PP/Makefile head/converters/p5-JSON-PP/distinfo Modified: head/converters/p5-JSON-PP/Makefile ============================================================================== --- head/converters/p5-JSON-PP/Makefile Thu Jun 20 19:08:35 2019 (r504710) +++ head/converters/p5-JSON-PP/Makefile Thu Jun 20 19:08:43 2019 (r504711) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= JSON-PP -PORTVERSION= 4.02 +PORTVERSION= 4.03 CATEGORIES= converters perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:ISHIGAKI Modified: head/converters/p5-JSON-PP/distinfo ============================================================================== --- head/converters/p5-JSON-PP/distinfo Thu Jun 20 19:08:35 2019 (r504710) +++ head/converters/p5-JSON-PP/distinfo Thu Jun 20 19:08:43 2019 (r504711) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551135599 -SHA256 (JSON-PP-4.02.tar.gz) = acc67bf812211d6e8943b0b14b64009e26e886be370658556c8d014c19819487 -SIZE (JSON-PP-4.02.tar.gz) = 52007 +TIMESTAMP = 1561049478 +SHA256 (JSON-PP-4.03.tar.gz) = b578cfe488a3a43e107366f6726bc4cd369a6f08ea7cd2c5d39e6994386a772f +SIZE (JSON-PP-4.03.tar.gz) = 52146 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:08:50 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54BD415C4F86; Thu, 20 Jun 2019 19:08:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E5F1491E4B; Thu, 20 Jun 2019 19:08:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BE63618455; Thu, 20 Jun 2019 19:08:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ8nP4073395; Thu, 20 Jun 2019 19:08:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ8nJr073393; Thu, 20 Jun 2019 19:08:49 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201908.x5KJ8nJr073393@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:08:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504712 - head/devel/p5-DefHash X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-DefHash X-SVN-Commit-Revision: 504712 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E5F1491E4B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:08:50 -0000 Author: sunpoet Date: Thu Jun 20 19:08:48 2019 New Revision: 504712 URL: https://svnweb.freebsd.org/changeset/ports/504712 Log: Update to 1.0.12 - Add LICENSE_FILE Changes: https://metacpan.org/changes/distribution/DefHash Modified: head/devel/p5-DefHash/Makefile head/devel/p5-DefHash/distinfo head/devel/p5-DefHash/pkg-plist Modified: head/devel/p5-DefHash/Makefile ============================================================================== --- head/devel/p5-DefHash/Makefile Thu Jun 20 19:08:43 2019 (r504711) +++ head/devel/p5-DefHash/Makefile Thu Jun 20 19:08:48 2019 (r504712) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= DefHash -PORTVERSION= 1.0.11 +PORTVERSION= 1.0.12 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:PERLANCAR @@ -13,9 +13,11 @@ COMMENT= Define things according to a specification, u LICENSE= ART10 GPLv1+ LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE -NO_ARCH= yes -USE_PERL5= configure USES= perl5 +USE_PERL5= configure + +NO_ARCH= yes .include Modified: head/devel/p5-DefHash/distinfo ============================================================================== --- head/devel/p5-DefHash/distinfo Thu Jun 20 19:08:43 2019 (r504711) +++ head/devel/p5-DefHash/distinfo Thu Jun 20 19:08:48 2019 (r504712) @@ -1,2 +1,3 @@ -SHA256 (DefHash-1.0.11.tar.gz) = 3e9e30f637c89eb3eec71587da7570cef83f451e52834e0e3f4665895c783d6f -SIZE (DefHash-1.0.11.tar.gz) = 17105 +TIMESTAMP = 1561049480 +SHA256 (DefHash-1.0.12.tar.gz) = 283f50050cd22169242a18b4b97e9f9285d13e6c327a135401c02d70f797d40b +SIZE (DefHash-1.0.12.tar.gz) = 17839 Modified: head/devel/p5-DefHash/pkg-plist ============================================================================== --- head/devel/p5-DefHash/pkg-plist Thu Jun 20 19:08:43 2019 (r504711) +++ head/devel/p5-DefHash/pkg-plist Thu Jun 20 19:08:48 2019 (r504712) @@ -1,5 +1,3 @@ %%SITE_PERL%%/DefHash.pm %%SITE_PERL%%/DefHash.pod -%%SITE_PERL%%/Sah/Schema/DefHash.pm %%PERL5_MAN3%%/DefHash.3.gz -%%PERL5_MAN3%%/Sah::Schema::DefHash.3.gz From owner-svn-ports-all@freebsd.org Thu Jun 20 19:08:56 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BFF9515C4FB7; Thu, 20 Jun 2019 19:08:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C14891F0B; Thu, 20 Jun 2019 19:08:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5A82318456; Thu, 20 Jun 2019 19:08:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ8tIn073520; Thu, 20 Jun 2019 19:08:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ8tZS073518; Thu, 20 Jun 2019 19:08:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201908.x5KJ8tZS073518@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:08:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504713 - head/devel/p5-FFI-Platypus X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-FFI-Platypus X-SVN-Commit-Revision: 504713 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4C14891F0B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:08:56 -0000 Author: sunpoet Date: Thu Jun 20 19:08:54 2019 New Revision: 504713 URL: https://svnweb.freebsd.org/changeset/ports/504713 Log: Update to 0.88 Changes: https://metacpan.org/changes/distribution/FFI-Platypus Modified: head/devel/p5-FFI-Platypus/Makefile head/devel/p5-FFI-Platypus/distinfo Modified: head/devel/p5-FFI-Platypus/Makefile ============================================================================== --- head/devel/p5-FFI-Platypus/Makefile Thu Jun 20 19:08:48 2019 (r504712) +++ head/devel/p5-FFI-Platypus/Makefile Thu Jun 20 19:08:54 2019 (r504713) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= FFI-Platypus -PORTVERSION= 0.87 +PORTVERSION= 0.88 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-FFI-Platypus/distinfo ============================================================================== --- head/devel/p5-FFI-Platypus/distinfo Thu Jun 20 19:08:48 2019 (r504712) +++ head/devel/p5-FFI-Platypus/distinfo Thu Jun 20 19:08:54 2019 (r504713) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556118470 -SHA256 (FFI-Platypus-0.87.tar.gz) = 2ee823d9e2fcb9b30cbb1716c19b15bf9e1e8618d65ebb2b2747cc973b0128b9 -SIZE (FFI-Platypus-0.87.tar.gz) = 251625 +TIMESTAMP = 1561049481 +SHA256 (FFI-Platypus-0.88.tar.gz) = 4dc91a28f1642c7bc5f7eac52483b539d4cb3281786f96221ab26286fb6b79f1 +SIZE (FFI-Platypus-0.88.tar.gz) = 258083 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:02 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 999ED15C4FEB; Thu, 20 Jun 2019 19:09:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3906E91FC1; Thu, 20 Jun 2019 19:09:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8876C18457; Thu, 20 Jun 2019 19:09:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ90m6073649; Thu, 20 Jun 2019 19:09:00 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ90r4073644; Thu, 20 Jun 2019 19:09:00 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ90r4073644@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504714 - head/net/p5-GeoIP2 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/net/p5-GeoIP2 X-SVN-Commit-Revision: 504714 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3906E91FC1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:02 -0000 Author: sunpoet Date: Thu Jun 20 19:08:59 2019 New Revision: 504714 URL: https://svnweb.freebsd.org/changeset/ports/504714 Log: Update to 2.006002 Changes: https://metacpan.org/changes/distribution/GeoIP2 Modified: head/net/p5-GeoIP2/Makefile head/net/p5-GeoIP2/distinfo Modified: head/net/p5-GeoIP2/Makefile ============================================================================== --- head/net/p5-GeoIP2/Makefile Thu Jun 20 19:08:54 2019 (r504713) +++ head/net/p5-GeoIP2/Makefile Thu Jun 20 19:08:59 2019 (r504714) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= GeoIP2 -PORTVERSION= 2.006001 +PORTVERSION= 2.006002 CATEGORIES= net perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MAXMIND Modified: head/net/p5-GeoIP2/distinfo ============================================================================== --- head/net/p5-GeoIP2/distinfo Thu Jun 20 19:08:54 2019 (r504713) +++ head/net/p5-GeoIP2/distinfo Thu Jun 20 19:08:59 2019 (r504714) @@ -1,3 +1,3 @@ -TIMESTAMP = 1536417979 -SHA256 (GeoIP2-2.006001.tar.gz) = c2d43a1f4e03baeae23e957b578065bd986e8e660d39533eb2cccd26e442eb16 -SIZE (GeoIP2-2.006001.tar.gz) = 257403 +TIMESTAMP = 1561049483 +SHA256 (GeoIP2-2.006002.tar.gz) = 090542a8eee9bd3c12e59c4b65624c89d01ffd94204f1f076a1db40b26c09834 +SIZE (GeoIP2-2.006002.tar.gz) = 249915 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:09 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 476CC15C5018; Thu, 20 Jun 2019 19:09:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D5AAF9209A; Thu, 20 Jun 2019 19:09:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 91E1018458; Thu, 20 Jun 2019 19:09:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ95xI073773; Thu, 20 Jun 2019 19:09:05 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ95Vm073770; Thu, 20 Jun 2019 19:09:05 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ95Vm073770@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504715 - head/net/p5-MaxMind-DB-Reader X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/net/p5-MaxMind-DB-Reader X-SVN-Commit-Revision: 504715 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D5AAF9209A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:09 -0000 Author: sunpoet Date: Thu Jun 20 19:09:04 2019 New Revision: 504715 URL: https://svnweb.freebsd.org/changeset/ports/504715 Log: Update to 1.000014 Changes: https://metacpan.org/changes/distribution/MaxMind-DB-Reader Modified: head/net/p5-MaxMind-DB-Reader/Makefile head/net/p5-MaxMind-DB-Reader/distinfo Modified: head/net/p5-MaxMind-DB-Reader/Makefile ============================================================================== --- head/net/p5-MaxMind-DB-Reader/Makefile Thu Jun 20 19:08:59 2019 (r504714) +++ head/net/p5-MaxMind-DB-Reader/Makefile Thu Jun 20 19:09:04 2019 (r504715) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= MaxMind-DB-Reader -PORTVERSION= 1.000013 +PORTVERSION= 1.000014 CATEGORIES= net perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MAXMIND Modified: head/net/p5-MaxMind-DB-Reader/distinfo ============================================================================== --- head/net/p5-MaxMind-DB-Reader/distinfo Thu Jun 20 19:08:59 2019 (r504714) +++ head/net/p5-MaxMind-DB-Reader/distinfo Thu Jun 20 19:09:04 2019 (r504715) @@ -1,3 +1,3 @@ -TIMESTAMP = 1486078793 -SHA256 (MaxMind-DB-Reader-1.000013.tar.gz) = b8ce321cc94d71361edcf203af1bfd6ea0286fdd27b7550ecc5fad78a1abed70 -SIZE (MaxMind-DB-Reader-1.000013.tar.gz) = 276879 +TIMESTAMP = 1561049485 +SHA256 (MaxMind-DB-Reader-1.000014.tar.gz) = 3820078f9c967f9a88721ea40ca05e4999c1c5301bebc1d119060f9ed5ce39a9 +SIZE (MaxMind-DB-Reader-1.000014.tar.gz) = 230327 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:14 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F8F115C504A; Thu, 20 Jun 2019 19:09:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DB4D892136; Thu, 20 Jun 2019 19:09:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B019318459; Thu, 20 Jun 2019 19:09:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ9AaD073896; Thu, 20 Jun 2019 19:09:10 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ9ARx073894; Thu, 20 Jun 2019 19:09:10 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ9ARx073894@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504716 - head/net/p5-MaxMind-DB-Reader-XS X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/net/p5-MaxMind-DB-Reader-XS X-SVN-Commit-Revision: 504716 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DB4D892136 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:14 -0000 Author: sunpoet Date: Thu Jun 20 19:09:10 2019 New Revision: 504716 URL: https://svnweb.freebsd.org/changeset/ports/504716 Log: Update to 1.000008 Changes: https://metacpan.org/changes/distribution/MaxMind-DB-Reader-XS Modified: head/net/p5-MaxMind-DB-Reader-XS/Makefile head/net/p5-MaxMind-DB-Reader-XS/distinfo Modified: head/net/p5-MaxMind-DB-Reader-XS/Makefile ============================================================================== --- head/net/p5-MaxMind-DB-Reader-XS/Makefile Thu Jun 20 19:09:04 2019 (r504715) +++ head/net/p5-MaxMind-DB-Reader-XS/Makefile Thu Jun 20 19:09:10 2019 (r504716) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= MaxMind-DB-Reader-XS -PORTVERSION= 1.000007 +PORTVERSION= 1.000008 CATEGORIES= net perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:MAXMIND Modified: head/net/p5-MaxMind-DB-Reader-XS/distinfo ============================================================================== --- head/net/p5-MaxMind-DB-Reader-XS/distinfo Thu Jun 20 19:09:04 2019 (r504715) +++ head/net/p5-MaxMind-DB-Reader-XS/distinfo Thu Jun 20 19:09:10 2019 (r504716) @@ -1,3 +1,3 @@ -TIMESTAMP = 1546258229 -SHA256 (MaxMind-DB-Reader-XS-1.000007.tar.gz) = 19792bd031d19c5d557b8a0c9cd22c413f666fc4cead6c2c745755856fe8e1f1 -SIZE (MaxMind-DB-Reader-XS-1.000007.tar.gz) = 355532 +TIMESTAMP = 1561049489 +SHA256 (MaxMind-DB-Reader-XS-1.000008.tar.gz) = 84aafbc82fac8cfeead9a98e2e4857dbebf449e9b815fe9089150d7f4e0dc787 +SIZE (MaxMind-DB-Reader-XS-1.000008.tar.gz) = 309693 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:16 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5617215C5058; Thu, 20 Jun 2019 19:09:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DAB9892174; Thu, 20 Jun 2019 19:09:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B7D7D1845A; Thu, 20 Jun 2019 19:09:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ9Fwb074021; Thu, 20 Jun 2019 19:09:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ9FYP074019; Thu, 20 Jun 2019 19:09:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ9FYP074019@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504717 - head/dns/py-dns-lexicon X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/dns/py-dns-lexicon X-SVN-Commit-Revision: 504717 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DAB9892174 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:16 -0000 Author: sunpoet Date: Thu Jun 20 19:09:15 2019 New Revision: 504717 URL: https://svnweb.freebsd.org/changeset/ports/504717 Log: Update to 3.2.7 Changes: https://github.com/AnalogJ/lexicon/releases Modified: head/dns/py-dns-lexicon/Makefile head/dns/py-dns-lexicon/distinfo Modified: head/dns/py-dns-lexicon/Makefile ============================================================================== --- head/dns/py-dns-lexicon/Makefile Thu Jun 20 19:09:10 2019 (r504716) +++ head/dns/py-dns-lexicon/Makefile Thu Jun 20 19:09:15 2019 (r504717) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= dns-lexicon -DISTVERSION= 3.2.6 +DISTVERSION= 3.2.7 CATEGORIES= dns python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/dns/py-dns-lexicon/distinfo ============================================================================== --- head/dns/py-dns-lexicon/distinfo Thu Jun 20 19:09:10 2019 (r504716) +++ head/dns/py-dns-lexicon/distinfo Thu Jun 20 19:09:15 2019 (r504717) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558454900 -SHA256 (dns-lexicon-3.2.6.tar.gz) = 1532bc6400660c4cffe6fcf15161194f3eb2076629096992fe6636085549f83d -SIZE (dns-lexicon-3.2.6.tar.gz) = 126016 +TIMESTAMP = 1561049493 +SHA256 (dns-lexicon-3.2.7.tar.gz) = e8064362fa6b88ed83b4688babf28e823801c114bc7f959bbdb723f76ae3e696 +SIZE (dns-lexicon-3.2.7.tar.gz) = 136975 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 24B6D15C50A6; Thu, 20 Jun 2019 19:09:23 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A4F1592245; Thu, 20 Jun 2019 19:09:22 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 93AED1845B; Thu, 20 Jun 2019 19:09:18 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ9Ia6074177; Thu, 20 Jun 2019 19:09:18 GMT (envelope-from crees@FreeBSD.org) Received: (from crees@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ9HL1074173; Thu, 20 Jun 2019 19:09:17 GMT (envelope-from crees@FreeBSD.org) Message-Id: <201906201909.x5KJ9HL1074173@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: crees set sender to crees@FreeBSD.org using -f From: Chris Rees Date: Thu, 20 Jun 2019 19:09:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504718 - in head/sysutils/reed: . files X-SVN-Group: ports-head X-SVN-Commit-Author: crees X-SVN-Commit-Paths: in head/sysutils/reed: . files X-SVN-Commit-Revision: 504718 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A4F1592245 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.983,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:23 -0000 Author: crees Date: Thu Jun 20 19:09:17 2019 New Revision: 504718 URL: https://svnweb.freebsd.org/changeset/ports/504718 Log: sysutils/reed: Update to 5.6 Remove perl dependency by rewriting parts in sh Deleted: head/sysutils/reed/files/ Modified: head/sysutils/reed/Makefile head/sysutils/reed/distinfo head/sysutils/reed/pkg-plist Modified: head/sysutils/reed/Makefile ============================================================================== --- head/sysutils/reed/Makefile Thu Jun 20 19:09:15 2019 (r504717) +++ head/sysutils/reed/Makefile Thu Jun 20 19:09:17 2019 (r504718) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= reed -PORTVERSION= 5.4 -PORTREVISION= 1 +PORTVERSION= 5.6 CATEGORIES= sysutils -MASTER_SITES= http://www.bayofrum.net/dist/${PORTNAME}/ +MASTER_SITES= LOCAL/crees/reed \ + https://www.bayofrum.net/dist/reed/ MAINTAINER= crees@FreeBSD.org COMMENT= Text pager with autoscrolling and more @@ -13,24 +13,19 @@ COMMENT= Text pager with autoscrolling and more LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= ncurses perl5 shebangfix -USE_PERL5= run -SHEBANG_FILES= wrap breed fix_bookmarks.pl +USES= ncurses tar:bzip2 + HAS_CONFIGURE= yes CONFIGURE_SCRIPT= configures +CONFIGURE_ARGS+= --prefix ${PREFIX} CONFIGURE_ENV+= INCDIR="${NCURSESINC}" -post-patch: - @${REINPLACE_CMD} 's!/usr/local!${PREFIX}!g' ${WRKSRC}/configures - @${REINPLACE_CMD} 's!sys/dir.h!dirent.h!g;\!getopt.h!d' \ - ${WRKSRC}/reed.c - do-install: ${INSTALL_PROGRAM} ${WRKSRC}/reed ${STAGEDIR}${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/breed ${STAGEDIR}${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKSRC}/wrap ${STAGEDIR}${PREFIX}/bin ${MKDIR} ${STAGEDIR}${DATADIR} - ${INSTALL_SCRIPT} ${WRKSRC}/fix_bookmarks.pl ${STAGEDIR}${DATADIR} + ${INSTALL_SCRIPT} ${WRKSRC}/fix_bookmarks.sh ${STAGEDIR}${DATADIR}/ ${INSTALL_SCRIPT} ${WRKSRC}/*.1 ${STAGEDIR}${PREFIX}/man/man1 .include Modified: head/sysutils/reed/distinfo ============================================================================== --- head/sysutils/reed/distinfo Thu Jun 20 19:09:15 2019 (r504717) +++ head/sysutils/reed/distinfo Thu Jun 20 19:09:17 2019 (r504718) @@ -1,2 +1,3 @@ -SHA256 (reed-5.4.tar.gz) = 226a057aa5db705e83b685207d635d0d3b983999f1e526e0768aa56b0e7c02a8 -SIZE (reed-5.4.tar.gz) = 32414 +TIMESTAMP = 1561057479 +SHA256 (reed-5.6.tar.bz2) = 1fe61c030d2a51df12f43df2b6fa8101bcd53c6a9ed2e1ba46c09acf837534ba +SIZE (reed-5.6.tar.bz2) = 28727 Modified: head/sysutils/reed/pkg-plist ============================================================================== --- head/sysutils/reed/pkg-plist Thu Jun 20 19:09:15 2019 (r504717) +++ head/sysutils/reed/pkg-plist Thu Jun 20 19:09:17 2019 (r504718) @@ -4,4 +4,4 @@ bin/wrap man/man1/breed.1.gz man/man1/reed.1.gz man/man1/wrap.1.gz -share/reed/fix_bookmarks.pl +share/reed/fix_bookmarks.sh From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 90CAA15C50D4; Thu, 20 Jun 2019 19:09:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DEBB5922B7; Thu, 20 Jun 2019 19:09:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F09EF1845C; Thu, 20 Jun 2019 19:09:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ9K0J074296; Thu, 20 Jun 2019 19:09:20 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ9K4g074294; Thu, 20 Jun 2019 19:09:20 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ9K4g074294@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504719 - head/print/py-fonttools X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/print/py-fonttools X-SVN-Commit-Revision: 504719 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DEBB5922B7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:26 -0000 Author: sunpoet Date: Thu Jun 20 19:09:20 2019 New Revision: 504719 URL: https://svnweb.freebsd.org/changeset/ports/504719 Log: Update to 3.43.1 Changes: https://github.com/fonttools/fonttools/releases Modified: head/print/py-fonttools/Makefile head/print/py-fonttools/distinfo Modified: head/print/py-fonttools/Makefile ============================================================================== --- head/print/py-fonttools/Makefile Thu Jun 20 19:09:17 2019 (r504718) +++ head/print/py-fonttools/Makefile Thu Jun 20 19:09:20 2019 (r504719) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fonttools -PORTVERSION= 3.42.0 +PORTVERSION= 3.43.1 CATEGORIES= print python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/print/py-fonttools/distinfo ============================================================================== --- head/print/py-fonttools/distinfo Thu Jun 20 19:09:17 2019 (r504718) +++ head/print/py-fonttools/distinfo Thu Jun 20 19:09:20 2019 (r504719) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559147088 -SHA256 (fonttools-3.42.0.zip) = c00b393b8fb8644acc7a0c7b71d2e70eadc21db494baaa05b32b08148c661670 -SIZE (fonttools-3.42.0.zip) = 2998088 +TIMESTAMP = 1561049499 +SHA256 (fonttools-3.43.1.zip) = 217176a154341c05c91a1b2f78f5534fb7ca14b84671ac73893e14578527888e +SIZE (fonttools-3.43.1.zip) = 3037094 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6CBE715C50F9; Thu, 20 Jun 2019 19:09:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E2C7892306; Thu, 20 Jun 2019 19:09:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 24D911845D; Thu, 20 Jun 2019 19:09:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ9PGe074423; Thu, 20 Jun 2019 19:09:25 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ9PRS074420; Thu, 20 Jun 2019 19:09:25 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ9PRS074420@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504720 - head/www/py-google-api-core X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/py-google-api-core X-SVN-Commit-Revision: 504720 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E2C7892306 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:29 -0000 Author: sunpoet Date: Thu Jun 20 19:09:25 2019 New Revision: 504720 URL: https://svnweb.freebsd.org/changeset/ports/504720 Log: Update to 1.12.0 Changes: https://github.com/googleapis/google-cloud-python/releases Modified: head/www/py-google-api-core/Makefile head/www/py-google-api-core/distinfo Modified: head/www/py-google-api-core/Makefile ============================================================================== --- head/www/py-google-api-core/Makefile Thu Jun 20 19:09:20 2019 (r504719) +++ head/www/py-google-api-core/Makefile Thu Jun 20 19:09:25 2019 (r504720) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= google-api-core -PORTVERSION= 1.11.1 +PORTVERSION= 1.12.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-google-api-core/distinfo ============================================================================== --- head/www/py-google-api-core/distinfo Thu Jun 20 19:09:20 2019 (r504719) +++ head/www/py-google-api-core/distinfo Thu Jun 20 19:09:25 2019 (r504720) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559147092 -SHA256 (google-api-core-1.11.1.tar.gz) = 18d58e87ce51046ad76961ba320903657182622e3e368e502381b11f63015c66 -SIZE (google-api-core-1.11.1.tar.gz) = 69685 +TIMESTAMP = 1561049504 +SHA256 (google-api-core-1.12.0.tar.gz) = 7ccfab741a333e8d4259d4bcd93d587ebacee0a41316d93440a9c0c230a999c6 +SIZE (google-api-core-1.12.0.tar.gz) = 71952 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 019FE15C5148; Thu, 20 Jun 2019 19:09:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 88DD3923BF; Thu, 20 Jun 2019 19:09:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1E4A51845E; Thu, 20 Jun 2019 19:09:31 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ9VO9074554; Thu, 20 Jun 2019 19:09:31 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ9UIp074552; Thu, 20 Jun 2019 19:09:30 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ9UIp074552@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504721 - head/www/py-instabot X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/py-instabot X-SVN-Commit-Revision: 504721 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 88DD3923BF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:35 -0000 Author: sunpoet Date: Thu Jun 20 19:09:30 2019 New Revision: 504721 URL: https://svnweb.freebsd.org/changeset/ports/504721 Log: Update to 0.49.0 Changes: https://github.com/instagrambot/instabot/commits/master Modified: head/www/py-instabot/Makefile head/www/py-instabot/distinfo Modified: head/www/py-instabot/Makefile ============================================================================== --- head/www/py-instabot/Makefile Thu Jun 20 19:09:25 2019 (r504720) +++ head/www/py-instabot/Makefile Thu Jun 20 19:09:30 2019 (r504721) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= instabot -PORTVERSION= 0.48.0 +PORTVERSION= 0.49.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-instabot/distinfo ============================================================================== --- head/www/py-instabot/distinfo Thu Jun 20 19:09:25 2019 (r504720) +++ head/www/py-instabot/distinfo Thu Jun 20 19:09:30 2019 (r504721) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560957712 -SHA256 (instabot-0.48.0.tar.gz) = 2419819ce5fdbadfa1aab00e3d46830329402268352dd5f4e2de921c3f36bbfc -SIZE (instabot-0.48.0.tar.gz) = 59527 +TIMESTAMP = 1561049508 +SHA256 (instabot-0.49.0.tar.gz) = de37cd3e0460ce488068d22d28a1333f23b7d88adcae58419fc141a9f7a349b9 +SIZE (instabot-0.49.0.tar.gz) = 58610 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:38 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A71315C517D; Thu, 20 Jun 2019 19:09:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1DEBD9242B; Thu, 20 Jun 2019 19:09:38 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 456391845F; Thu, 20 Jun 2019 19:09:36 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ9aSl074679; Thu, 20 Jun 2019 19:09:36 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ9Zs4074675; Thu, 20 Jun 2019 19:09:35 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ9Zs4074675@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504722 - head/www/py-starlette X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/py-starlette X-SVN-Commit-Revision: 504722 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1DEBD9242B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:38 -0000 Author: sunpoet Date: Thu Jun 20 19:09:35 2019 New Revision: 504722 URL: https://svnweb.freebsd.org/changeset/ports/504722 Log: Update to 0.12.1 Changes: https://www.starlette.io/release-notes/ Modified: head/www/py-starlette/Makefile head/www/py-starlette/distinfo Modified: head/www/py-starlette/Makefile ============================================================================== --- head/www/py-starlette/Makefile Thu Jun 20 19:09:30 2019 (r504721) +++ head/www/py-starlette/Makefile Thu Jun 20 19:09:35 2019 (r504722) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= starlette -PORTVERSION= 0.12.0 +PORTVERSION= 0.12.1 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-starlette/distinfo ============================================================================== --- head/www/py-starlette/distinfo Thu Jun 20 19:09:30 2019 (r504721) +++ head/www/py-starlette/distinfo Thu Jun 20 19:09:35 2019 (r504722) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558729959 -SHA256 (starlette-0.12.0.tar.gz) = d313433ef5cc38e0a276b59688ca2b11b8f031c78808c1afdf9d55cb86f34590 -SIZE (starlette-0.12.0.tar.gz) = 44450 +TIMESTAMP = 1561049511 +SHA256 (starlette-0.12.1.tar.gz) = d12d22f22f859131f6e772f3a2a7a8c43fb3d27c72e06ecbbdbd48506ff835d4 +SIZE (starlette-0.12.1.tar.gz) = 45341 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 78C7615C51CC; Thu, 20 Jun 2019 19:09:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0E8CA92588; Thu, 20 Jun 2019 19:09:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 98D4818460; Thu, 20 Jun 2019 19:09:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ9fP9074801; Thu, 20 Jun 2019 19:09:41 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ9fj8074800; Thu, 20 Jun 2019 19:09:41 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ9fj8074800@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504723 - head/devel/rubygem-aws-sdk X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk X-SVN-Commit-Revision: 504723 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0E8CA92588 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:49 -0000 Author: sunpoet Date: Thu Jun 20 19:09:40 2019 New Revision: 504723 URL: https://svnweb.freebsd.org/changeset/ports/504723 Log: Update to 2.11.297 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk/Makefile head/devel/rubygem-aws-sdk/distinfo Modified: head/devel/rubygem-aws-sdk/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk/Makefile Thu Jun 20 19:09:35 2019 (r504722) +++ head/devel/rubygem-aws-sdk/Makefile Thu Jun 20 19:09:40 2019 (r504723) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -DISTVERSION= 2.11.296 +DISTVERSION= 2.11.297 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk/distinfo Thu Jun 20 19:09:35 2019 (r504722) +++ head/devel/rubygem-aws-sdk/distinfo Thu Jun 20 19:09:40 2019 (r504723) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560957714 -SHA256 (rubygem/aws-sdk-2.11.296.gem) = f7081c1c1aeb0a5dde137c68421e7aa956f5f50e0b9d5cddee1de785e790ff1e -SIZE (rubygem/aws-sdk-2.11.296.gem) = 4608 +TIMESTAMP = 1561049512 +SHA256 (rubygem/aws-sdk-2.11.297.gem) = 33b9054ec21142fe3487463f73daec0ddeb39fc38599f2c9b537b18688e3c7a2 +SIZE (rubygem/aws-sdk-2.11.297.gem) = 4608 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:49 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3528615C51C4; Thu, 20 Jun 2019 19:09:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A49939257A; Thu, 20 Jun 2019 19:09:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DBFA418461; Thu, 20 Jun 2019 19:09:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ9kZt074926; Thu, 20 Jun 2019 19:09:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ9kil074925; Thu, 20 Jun 2019 19:09:46 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ9kil074925@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504724 - head/devel/rubygem-aws-sdk-core X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk-core X-SVN-Commit-Revision: 504724 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A49939257A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:49 -0000 Author: sunpoet Date: Thu Jun 20 19:09:46 2019 New Revision: 504724 URL: https://svnweb.freebsd.org/changeset/ports/504724 Log: Update to 2.11.297 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk-core/Makefile head/devel/rubygem-aws-sdk-core/distinfo Modified: head/devel/rubygem-aws-sdk-core/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile Thu Jun 20 19:09:40 2019 (r504723) +++ head/devel/rubygem-aws-sdk-core/Makefile Thu Jun 20 19:09:46 2019 (r504724) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -DISTVERSION= 2.11.296 +DISTVERSION= 2.11.297 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-core/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-core/distinfo Thu Jun 20 19:09:40 2019 (r504723) +++ head/devel/rubygem-aws-sdk-core/distinfo Thu Jun 20 19:09:46 2019 (r504724) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560957716 -SHA256 (rubygem/aws-sdk-core-2.11.296.gem) = 46a2cd828bab227b9f8cf262517cf728e9d0814c8e034bbee6c564d5da5e6a70 -SIZE (rubygem/aws-sdk-core-2.11.296.gem) = 1603584 +TIMESTAMP = 1561049514 +SHA256 (rubygem/aws-sdk-core-2.11.297.gem) = a19492bc44e78d3d880ba7cc372a204e9846730c6ed8f545821c75f8789af38a +SIZE (rubygem/aws-sdk-core-2.11.297.gem) = 1604608 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:09:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6134B15C5220; Thu, 20 Jun 2019 19:09:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0063F92626; Thu, 20 Jun 2019 19:09:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 24FD618462; Thu, 20 Jun 2019 19:09:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ9qJx075051; Thu, 20 Jun 2019 19:09:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ9pvC075049; Thu, 20 Jun 2019 19:09:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ9pvC075049@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504725 - head/devel/rubygem-aws-sdk-resources X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk-resources X-SVN-Commit-Revision: 504725 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0063F92626 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:09:54 -0000 Author: sunpoet Date: Thu Jun 20 19:09:51 2019 New Revision: 504725 URL: https://svnweb.freebsd.org/changeset/ports/504725 Log: Update to 2.11.297 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk-resources/Makefile head/devel/rubygem-aws-sdk-resources/distinfo Modified: head/devel/rubygem-aws-sdk-resources/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile Thu Jun 20 19:09:46 2019 (r504724) +++ head/devel/rubygem-aws-sdk-resources/Makefile Thu Jun 20 19:09:51 2019 (r504725) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -DISTVERSION= 2.11.296 +DISTVERSION= 2.11.297 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-resources/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-resources/distinfo Thu Jun 20 19:09:46 2019 (r504724) +++ head/devel/rubygem-aws-sdk-resources/distinfo Thu Jun 20 19:09:51 2019 (r504725) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560957718 -SHA256 (rubygem/aws-sdk-resources-2.11.296.gem) = e9bdfe3a3ee3f09a6a4d972f7e355ea5f784d21582bed953709e142ca9de29eb -SIZE (rubygem/aws-sdk-resources-2.11.296.gem) = 48640 +TIMESTAMP = 1561049516 +SHA256 (rubygem/aws-sdk-resources-2.11.297.gem) = 7b946fd570a594b9e2ff865e9728a89fbb95ca12a039a02e650b057710bd5f48 +SIZE (rubygem/aws-sdk-resources-2.11.297.gem) = 48640 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:10:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E18615C5272; Thu, 20 Jun 2019 19:10:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 308AF926EC; Thu, 20 Jun 2019 19:10:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B1A3918463; Thu, 20 Jun 2019 19:09:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJ9vVO075192; Thu, 20 Jun 2019 19:09:57 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJ9vpH075190; Thu, 20 Jun 2019 19:09:57 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201909.x5KJ9vpH075190@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:09:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504726 - in head/devel/rubygem-fog: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel/rubygem-fog: . files X-SVN-Commit-Revision: 504726 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 308AF926EC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.983,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:10:00 -0000 Author: sunpoet Date: Thu Jun 20 19:09:56 2019 New Revision: 504726 URL: https://svnweb.freebsd.org/changeset/ports/504726 Log: Update to 2.2.0 Changes: https://github.com/fog/fog/releases Modified: head/devel/rubygem-fog/Makefile head/devel/rubygem-fog/distinfo head/devel/rubygem-fog/files/patch-gemspec Modified: head/devel/rubygem-fog/Makefile ============================================================================== --- head/devel/rubygem-fog/Makefile Thu Jun 20 19:09:51 2019 (r504725) +++ head/devel/rubygem-fog/Makefile Thu Jun 20 19:09:56 2019 (r504726) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= fog -PORTVERSION= 2.1.0 -PORTREVISION= 1 +PORTVERSION= 2.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -17,15 +16,15 @@ RUN_DEPENDS= rubygem-fog-aliyun>=0.1.0:net/rubygem-fog rubygem-fog-atmos>=0:net/rubygem-fog-atmos \ rubygem-fog-aws>=0.6.0:net/rubygem-fog-aws \ rubygem-fog-brightbox0>=0.4:net/rubygem-fog-brightbox0 \ - rubygem-fog-cloudatcost>=0.1.0:net/rubygem-fog-cloudatcost \ - rubygem-fog-core>=1.45:devel/rubygem-fog-core \ + rubygem-fog-cloudatcost>=0.4:net/rubygem-fog-cloudatcost \ + rubygem-fog-cloudstack>=0.1.0:net/rubygem-fog-cloudstack \ + rubygem-fog-core>=2.1:devel/rubygem-fog-core \ rubygem-fog-digitalocean>=0.3.0:net/rubygem-fog-digitalocean \ - rubygem-fog-dnsimple>=1.0:net/rubygem-fog-dnsimple \ + rubygem-fog-dnsimple>=2.1:net/rubygem-fog-dnsimple \ rubygem-fog-dynect>=0.0.2:net/rubygem-fog-dynect \ rubygem-fog-ecloud>=0.1:net/rubygem-fog-ecloud \ rubygem-fog-google>=1.0:net/rubygem-fog-google \ rubygem-fog-internet-archive>=0:net/rubygem-fog-internet-archive \ - rubygem-fog-joyent>=0:net/rubygem-fog-joyent \ rubygem-fog-json>=0:devel/rubygem-fog-json \ rubygem-fog-local>=0:net/rubygem-fog-local \ rubygem-fog-openstack>=0:net/rubygem-fog-openstack \ Modified: head/devel/rubygem-fog/distinfo ============================================================================== --- head/devel/rubygem-fog/distinfo Thu Jun 20 19:09:51 2019 (r504725) +++ head/devel/rubygem-fog/distinfo Thu Jun 20 19:09:56 2019 (r504726) @@ -1,3 +1,3 @@ -TIMESTAMP = 1542045756 -SHA256 (rubygem/fog-2.1.0.gem) = 162ea083e8b1e5f37ae5857d58c5526b2c24ebef6ebf1db35aa37870b5fddbf5 -SIZE (rubygem/fog-2.1.0.gem) = 544768 +TIMESTAMP = 1561049523 +SHA256 (rubygem/fog-2.2.0.gem) = ed2c6872fba2e9297dbe0bbf299a6c855f245648f75c1311b1cde92798bbde5a +SIZE (rubygem/fog-2.2.0.gem) = 478720 Modified: head/devel/rubygem-fog/files/patch-gemspec ============================================================================== --- head/devel/rubygem-fog/files/patch-gemspec Thu Jun 20 19:09:51 2019 (r504725) +++ head/devel/rubygem-fog/files/patch-gemspec Thu Jun 20 19:09:56 2019 (r504726) @@ -1,24 +1,10 @@ ---- fog.gemspec.orig 2018-11-12 20:55:32 UTC +--- fog.gemspec.orig 2019-06-20 18:10:08 UTC +++ fog.gemspec -@@ -27,7 +27,7 @@ Gem::Specification.new do |s| - s.specification_version = 2 - - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then -- s.add_runtime_dependency(%q.freeze, ["~> 1.45"]) -+ s.add_runtime_dependency(%q.freeze, [">= 1.45"]) - s.add_runtime_dependency(%q.freeze, [">= 0"]) - s.add_runtime_dependency(%q.freeze, ["~> 0.1.1"]) - s.add_runtime_dependency(%q.freeze, ["~> 2.0"]) -@@ -36,10 +36,10 @@ Gem::Specification.new do |s| - s.add_runtime_dependency(%q.freeze, [">= 0"]) - s.add_runtime_dependency(%q.freeze, [">= 0.6.0"]) - s.add_runtime_dependency(%q.freeze, ["~> 0.4"]) -- s.add_runtime_dependency(%q.freeze, ["~> 0.1.0"]) -+ s.add_runtime_dependency(%q.freeze, ["~> 0.1"]) +@@ -40,7 +40,7 @@ Gem::Specification.new do |s| + s.add_runtime_dependency(%q.freeze, ["~> 0.1.0"]) s.add_runtime_dependency(%q.freeze, [">= 0.3.0"]) -- s.add_runtime_dependency(%q.freeze, ["~> 1.0"]) + s.add_runtime_dependency(%q.freeze, ["~> 2.1"]) - s.add_runtime_dependency(%q.freeze, ["~> 0.0.2"]) -+ s.add_runtime_dependency(%q.freeze, [">= 1.0"]) + s.add_runtime_dependency(%q.freeze, [">= 0.0.2"]) s.add_runtime_dependency(%q.freeze, ["~> 0.1"]) s.add_runtime_dependency(%q.freeze, ["~> 1.0"]) From owner-svn-ports-all@freebsd.org Thu Jun 20 19:10:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3E4215C52AD; Thu, 20 Jun 2019 19:10:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 74886927C8; Thu, 20 Jun 2019 19:10:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1344718467; Thu, 20 Jun 2019 19:10:03 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJA2Wa075353; Thu, 20 Jun 2019 19:10:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJA2fM075351; Thu, 20 Jun 2019 19:10:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201910.x5KJA2fM075351@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:10:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504727 - head/devel/rubygem-jaro_winkler X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-jaro_winkler X-SVN-Commit-Revision: 504727 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 74886927C8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:10:08 -0000 Author: sunpoet Date: Thu Jun 20 19:10:02 2019 New Revision: 504727 URL: https://svnweb.freebsd.org/changeset/ports/504727 Log: Update to 1.5.3 Changes: https://github.com/tonytonyjan/jaro_winkler/blob/master/CHANGELOG.md https://github.com/tonytonyjan/jaro_winkler/commits/master Modified: head/devel/rubygem-jaro_winkler/Makefile head/devel/rubygem-jaro_winkler/distinfo Modified: head/devel/rubygem-jaro_winkler/Makefile ============================================================================== --- head/devel/rubygem-jaro_winkler/Makefile Thu Jun 20 19:09:56 2019 (r504726) +++ head/devel/rubygem-jaro_winkler/Makefile Thu Jun 20 19:10:02 2019 (r504727) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jaro_winkler -PORTVERSION= 1.5.2 +PORTVERSION= 1.5.3 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-jaro_winkler/distinfo ============================================================================== --- head/devel/rubygem-jaro_winkler/distinfo Thu Jun 20 19:09:56 2019 (r504726) +++ head/devel/rubygem-jaro_winkler/distinfo Thu Jun 20 19:10:02 2019 (r504727) @@ -1,3 +1,3 @@ -TIMESTAMP = 1546720523 -SHA256 (rubygem/jaro_winkler-1.5.2.gem) = 3481442f467127a3c10261bfeba8d5e704fa4c81a9bd6232e9d17e8cd03fe2ff -SIZE (rubygem/jaro_winkler-1.5.2.gem) = 9216 +TIMESTAMP = 1561049528 +SHA256 (rubygem/jaro_winkler-1.5.3.gem) = 6e9a02bc9ee82f4d1af10bc089941860035ec990c1030b4f7604070619d860a4 +SIZE (rubygem/jaro_winkler-1.5.3.gem) = 9216 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:10:14 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1093A15C52E5; Thu, 20 Jun 2019 19:10:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 22C5F92881; Thu, 20 Jun 2019 19:10:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 54BF618468; Thu, 20 Jun 2019 19:10:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJA8O1075478; Thu, 20 Jun 2019 19:10:08 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJA8pf075477; Thu, 20 Jun 2019 19:10:08 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201910.x5KJA8pf075477@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:10:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504728 - head/devel/rubygem-tty-config X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-tty-config X-SVN-Commit-Revision: 504728 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 22C5F92881 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:10:14 -0000 Author: sunpoet Date: Thu Jun 20 19:10:07 2019 New Revision: 504728 URL: https://svnweb.freebsd.org/changeset/ports/504728 Log: Update to 0.3.2 Changes: https://github.com/piotrmurach/tty-config/blob/master/CHANGELOG.md Modified: head/devel/rubygem-tty-config/Makefile head/devel/rubygem-tty-config/distinfo Modified: head/devel/rubygem-tty-config/Makefile ============================================================================== --- head/devel/rubygem-tty-config/Makefile Thu Jun 20 19:10:02 2019 (r504727) +++ head/devel/rubygem-tty-config/Makefile Thu Jun 20 19:10:07 2019 (r504728) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tty-config -PORTVERSION= 0.3.1 +PORTVERSION= 0.3.2 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-tty-config/distinfo ============================================================================== --- head/devel/rubygem-tty-config/distinfo Thu Jun 20 19:10:02 2019 (r504727) +++ head/devel/rubygem-tty-config/distinfo Thu Jun 20 19:10:07 2019 (r504728) @@ -1,3 +1,3 @@ -TIMESTAMP = 1548417302 -SHA256 (rubygem/tty-config-0.3.1.gem) = bdf0482c9adbfb1d643b481b919b4c4013318b46f7cef05cdb3cacf87dda0c42 -SIZE (rubygem/tty-config-0.3.1.gem) = 22016 +TIMESTAMP = 1561049530 +SHA256 (rubygem/tty-config-0.3.2.gem) = af9bf3d291c318f580771408bbaaef2001068915a6182bbd4b94e37ff2e9faef +SIZE (rubygem/tty-config-0.3.2.gem) = 22016 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:10:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C1AF115C5318; Thu, 20 Jun 2019 19:10:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 79F9C9292F; Thu, 20 Jun 2019 19:10:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C1FDE18469; Thu, 20 Jun 2019 19:10:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJADns075617; Thu, 20 Jun 2019 19:10:13 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJADPE075615; Thu, 20 Jun 2019 19:10:13 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201910.x5KJADPE075615@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:10:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504729 - head/net/rubygem-opennebula X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/net/rubygem-opennebula X-SVN-Commit-Revision: 504729 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 79F9C9292F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:10:19 -0000 Author: sunpoet Date: Thu Jun 20 19:10:12 2019 New Revision: 504729 URL: https://svnweb.freebsd.org/changeset/ports/504729 Log: Update to 5.8.3 Changes: https://github.com/OpenNebula/one/wiki/Release-Schedule Modified: head/net/rubygem-opennebula/Makefile head/net/rubygem-opennebula/distinfo head/net/rubygem-opennebula/pkg-descr Modified: head/net/rubygem-opennebula/Makefile ============================================================================== --- head/net/rubygem-opennebula/Makefile Thu Jun 20 19:10:07 2019 (r504728) +++ head/net/rubygem-opennebula/Makefile Thu Jun 20 19:10:12 2019 (r504729) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= opennebula -PORTVERSION= 5.8.2 +PORTVERSION= 5.8.3 CATEGORIES= net rubygems MASTER_SITES= RG Modified: head/net/rubygem-opennebula/distinfo ============================================================================== --- head/net/rubygem-opennebula/distinfo Thu Jun 20 19:10:07 2019 (r504728) +++ head/net/rubygem-opennebula/distinfo Thu Jun 20 19:10:12 2019 (r504729) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558010883 -SHA256 (rubygem/opennebula-5.8.2.gem) = ec477af5dc61ee51f839ddeacb2392ec6652884258f4813c58ff2b23f822e2e4 -SIZE (rubygem/opennebula-5.8.2.gem) = 77824 +TIMESTAMP = 1561049533 +SHA256 (rubygem/opennebula-5.8.3.gem) = c98ea791eae630edd8719dfd404c70056c3cc0dd7579c81e0ccc8969483ff8b0 +SIZE (rubygem/opennebula-5.8.3.gem) = 77824 Modified: head/net/rubygem-opennebula/pkg-descr ============================================================================== --- head/net/rubygem-opennebula/pkg-descr Thu Jun 20 19:10:07 2019 (r504728) +++ head/net/rubygem-opennebula/pkg-descr Thu Jun 20 19:10:12 2019 (r504729) @@ -3,3 +3,4 @@ flexible solution to build and manage enterprise cloud centers. This gem provides libraries needed to talk to OpenNebula. WWW: https://opennebula.org/ +WWW: https://github.com/OpenNebula/one From owner-svn-ports-all@freebsd.org Thu Jun 20 19:10:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4886515C534A; Thu, 20 Jun 2019 19:10:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 34D1F929A3; Thu, 20 Jun 2019 19:10:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E18B91846A; Thu, 20 Jun 2019 19:10:18 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJAIag075742; Thu, 20 Jun 2019 19:10:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJAIN9075740; Thu, 20 Jun 2019 19:10:18 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906201910.x5KJAIN9075740@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 20 Jun 2019 19:10:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504730 - head/textproc/rubygem-sassc-rails X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/textproc/rubygem-sassc-rails X-SVN-Commit-Revision: 504730 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 34D1F929A3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:10:24 -0000 Author: sunpoet Date: Thu Jun 20 19:10:18 2019 New Revision: 504730 URL: https://svnweb.freebsd.org/changeset/ports/504730 Log: Update to 2.1.2 Changes: https://github.com/sass/sassc-rails/blob/master/README.md#changelog Modified: head/textproc/rubygem-sassc-rails/Makefile head/textproc/rubygem-sassc-rails/distinfo Modified: head/textproc/rubygem-sassc-rails/Makefile ============================================================================== --- head/textproc/rubygem-sassc-rails/Makefile Thu Jun 20 19:10:12 2019 (r504729) +++ head/textproc/rubygem-sassc-rails/Makefile Thu Jun 20 19:10:18 2019 (r504730) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= sassc-rails -PORTVERSION= 2.1.1 +PORTVERSION= 2.1.2 CATEGORIES= textproc rubygems MASTER_SITES= RG Modified: head/textproc/rubygem-sassc-rails/distinfo ============================================================================== --- head/textproc/rubygem-sassc-rails/distinfo Thu Jun 20 19:10:12 2019 (r504729) +++ head/textproc/rubygem-sassc-rails/distinfo Thu Jun 20 19:10:18 2019 (r504730) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557684540 -SHA256 (rubygem/sassc-rails-2.1.1.gem) = cdd473521c9f1a941c4541fbd41ef03d6ca558df83d3d88eb43c47c4175f6f5e -SIZE (rubygem/sassc-rails-2.1.1.gem) = 33280 +TIMESTAMP = 1561049536 +SHA256 (rubygem/sassc-rails-2.1.2.gem) = 5f4fdf3881fc9bdc8e856ffbd9850d70a2878866feae8114aa45996179952db5 +SIZE (rubygem/sassc-rails-2.1.2.gem) = 33280 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:16:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3AA6F15C5649; Thu, 20 Jun 2019 19:16:13 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9DD0093211; Thu, 20 Jun 2019 19:16:12 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 83F3D18606; Thu, 20 Jun 2019 19:16:12 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJGCBp080855; Thu, 20 Jun 2019 19:16:12 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJGCL5080854; Thu, 20 Jun 2019 19:16:12 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906201916.x5KJGCL5080854@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 20 Jun 2019 19:16:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504731 - head/games/billardgl X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/billardgl X-SVN-Commit-Revision: 504731 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9DD0093211 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:16:13 -0000 Author: amdmi3 Date: Thu Jun 20 19:16:12 2019 New Revision: 504731 URL: https://svnweb.freebsd.org/changeset/ports/504731 Log: - Switch to more correct way of avoiding C++11 related build errors, by specifying older c++ standard Modified: head/games/billardgl/Makefile Modified: head/games/billardgl/Makefile ============================================================================== --- head/games/billardgl/Makefile Thu Jun 20 19:10:18 2019 (r504730) +++ head/games/billardgl/Makefile Thu Jun 20 19:16:12 2019 (r504731) @@ -15,18 +15,16 @@ LICENSE= GPLv2 # from website WRKSRC_SUBDIR= src -USES= compiler dos2unix +USES= dos2unix DOS2UNIX_FILES= Makefile bmp.cpp USE_GL= gl glu glut USE_XORG= x11 xext xmu xi +USE_CXXSTD= c++98 PORTDOCS= README PORTDATA= * PLIST_FILES= bin/billardgl \ share/pixmaps/billardgl.bmp - -CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}} -CXXFLAGS_clang= -Wno-c++11-narrowing DESKTOP_ENTRIES="${PORTNAME}" \ "" \ From owner-svn-ports-all@freebsd.org Thu Jun 20 19:16:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 11D6815C5671; Thu, 20 Jun 2019 19:16:23 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A2AE6932DA; Thu, 20 Jun 2019 19:16:22 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 432C218607; Thu, 20 Jun 2019 19:16:21 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJGLCG080967; Thu, 20 Jun 2019 19:16:21 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJGLOT080966; Thu, 20 Jun 2019 19:16:21 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906201916.x5KJGLOT080966@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Thu, 20 Jun 2019 19:16:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504732 - head/games/powder X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/powder X-SVN-Commit-Revision: 504732 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A2AE6932DA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:16:23 -0000 Author: amdmi3 Date: Thu Jun 20 19:16:20 2019 New Revision: 504732 URL: https://svnweb.freebsd.org/changeset/ports/504732 Log: - Switch to more correct way of avoiding C++11 related build errors, by specifying older c++ standard Modified: head/games/powder/Makefile Modified: head/games/powder/Makefile ============================================================================== --- head/games/powder/Makefile Thu Jun 20 19:16:12 2019 (r504731) +++ head/games/powder/Makefile Thu Jun 20 19:16:20 2019 (r504732) @@ -12,14 +12,12 @@ DISTNAME= ${PORTNAME}${PORTVERSION}_src MAINTAINER= amdmi3@FreeBSD.org COMMENT= Graphical dungeon crawling game -USES= compiler gmake +USES= gmake USE_SDL= sdl +USE_CXXSTD= c++98 MAKE_JOBS_UNSAFE=yes BUILD_WRKSRC= ${WRKSRC}/port/linux - -CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}} -CXXFLAGS_clang= -Wno-c++11-narrowing PLIST_FILES= bin/powder PORTDOCS= README.TXT LICENSE.TXT CREDITS.TXT From owner-svn-ports-all@freebsd.org Thu Jun 20 19:19:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E10D215C573C; Thu, 20 Jun 2019 19:19:26 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 86CC693401; Thu, 20 Jun 2019 19:19:26 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7290A18608; Thu, 20 Jun 2019 19:19:26 +0000 (UTC) (envelope-from crees@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJJQTq081247; Thu, 20 Jun 2019 19:19:26 GMT (envelope-from crees@FreeBSD.org) Received: (from crees@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJJPgc081244; Thu, 20 Jun 2019 19:19:25 GMT (envelope-from crees@FreeBSD.org) Message-Id: <201906201919.x5KJJPgc081244@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: crees set sender to crees@FreeBSD.org using -f From: Chris Rees Date: Thu, 20 Jun 2019 19:19:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504733 - in head/x11/cde: . files X-SVN-Group: ports-head X-SVN-Commit-Author: crees X-SVN-Commit-Paths: in head/x11/cde: . files X-SVN-Commit-Revision: 504733 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 86CC693401 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.983,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:19:27 -0000 Author: crees Date: Thu Jun 20 19:19:25 2019 New Revision: 504733 URL: https://svnweb.freebsd.org/changeset/ports/504733 Log: x11/cde: Add dtlogin rc script Remove double ksh dependency Pet portlint Mark BROKEN on head: cc -o dthelpview -O2 -fno-strict-aliasing -Wno-write-strings -Wno-unused-result -Wno-deprecated-register -pipe -L../../../exports/lib -L/usr/local/lib -L/usr/local/lib Main.o ManPage.o Util.o version.o -lDtHelp -lDtSvc -ltt -lXm -lXt -lSM -lICE -lXext -lX11 -L/usr/local/dt/lib -L/usr/local/lib -L/usr/local/lib -liconv -lm -lstdc++ ld: error: ../../../exports/lib/libDtHelp.so: undefined reference to jpeg_CreateDecompress [...] Added: head/x11/cde/files/dtlogin.in (contents, props changed) Modified: head/x11/cde/Makefile head/x11/cde/files/dtcms.in head/x11/cde/files/dtspc.in Modified: head/x11/cde/Makefile ============================================================================== --- head/x11/cde/Makefile Thu Jun 20 19:16:20 2019 (r504732) +++ head/x11/cde/Makefile Thu Jun 20 19:19:25 2019 (r504733) @@ -2,7 +2,7 @@ PORTNAME= cde DISTVERSION= 2.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11 MASTER_SITES= SF/cdesktopenv/src/ @@ -22,7 +22,6 @@ BUILD_DEPENDS= ksh93:shells/ksh93 \ ${LOCALBASE}/libdata/pkgconfig/freetype2.pc:print/freetype2 RUN_DEPENDS= ${LOCALBASE}/bin/fc-cache:x11-fonts/fontconfig \ ${LOCALBASE}/libdata/pkgconfig/freetype2.pc:print/freetype2 \ - ksh93:shells/ksh93 \ xrdb:x11/xrdb \ xset:x11/xset @@ -33,7 +32,7 @@ SHEBANG_FILES= programs/dtdocbook/sgmls/sgmls.pl \ programs/dtdocbook/doc2sdl/docbook.tcl \ programs/dtdocbook/doc2sdl/dtdocbook USE_LDCONFIG= ${PREFIX}/dt/lib -USE_RC_SUBR= dtcms dtspc +USE_RC_SUBR= dtcms dtspc dtlogin USE_XORG= ice sm x11 xau xdmcp xext xinerama xmu xp xscrnsaver xt WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} @@ -41,6 +40,12 @@ ALL_TARGET= World MAKE_ARGS+= PERL=${PERL} MAKE_JOBS_UNSAFE=yes SUB_FILES= pkg-message + +.include + +.if ${OSVERSION} >= 1300018 +BROKEN= Fails to build: ld: error: ../../../exports/lib/libDtHelp.so: undefined reference to jpeg_CreateDecompress +.endif post-patch: @if [ -f /usr/include/iconv.h ]; then \ Modified: head/x11/cde/files/dtcms.in ============================================================================== --- head/x11/cde/files/dtcms.in Thu Jun 20 19:16:20 2019 (r504732) +++ head/x11/cde/files/dtcms.in Thu Jun 20 19:19:25 2019 (r504733) @@ -15,14 +15,14 @@ name=dtcms rcvar=dtcms_enable desc="CDE calendar manager service daemon" -start_precmd="force_depend rpcbind || exit 1" load_rc_config $name : ${dtcms_enable:=NO} command=/usr/sbin/daemon -pidfile=/var/run/dtcms.pid command_args="-P $pidfile %%PREFIX%%/dt/bin/rpc.cmsd" +start_precmd="force_depend rpcbind || exit 1" +pidfile=/var/run/dtcms.pid run_rc_command $1 Added: head/x11/cde/files/dtlogin.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11/cde/files/dtlogin.in Thu Jun 20 19:19:25 2019 (r504733) @@ -0,0 +1,26 @@ +#!/bin/sh + +# $FreeBSD$ +# +# PROVIDE: dtlogin +# REQUIRE: LOGIN dbus hald dtspc +# KEYWORD: shutdown +# +# Add the following line to /etc/rc.conf to enable slim: +# dtlogin_enable="YES" +# + +. /etc/rc.subr + +name=dtlogin +rcvar=dtlogin_enable +desc="Display manager for CDE" + +load_rc_config dtlogin + +: ${dtlogin_enable:=NO} + +command=%%PREFIX%%/dt/bin/dtlogin +command_args=-daemon + +run_rc_command $1 Modified: head/x11/cde/files/dtspc.in ============================================================================== --- head/x11/cde/files/dtspc.in Thu Jun 20 19:16:20 2019 (r504732) +++ head/x11/cde/files/dtspc.in Thu Jun 20 19:19:25 2019 (r504733) @@ -15,16 +15,15 @@ name=dtspc rcvar=dtspc_enable desc="CDE Subprocess Control Service" -start_precmd="force_depend rpcbind || exit 1" load_rc_config $name : ${dtspc_enable:=NO} command=/usr/sbin/daemon -pidfile=/var/run/dtspc.pid command_args="-P $pidfile %%PREFIX%%/dt/bin/dtspcd" -start_precmd="ln -sf %%PREFIX%%/dt /usr/dt && ln -sf %%PREFIX%%/etc/dt /etc/dt" +start_precmd="force_depend rpcbind || exit 1 && ln -sf %%PREFIX%%/dt /usr/dt && ln -sf %%PREFIX%%/etc/dt /etc/dt" stop_postcmd="[ -L /usr/dt -a -L /etc/dt ] && rm /usr/dt /etc/dt" +pidfile=/var/run/dtspc.pid run_rc_command $1 From owner-svn-ports-all@freebsd.org Thu Jun 20 19:33:40 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B8B815C5D1D; Thu, 20 Jun 2019 19:33:40 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B5AC893C01; Thu, 20 Jun 2019 19:33:39 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A3D621895E; Thu, 20 Jun 2019 19:33:39 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KJXdjq091397; Thu, 20 Jun 2019 19:33:39 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KJXdZi091396; Thu, 20 Jun 2019 19:33:39 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906201933.x5KJXdZi091396@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 20 Jun 2019 19:33:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504734 - head/print/harfbuzz X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/print/harfbuzz X-SVN-Commit-Revision: 504734 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B5AC893C01 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 19:33:40 -0000 Author: jbeich Date: Thu Jun 20 19:33:38 2019 New Revision: 504734 URL: https://svnweb.freebsd.org/changeset/ports/504734 Log: print/harfbuzz: update to 2.5.2 Changes: https://github.com/harfbuzz/harfbuzz/releases/tag/2.5.2 ABI: https://abi-laboratory.pro/tracker/timeline/harfbuzz/ Reported by: GitHub (watch releases) Modified: head/print/harfbuzz/Makefile (contents, props changed) head/print/harfbuzz/distinfo (contents, props changed) Modified: head/print/harfbuzz/Makefile ============================================================================== --- head/print/harfbuzz/Makefile Thu Jun 20 19:19:25 2019 (r504733) +++ head/print/harfbuzz/Makefile Thu Jun 20 19:33:38 2019 (r504734) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= harfbuzz -PORTVERSION= 2.5.1 +PORTVERSION= 2.5.2 PORTREVISION?= 0 CATEGORIES= print MASTER_SITES= http://www.freedesktop.org/software/harfbuzz/release/ @@ -22,7 +22,7 @@ CONFIGURE_ARGS= --with-graphite2 --with-gobject=yes INSTALL_TARGET= install-strip TEST_TARGET= check -PLIST_SUB+= LIBVER=0.20501.0 +PLIST_SUB+= LIBVER=0.20502.0 HARFBUZZ_SLAVE?= no Modified: head/print/harfbuzz/distinfo ============================================================================== --- head/print/harfbuzz/distinfo Thu Jun 20 19:19:25 2019 (r504733) +++ head/print/harfbuzz/distinfo Thu Jun 20 19:33:38 2019 (r504734) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559368729 -SHA256 (harfbuzz-2.5.1.tar.xz) = 6d4834579abd5f7ab3861c085b4c55129f78b27fe47961fd96769d3704f6719e -SIZE (harfbuzz-2.5.1.tar.xz) = 5636068 +TIMESTAMP = 1557170060 +SHA256 (harfbuzz-2.5.2.tar.xz) = 7c8fcf9a2bbe3df5ed9650060d89f9b7cfd40ec5729671447ace8b0505527e8b +SIZE (harfbuzz-2.5.2.tar.xz) = 5674180 From owner-svn-ports-all@freebsd.org Thu Jun 20 21:15:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E09E315C8042; Thu, 20 Jun 2019 21:15:31 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 84BF696DC5; Thu, 20 Jun 2019 21:15:31 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 69C0A19A01; Thu, 20 Jun 2019 21:15:31 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KLFV4u043800; Thu, 20 Jun 2019 21:15:31 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KLFV4l043798; Thu, 20 Jun 2019 21:15:31 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201906202115.x5KLFV4l043798@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Thu, 20 Jun 2019 21:15:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504735 - head/sysutils/eksctl X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: head/sysutils/eksctl X-SVN-Commit-Revision: 504735 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 84BF696DC5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 21:15:32 -0000 Author: danilo Date: Thu Jun 20 21:15:30 2019 New Revision: 504735 URL: https://svnweb.freebsd.org/changeset/ports/504735 Log: - Update to 0.1.37 Modified: head/sysutils/eksctl/Makefile head/sysutils/eksctl/distinfo Modified: head/sysutils/eksctl/Makefile ============================================================================== --- head/sysutils/eksctl/Makefile Thu Jun 20 19:33:38 2019 (r504734) +++ head/sysutils/eksctl/Makefile Thu Jun 20 21:15:30 2019 (r504735) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= eksctl -PORTVERSION= 0.1.35 +PORTVERSION= 0.1.37 CATEGORIES= sysutils MAINTAINER= danilo@FreeBSD.org Modified: head/sysutils/eksctl/distinfo ============================================================================== --- head/sysutils/eksctl/distinfo Thu Jun 20 19:33:38 2019 (r504734) +++ head/sysutils/eksctl/distinfo Thu Jun 20 21:15:30 2019 (r504735) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559940885 -SHA256 (weaveworks-eksctl-0.1.35_GH0.tar.gz) = 432c1db998544bedfe4d85873b7542fb1d4eb3e8509fee47fcba700e709f5536 -SIZE (weaveworks-eksctl-0.1.35_GH0.tar.gz) = 20095987 +TIMESTAMP = 1561065090 +SHA256 (weaveworks-eksctl-0.1.37_GH0.tar.gz) = 5048c5e84f53b9aea426b2e96da29809bd2a12deda88e4805bb8a807c2d4425e +SIZE (weaveworks-eksctl-0.1.37_GH0.tar.gz) = 21130858 From owner-svn-ports-all@freebsd.org Thu Jun 20 21:31:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8C6E15C833C; Thu, 20 Jun 2019 21:31:08 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FC63974E9; Thu, 20 Jun 2019 21:31:08 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1D28D19BDA; Thu, 20 Jun 2019 21:31:08 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KLV7p8052422; Thu, 20 Jun 2019 21:31:07 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KLV7B0052420; Thu, 20 Jun 2019 21:31:07 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906202131.x5KLV7B0052420@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Thu, 20 Jun 2019 21:31:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504736 - head/devel/pear-PHP_Timer X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/pear-PHP_Timer X-SVN-Commit-Revision: 504736 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4FC63974E9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 21:31:08 -0000 Author: joneum Date: Thu Jun 20 21:31:07 2019 New Revision: 504736 URL: https://svnweb.freebsd.org/changeset/ports/504736 Log: Update to 2.1.2 Sponsored by: Netzkommune GmbH Modified: head/devel/pear-PHP_Timer/Makefile head/devel/pear-PHP_Timer/distinfo Modified: head/devel/pear-PHP_Timer/Makefile ============================================================================== --- head/devel/pear-PHP_Timer/Makefile Thu Jun 20 21:15:30 2019 (r504735) +++ head/devel/pear-PHP_Timer/Makefile Thu Jun 20 21:31:07 2019 (r504736) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= PHP_Timer -PORTVERSION= 2.1.1 +PORTVERSION= 2.1.2 CATEGORIES= devel pear MAINTAINER= joneum@FreeBSD.org Modified: head/devel/pear-PHP_Timer/distinfo ============================================================================== --- head/devel/pear-PHP_Timer/distinfo Thu Jun 20 21:15:30 2019 (r504735) +++ head/devel/pear-PHP_Timer/distinfo Thu Jun 20 21:31:07 2019 (r504736) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551602752 -SHA256 (sebastianbergmann-php-timer-2.1.1_GH0.tar.gz) = 24ea465b82d6dbd5f441311e6be8ff36906f6e58c05387d5c31ae4759089452b -SIZE (sebastianbergmann-php-timer-2.1.1_GH0.tar.gz) = 7002 +TIMESTAMP = 1561065973 +SHA256 (sebastianbergmann-php-timer-2.1.2_GH0.tar.gz) = d1336d4904835242b53ec2a636cf8fbd5a81b8482ea68f98299a04dd775f8cad +SIZE (sebastianbergmann-php-timer-2.1.2_GH0.tar.gz) = 7090 From owner-svn-ports-all@freebsd.org Thu Jun 20 21:33:36 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0238215C8539; Thu, 20 Jun 2019 21:33:36 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 95AF1976E7; Thu, 20 Jun 2019 21:33:35 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 827B419D46; Thu, 20 Jun 2019 21:33:35 +0000 (UTC) (envelope-from danilo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KLXZNN054098; Thu, 20 Jun 2019 21:33:35 GMT (envelope-from danilo@FreeBSD.org) Received: (from danilo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KLXZXH054096; Thu, 20 Jun 2019 21:33:35 GMT (envelope-from danilo@FreeBSD.org) Message-Id: <201906202133.x5KLXZXH054096@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danilo set sender to danilo@FreeBSD.org using -f From: Danilo Egea Gondolfo Date: Thu, 20 Jun 2019 21:33:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504737 - head/sysutils/kubectl X-SVN-Group: ports-head X-SVN-Commit-Author: danilo X-SVN-Commit-Paths: head/sysutils/kubectl X-SVN-Commit-Revision: 504737 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 95AF1976E7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 21:33:36 -0000 Author: danilo Date: Thu Jun 20 21:33:34 2019 New Revision: 504737 URL: https://svnweb.freebsd.org/changeset/ports/504737 Log: - Update to 1.15.0 Modified: head/sysutils/kubectl/Makefile head/sysutils/kubectl/distinfo Modified: head/sysutils/kubectl/Makefile ============================================================================== --- head/sysutils/kubectl/Makefile Thu Jun 20 21:31:07 2019 (r504736) +++ head/sysutils/kubectl/Makefile Thu Jun 20 21:33:34 2019 (r504737) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= kubectl -PORTVERSION= 1.14.3 +PORTVERSION= 1.15.0 DISTVERSIONPREFIX= v CATEGORIES= sysutils @@ -19,10 +19,11 @@ GH_PROJECT= kubernetes GO_PKGNAME= k8s.io/kubernetes GO_TARGET= ${GO_PKGNAME}/cmd/${PORTNAME} -GO_BUILDFLAGS= -ldflags="-X k8s.io/kubernetes/pkg/version.gitMajor=${PORTVERSION:R:R} \ - -X k8s.io/kubernetes/pkg/version.gitMinor=${PORTVERSION:R:E} \ - -X k8s.io/kubernetes/pkg/version.buildDate=$$(date +'%Y-%m-%dT%H:%M:%SZ') \ - -X k8s.io/kubernetes/pkg/version.gitVersion=${DISTVERSIONPREFIX}${PORTVERSION}" +GO_BUILDFLAGS= -ldflags="-X k8s.io/kubernetes/pkg/kubectl/version.gitMajor=${PORTVERSION:R:R} \ + -X k8s.io/kubernetes/pkg/kubectl/version.gitMinor=${PORTVERSION:R:E} \ + -X k8s.io/kubernetes/pkg/kubectl/version.buildDate=$$(date +'%Y-%m-%dT%H:%M:%SZ') \ + -X k8s.io/kubernetes/pkg/kubectl/version.gitCommit="" \ + -X k8s.io/kubernetes/pkg/kubectl/version.gitVersion=${DISTVERSIONPREFIX}${PORTVERSION}" PLIST_FILES= bin/${PORTNAME} Modified: head/sysutils/kubectl/distinfo ============================================================================== --- head/sysutils/kubectl/distinfo Thu Jun 20 21:31:07 2019 (r504736) +++ head/sysutils/kubectl/distinfo Thu Jun 20 21:33:34 2019 (r504737) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559940835 -SHA256 (kubernetes-kubernetes-v1.14.3_GH0.tar.gz) = 3896f5beb1f381cd022ca3dcac2ff4ec4660f7471a1f50cca91a4916ddf54eaa -SIZE (kubernetes-kubernetes-v1.14.3_GH0.tar.gz) = 28058624 +TIMESTAMP = 1561064512 +SHA256 (kubernetes-kubernetes-v1.15.0_GH0.tar.gz) = d850922e14f59f1808323a6655f14ca10118c4e2ae5936f652b694059960e7b8 +SIZE (kubernetes-kubernetes-v1.15.0_GH0.tar.gz) = 26591862 From owner-svn-ports-all@freebsd.org Thu Jun 20 21:34:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EE0A015C8579; Thu, 20 Jun 2019 21:34:32 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9045F977C0; Thu, 20 Jun 2019 21:34:32 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 49C9219D47; Thu, 20 Jun 2019 21:34:32 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KLYWdY054254; Thu, 20 Jun 2019 21:34:32 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KLYVQY054252; Thu, 20 Jun 2019 21:34:31 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906202134.x5KLYVQY054252@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 21:34:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504738 - head/misc/gobuster X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/gobuster X-SVN-Commit-Revision: 504738 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9045F977C0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 21:34:33 -0000 Author: yuri Date: Thu Jun 20 21:34:31 2019 New Revision: 504738 URL: https://svnweb.freebsd.org/changeset/ports/504738 Log: misc/gobuster: Update 2.0.1-15 -> 3.0.0 Reported by: portscout Modified: head/misc/gobuster/Makefile head/misc/gobuster/distinfo Modified: head/misc/gobuster/Makefile ============================================================================== --- head/misc/gobuster/Makefile Thu Jun 20 21:33:34 2019 (r504737) +++ head/misc/gobuster/Makefile Thu Jun 20 21:34:31 2019 (r504738) @@ -2,8 +2,7 @@ PORTNAME= gobuster DISTVERSIONPREFIX= v -DISTVERSION= 2.0.1-15 -DISTVERSIONSUFFIX= -g0e209e5 +DISTVERSION= 3.0.0 CATEGORIES= misc dns MAINTAINER= yuri@FreeBSD.org @@ -19,6 +18,8 @@ GH_TUPLE= google:uuid:c2e93f3:uuid/vendor/github.com/g hashicorp:errwrap:8a6fb52:errwrap/vendor/github.com/hashicorp/errwrap \ hashicorp:go-multierror:886a7fb:gomultierror/vendor/github.com/hashicorp/go-multierror \ golang:crypto:0e37d00:crypto/vendor/golang.org/x/crypto \ + spf13:cobra:0.0.5:cobra/vendor/github.com/spf13/cobra \ + spf13:pflag:v1.0.3:pflag/vendor/github.com/spf13/pflag \ golang:sys:d8f5ea2:sys/vendor/golang.org/x/sys GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} Modified: head/misc/gobuster/distinfo ============================================================================== --- head/misc/gobuster/distinfo Thu Jun 20 21:33:34 2019 (r504737) +++ head/misc/gobuster/distinfo Thu Jun 20 21:34:31 2019 (r504738) @@ -1,13 +1,17 @@ -TIMESTAMP = 1558430258 -SHA256 (OJ-gobuster-v2.0.1-15-g0e209e5_GH0.tar.gz) = 6e5c1857cabc7b4a80a6e7eb3fa8610bd489cf589bdc88fff40e48e4c1083170 -SIZE (OJ-gobuster-v2.0.1-15-g0e209e5_GH0.tar.gz) = 19157 +TIMESTAMP = 1561066377 +SHA256 (OJ-gobuster-v3.0.0_GH0.tar.gz) = 71d75bbbe4dc74ad2e156381e57eb53dffc6a16e549fb07ba34ec3c677d57888 +SIZE (OJ-gobuster-v3.0.0_GH0.tar.gz) = 29180 SHA256 (google-uuid-c2e93f3_GH0.tar.gz) = 61a0e56aa49810b3a3a1983d7ce9b09ff2fe3c7e7c807572426bff33ed36d934 SIZE (google-uuid-c2e93f3_GH0.tar.gz) = 13862 -SHA256 (hashicorp-go-multierror-886a7fb_GH0.tar.gz) = 5f264918593dc45a891c4766f9be56e167692eb364dc6d899b2953277168df8c -SIZE (hashicorp-go-multierror-886a7fb_GH0.tar.gz) = 10065 SHA256 (hashicorp-errwrap-8a6fb52_GH0.tar.gz) = a7a95f9731829c7d9a66d49de0d8cd0e0d9d55da95c1124a80e6719278236e4c SIZE (hashicorp-errwrap-8a6fb52_GH0.tar.gz) = 8345 +SHA256 (hashicorp-go-multierror-886a7fb_GH0.tar.gz) = 5f264918593dc45a891c4766f9be56e167692eb364dc6d899b2953277168df8c +SIZE (hashicorp-go-multierror-886a7fb_GH0.tar.gz) = 10065 SHA256 (golang-crypto-0e37d00_GH0.tar.gz) = 05e1f307f06b14787c1abe8d463a164521b70c831992ff82ae552541d2c421c6 SIZE (golang-crypto-0e37d00_GH0.tar.gz) = 1638254 +SHA256 (spf13-cobra-0.0.5_GH0.tar.gz) = 79226ce00e2b91306277e679d024eea6d17d0c02fc671555fd25df0c3ea07423 +SIZE (spf13-cobra-0.0.5_GH0.tar.gz) = 111126 +SHA256 (spf13-pflag-v1.0.3_GH0.tar.gz) = 9e57f86f493f04d9077fccd04e7139ebf243dd544e917ab83d35729b3e54a124 +SIZE (spf13-pflag-v1.0.3_GH0.tar.gz) = 46002 SHA256 (golang-sys-d8f5ea2_GH0.tar.gz) = c7f0817950489b37f350139f12526f67a6a880fd7b63c72c211e7d0abb193659 SIZE (golang-sys-d8f5ea2_GH0.tar.gz) = 733077 From owner-svn-ports-all@freebsd.org Thu Jun 20 21:35:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6359E15C85BC; Thu, 20 Jun 2019 21:35:15 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 08EDF9789C; Thu, 20 Jun 2019 21:35:15 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CF2FB19D48; Thu, 20 Jun 2019 21:35:14 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KLZE8O054418; Thu, 20 Jun 2019 21:35:14 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KLZED5054416; Thu, 20 Jun 2019 21:35:14 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906202135.x5KLZED5054416@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Thu, 20 Jun 2019 21:35:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504739 - head/devel/pecl-event X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/pecl-event X-SVN-Commit-Revision: 504739 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 08EDF9789C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 21:35:15 -0000 Author: joneum Date: Thu Jun 20 21:35:14 2019 New Revision: 504739 URL: https://svnweb.freebsd.org/changeset/ports/504739 Log: Update to 2.5.3 Sponsored by: Netzkommune GmbH Modified: head/devel/pecl-event/Makefile head/devel/pecl-event/distinfo Modified: head/devel/pecl-event/Makefile ============================================================================== --- head/devel/pecl-event/Makefile Thu Jun 20 21:34:31 2019 (r504738) +++ head/devel/pecl-event/Makefile Thu Jun 20 21:35:14 2019 (r504739) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= event -PORTVERSION= 2.5.2 +PORTVERSION= 2.5.3 CATEGORIES= devel MAINTAINER= joneum@FreeBSD.org Modified: head/devel/pecl-event/distinfo ============================================================================== --- head/devel/pecl-event/distinfo Thu Jun 20 21:34:31 2019 (r504738) +++ head/devel/pecl-event/distinfo Thu Jun 20 21:35:14 2019 (r504739) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560752998 -SHA256 (PECL/event-2.5.2.tgz) = 8edd69354177351a910b2855f112e2914a83e56cc2e2cb5ed03f33e73d5f3f2d -SIZE (PECL/event-2.5.2.tgz) = 140689 +TIMESTAMP = 1561066278 +SHA256 (PECL/event-2.5.3.tgz) = 0ba2c55071d69e12ee0a8711d974edde47c31176ef1b1576b8fced468bcf918a +SIZE (PECL/event-2.5.3.tgz) = 140913 From owner-svn-ports-all@freebsd.org Thu Jun 20 21:57:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 92A6F15C8D0A; Thu, 20 Jun 2019 21:57:35 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 33A07682E3; Thu, 20 Jun 2019 21:57:35 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 000CD1A0B3; Thu, 20 Jun 2019 21:57:34 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KLvYIY065173; Thu, 20 Jun 2019 21:57:34 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KLvYQx065171; Thu, 20 Jun 2019 21:57:34 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906202157.x5KLvYQx065171@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 21:57:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504740 - head/math/giacxcas X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/giacxcas X-SVN-Commit-Revision: 504740 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 33A07682E3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 21:57:35 -0000 Author: yuri Date: Thu Jun 20 21:57:34 2019 New Revision: 504740 URL: https://svnweb.freebsd.org/changeset/ports/504740 Log: math/giacxcas: Update 1.5.0-59 -> 1.5.0-61 Reported by: portscout Modified: head/math/giacxcas/Makefile head/math/giacxcas/distinfo Modified: head/math/giacxcas/Makefile ============================================================================== --- head/math/giacxcas/Makefile Thu Jun 20 21:35:14 2019 (r504739) +++ head/math/giacxcas/Makefile Thu Jun 20 21:57:34 2019 (r504740) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= giacxcas -DISTVERSION= 1.5.0-59 +DISTVERSION= 1.5.0-61 CATEGORIES= math MASTER_SITES= http://www-fourier.ujf-grenoble.fr/~parisse/debian/dists/stable/main/source/:giac \ http://www-fourier.ujf-grenoble.fr/~parisse/giac/freebsd/ Modified: head/math/giacxcas/distinfo ============================================================================== --- head/math/giacxcas/distinfo Thu Jun 20 21:35:14 2019 (r504739) +++ head/math/giacxcas/distinfo Thu Jun 20 21:57:34 2019 (r504740) @@ -1,6 +1,6 @@ -TIMESTAMP = 1559890362 -SHA256 (giacxcas/giac_1.5.0-59.tar.gz) = 3f97a48e5c170dda28b26e9830a4eed7acade409e1b851dc1dd0a26fbc1e0f5e -SIZE (giacxcas/giac_1.5.0-59.tar.gz) = 77615316 +TIMESTAMP = 1561066996 +SHA256 (giacxcas/giac_1.5.0-61.tar.gz) = 905356675b4a4d59883f388d2d3b30f7d5a83d603a2e2d869fd09d83f1fd1b14 +SIZE (giacxcas/giac_1.5.0-61.tar.gz) = 77703643 SHA256 (giacxcas/CoCoALib-0.9950.tgz) = b30d840593e1930c1629467918b508c429e0a983ef0d1343eab570f238275678 SIZE (giacxcas/CoCoALib-0.9950.tgz) = 4120680 SHA256 (giacxcas/fltk-giac.tar.gz) = 538243c536a62e562bc26dec1c54454f54ce614cc540371f5ccfe71d8ed27cf7 From owner-svn-ports-all@freebsd.org Thu Jun 20 22:06:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6B50A15C8F76; Thu, 20 Jun 2019 22:06:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0BED169A8A; Thu, 20 Jun 2019 22:06:57 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D7FC61A257; Thu, 20 Jun 2019 22:06:56 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KM6uu2070211; Thu, 20 Jun 2019 22:06:56 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KM6u7G070209; Thu, 20 Jun 2019 22:06:56 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906202206.x5KM6u7G070209@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 22:06:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504741 - head/science/qbox X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/science/qbox X-SVN-Commit-Revision: 504741 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0BED169A8A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 22:06:57 -0000 Author: yuri Date: Thu Jun 20 22:06:56 2019 New Revision: 504741 URL: https://svnweb.freebsd.org/changeset/ports/504741 Log: science/qbox: Update 1.67.2 -> 1.67.4 Modified: head/science/qbox/Makefile head/science/qbox/distinfo Modified: head/science/qbox/Makefile ============================================================================== --- head/science/qbox/Makefile Thu Jun 20 21:57:34 2019 (r504740) +++ head/science/qbox/Makefile Thu Jun 20 22:06:56 2019 (r504741) @@ -2,7 +2,7 @@ PORTNAME= qbox DISTVERSIONPREFIX= rel -DISTVERSION= 1_67_2 +DISTVERSION= 1_67_4 CATEGORIES= science MAINTAINER= yuri@FreeBSD.org Modified: head/science/qbox/distinfo ============================================================================== --- head/science/qbox/distinfo Thu Jun 20 21:57:34 2019 (r504740) +++ head/science/qbox/distinfo Thu Jun 20 22:06:56 2019 (r504741) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560415235 -SHA256 (qboxcode-qbox-public-rel1_67_2_GH0.tar.gz) = 8063c927e7d8300b063bb40948cb86c59fc3bd874eb877183596d3b6bdba2f44 -SIZE (qboxcode-qbox-public-rel1_67_2_GH0.tar.gz) = 688178 +TIMESTAMP = 1561067886 +SHA256 (qboxcode-qbox-public-rel1_67_4_GH0.tar.gz) = 54d8af5f3a499e187f4b1b8cb8e8138180a38a944ef8a3bb88b439409fd465e5 +SIZE (qboxcode-qbox-public-rel1_67_4_GH0.tar.gz) = 688303 From owner-svn-ports-all@freebsd.org Thu Jun 20 22:29:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1B3DC15C955E; Thu, 20 Jun 2019 22:29:53 +0000 (UTC) (envelope-from jmd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B15C86A5FD; Thu, 20 Jun 2019 22:29:52 +0000 (UTC) (envelope-from jmd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8B50C1A5A4; Thu, 20 Jun 2019 22:29:52 +0000 (UTC) (envelope-from jmd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KMTqsd080915; Thu, 20 Jun 2019 22:29:52 GMT (envelope-from jmd@FreeBSD.org) Received: (from jmd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KMTpPD080911; Thu, 20 Jun 2019 22:29:51 GMT (envelope-from jmd@FreeBSD.org) Message-Id: <201906202229.x5KMTpPD080911@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jmd set sender to jmd@FreeBSD.org using -f From: Johannes M Dieterich Date: Thu, 20 Jun 2019 22:29:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504742 - head/graphics/gpu-firmware-kmod X-SVN-Group: ports-head X-SVN-Commit-Author: jmd X-SVN-Commit-Paths: head/graphics/gpu-firmware-kmod X-SVN-Commit-Revision: 504742 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B15C86A5FD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 22:29:53 -0000 Author: jmd Date: Thu Jun 20 22:29:51 2019 New Revision: 504742 URL: https://svnweb.freebsd.org/changeset/ports/504742 Log: graphics/gpu-firmware-kmod: Update to most recent upstream release. This bring us in sync with linux-firmware 7ae3a09d for amdgpu firmwares. Firmware changes apply to more recent architectures. Modified: head/graphics/gpu-firmware-kmod/Makefile head/graphics/gpu-firmware-kmod/distinfo head/graphics/gpu-firmware-kmod/pkg-plist Modified: head/graphics/gpu-firmware-kmod/Makefile ============================================================================== --- head/graphics/gpu-firmware-kmod/Makefile Thu Jun 20 22:06:56 2019 (r504741) +++ head/graphics/gpu-firmware-kmod/Makefile Thu Jun 20 22:29:51 2019 (r504742) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gpu-firmware-kmod -PORTVERSION= g20190219 +PORTVERSION= g20190620 CATEGORIES= graphics MAINTAINER= jmd@FreeBSD.org @@ -22,7 +22,7 @@ USES= kmod uidfix USE_GITHUB= yes GH_ACCOUNT= FreeBSDDesktop GH_PROJECT= kms-firmware -GH_TAGNAME= 858e54d +GH_TAGNAME= bcb71d0 .include Modified: head/graphics/gpu-firmware-kmod/distinfo ============================================================================== --- head/graphics/gpu-firmware-kmod/distinfo Thu Jun 20 22:06:56 2019 (r504741) +++ head/graphics/gpu-firmware-kmod/distinfo Thu Jun 20 22:29:51 2019 (r504742) @@ -1,3 +1,3 @@ -TIMESTAMP = 1550637480 -SHA256 (FreeBSDDesktop-kms-firmware-g20190219-858e54d_GH0.tar.gz) = 06005a1f574f668a4a46a771f532f64aedf4b69369fee568948d6df4dde63f3a -SIZE (FreeBSDDesktop-kms-firmware-g20190219-858e54d_GH0.tar.gz) = 18183147 +TIMESTAMP = 1561068942 +SHA256 (FreeBSDDesktop-kms-firmware-g20190620-bcb71d0_GH0.tar.gz) = 59fc6cef171abf8c24a198a41316807a2f6d72a862821e430997c46778aeeef3 +SIZE (FreeBSDDesktop-kms-firmware-g20190620-bcb71d0_GH0.tar.gz) = 18207574 Modified: head/graphics/gpu-firmware-kmod/pkg-plist ============================================================================== --- head/graphics/gpu-firmware-kmod/pkg-plist Thu Jun 20 22:06:56 2019 (r504741) +++ head/graphics/gpu-firmware-kmod/pkg-plist Thu Jun 20 22:29:51 2019 (r504742) @@ -174,7 +174,6 @@ /%%KMODDIR%%/amdgpu_raven2_mec_bin.ko /%%KMODDIR%%/amdgpu_raven2_pfp_bin.ko /%%KMODDIR%%/amdgpu_raven2_rlc_bin.ko -/%%KMODDIR%%/amdgpu_raven2_sdma1_bin.ko /%%KMODDIR%%/amdgpu_raven2_sdma_bin.ko /%%KMODDIR%%/amdgpu_raven2_vcn_bin.ko /%%KMODDIR%%/amdgpu_raven_asd_bin.ko From owner-svn-ports-all@freebsd.org Thu Jun 20 22:54:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4F1E315C9EC9; Thu, 20 Jun 2019 22:54:27 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BF1666B250; Thu, 20 Jun 2019 22:54:26 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 87DAD1AA9B; Thu, 20 Jun 2019 22:54:26 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KMsQvj096467; Thu, 20 Jun 2019 22:54:26 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KMsQgx096465; Thu, 20 Jun 2019 22:54:26 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906202254.x5KMsQgx096465@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Thu, 20 Jun 2019 22:54:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504743 - head/databases/py-cassandra-driver X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/databases/py-cassandra-driver X-SVN-Commit-Revision: 504743 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BF1666B250 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 22:54:27 -0000 Author: kai Date: Thu Jun 20 22:54:25 2019 New Revision: 504743 URL: https://svnweb.freebsd.org/changeset/ports/504743 Log: databases/py-cassandra-driver: Update to 3.18.0 Changelog: https://github.com/datastax/python-driver/blob/3.18.0/CHANGELOG.rst PR: 238544 Submitted by: Sergey Akhmatov (maintainer) Modified: head/databases/py-cassandra-driver/Makefile head/databases/py-cassandra-driver/distinfo Modified: head/databases/py-cassandra-driver/Makefile ============================================================================== --- head/databases/py-cassandra-driver/Makefile Thu Jun 20 22:29:51 2019 (r504742) +++ head/databases/py-cassandra-driver/Makefile Thu Jun 20 22:54:25 2019 (r504743) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cassandra-driver -DISTVERSION= 3.17.1 +DISTVERSION= 3.18.0 CATEGORIES= databases python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/databases/py-cassandra-driver/distinfo ============================================================================== --- head/databases/py-cassandra-driver/distinfo Thu Jun 20 22:29:51 2019 (r504742) +++ head/databases/py-cassandra-driver/distinfo Thu Jun 20 22:54:25 2019 (r504743) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557134465 -SHA256 (cassandra-driver-3.17.1.tar.gz) = 71d79568ecbcabbd7fdbe4f488c6439e55cc6b457178ba6cb831bdbf4fb5d7f8 -SIZE (cassandra-driver-3.17.1.tar.gz) = 231103 +TIMESTAMP = 1560416598 +SHA256 (cassandra-driver-3.18.0.tar.gz) = 71c5bcded827deaa5da8fcca84891eb9024520653f49c9ce49d508439b3b2af1 +SIZE (cassandra-driver-3.18.0.tar.gz) = 234093 From owner-svn-ports-all@freebsd.org Thu Jun 20 23:19:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8792015CA626; Thu, 20 Jun 2019 23:19:59 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2975B6BFA1; Thu, 20 Jun 2019 23:19:59 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 020C01ADFF; Thu, 20 Jun 2019 23:19:59 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KNJwGc007343; Thu, 20 Jun 2019 23:19:58 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KNJwlD007341; Thu, 20 Jun 2019 23:19:58 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906202319.x5KNJwlD007341@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Thu, 20 Jun 2019 23:19:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504744 - in head/audio/siren: . files X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/audio/siren: . files X-SVN-Commit-Revision: 504744 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2975B6BFA1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 23:19:59 -0000 Author: kai Date: Thu Jun 20 23:19:58 2019 New Revision: 504744 URL: https://svnweb.freebsd.org/changeset/ports/504744 Log: audio/siren: Update to 0.9 While I'm here: * Remove the patch for the configure script that has been merged by upstream Changelog: https://www.kariliq.nl/hg/siren/raw-file/siren-0.9/CHANGES PR: 238619 Submitted by: Thomas Merkel Deleted: head/audio/siren/files/ Modified: head/audio/siren/Makefile head/audio/siren/distinfo Modified: head/audio/siren/Makefile ============================================================================== --- head/audio/siren/Makefile Thu Jun 20 22:54:25 2019 (r504743) +++ head/audio/siren/Makefile Thu Jun 20 23:19:58 2019 (r504744) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= siren -PORTVERSION= 0.7 -PORTREVISION= 4 +PORTVERSION= 0.9 CATEGORIES= audio MASTER_SITES= http://www.kariliq.nl/${PORTNAME}/dist/ Modified: head/audio/siren/distinfo ============================================================================== --- head/audio/siren/distinfo Thu Jun 20 22:54:25 2019 (r504743) +++ head/audio/siren/distinfo Thu Jun 20 23:19:58 2019 (r504744) @@ -1,3 +1,3 @@ -TIMESTAMP = 1495297978 -SHA256 (siren-0.7.tar.gz) = 9be67c83c9ef127127ce4645a5919bd3f963e47d3c12492bc8fbc7c1d20b3d3c -SIZE (siren-0.7.tar.gz) = 99891 +TIMESTAMP = 1560698134 +SHA256 (siren-0.9.tar.gz) = 392c707de8854828ccbcca1e4f3c07e68326f9794edb82235a453ef6ee6c421b +SIZE (siren-0.9.tar.gz) = 101368 From owner-svn-ports-all@freebsd.org Thu Jun 20 23:29:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3275515CA84B; Thu, 20 Jun 2019 23:29:27 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C7CBF6C3D9; Thu, 20 Jun 2019 23:29:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5E0241AFBC; Thu, 20 Jun 2019 23:29:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KNTQ7Q012860; Thu, 20 Jun 2019 23:29:26 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KNTQW2012858; Thu, 20 Jun 2019 23:29:26 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906202329.x5KNTQW2012858@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 23:29:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504745 - head/misc/bitwise X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/bitwise X-SVN-Commit-Revision: 504745 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C7CBF6C3D9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 23:29:27 -0000 Author: yuri Date: Thu Jun 20 23:29:25 2019 New Revision: 504745 URL: https://svnweb.freebsd.org/changeset/ports/504745 Log: misc/bitwise: Update 0.20 -> 0.21 Reported by: portscout Modified: head/misc/bitwise/Makefile head/misc/bitwise/distinfo Modified: head/misc/bitwise/Makefile ============================================================================== --- head/misc/bitwise/Makefile Thu Jun 20 23:19:58 2019 (r504744) +++ head/misc/bitwise/Makefile Thu Jun 20 23:29:25 2019 (r504745) @@ -2,7 +2,7 @@ PORTNAME= bitwise DISTVERSIONPREFIX= v -DISTVERSION= 0.20 +DISTVERSION= 0.21 CATEGORIES= misc MAINTAINER= yuri@FreeBSD.org Modified: head/misc/bitwise/distinfo ============================================================================== --- head/misc/bitwise/distinfo Thu Jun 20 23:19:58 2019 (r504744) +++ head/misc/bitwise/distinfo Thu Jun 20 23:29:25 2019 (r504745) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561001054 -SHA256 (mellowcandle-bitwise-v0.20_GH0.tar.gz) = 6faaf815a7e25f7a5cdc6a9cf3f65b745e15f958465eeb4c6392ab7bbe898d8a -SIZE (mellowcandle-bitwise-v0.20_GH0.tar.gz) = 263288 +TIMESTAMP = 1561073167 +SHA256 (mellowcandle-bitwise-v0.21_GH0.tar.gz) = db0f85d7f44bc8ddc6bcd84aa9112dd2e824f75be107789603b8356928d49586 +SIZE (mellowcandle-bitwise-v0.21_GH0.tar.gz) = 263304 From owner-svn-ports-all@freebsd.org Thu Jun 20 23:34:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 028AD15CAA5B; Thu, 20 Jun 2019 23:34:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9CD106C88F; Thu, 20 Jun 2019 23:34:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 743921B15C; Thu, 20 Jun 2019 23:34:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KNYUR2017896; Thu, 20 Jun 2019 23:34:30 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KNYU9s017895; Thu, 20 Jun 2019 23:34:30 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906202334.x5KNYU9s017895@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 23:34:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504746 - head/devel/py-pydantic X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-pydantic X-SVN-Commit-Revision: 504746 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9CD106C88F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 23:34:31 -0000 Author: yuri Date: Thu Jun 20 23:34:29 2019 New Revision: 504746 URL: https://svnweb.freebsd.org/changeset/ports/504746 Log: devel/py-pydantic: Update 0.28 -> 0.29 Reported by: portscout Modified: head/devel/py-pydantic/Makefile head/devel/py-pydantic/distinfo Modified: head/devel/py-pydantic/Makefile ============================================================================== --- head/devel/py-pydantic/Makefile Thu Jun 20 23:29:25 2019 (r504745) +++ head/devel/py-pydantic/Makefile Thu Jun 20 23:34:29 2019 (r504746) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= pydantic -DISTVERSION= 0.28 +DISTVERSION= 0.29 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-pydantic/distinfo ============================================================================== --- head/devel/py-pydantic/distinfo Thu Jun 20 23:29:25 2019 (r504745) +++ head/devel/py-pydantic/distinfo Thu Jun 20 23:34:29 2019 (r504746) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560469353 -SHA256 (pydantic-0.28.tar.gz) = 60fe5aa17ecb5ba949e7e1e1f9b9500dae780d6c79c798bfd78ac5dd9f9d9517 -SIZE (pydantic-0.28.tar.gz) = 62480 +TIMESTAMP = 1561073391 +SHA256 (pydantic-0.29.tar.gz) = 6901572483a00d53aaba9121c6261017334511c44864b00b36714b32cc7af712 +SIZE (pydantic-0.29.tar.gz) = 64497 From owner-svn-ports-all@freebsd.org Thu Jun 20 23:36:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 16D9915CAB02; Thu, 20 Jun 2019 23:36:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B19EE6C9E0; Thu, 20 Jun 2019 23:36:58 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8D0A81B162; Thu, 20 Jun 2019 23:36:58 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KNawGW018123; Thu, 20 Jun 2019 23:36:58 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KNawgP018121; Thu, 20 Jun 2019 23:36:58 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906202336.x5KNawgP018121@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 23:36:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504747 - head/math/py-chaospy X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/py-chaospy X-SVN-Commit-Revision: 504747 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B19EE6C9E0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 23:36:59 -0000 Author: yuri Date: Thu Jun 20 23:36:57 2019 New Revision: 504747 URL: https://svnweb.freebsd.org/changeset/ports/504747 Log: math/py-chaospy: Update 3.0.4 -> 3.0.5 Reported by: portscout Modified: head/math/py-chaospy/Makefile head/math/py-chaospy/distinfo Modified: head/math/py-chaospy/Makefile ============================================================================== --- head/math/py-chaospy/Makefile Thu Jun 20 23:34:29 2019 (r504746) +++ head/math/py-chaospy/Makefile Thu Jun 20 23:36:57 2019 (r504747) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= chaospy -DISTVERSION= 3.0.4 +DISTVERSION= 3.0.5 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,7 +12,6 @@ COMMENT= Toolbox for performing uncertainty quantifica LICENSE= MIT BUILD_DEPENDS= ${PYNUMPY} \ - ${PYTHON_PKGNAMEPREFIX}networkx>0:math/py-networkx@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}scipy>0:science/py-scipy@${PY_FLAVOR} USES= python Modified: head/math/py-chaospy/distinfo ============================================================================== --- head/math/py-chaospy/distinfo Thu Jun 20 23:34:29 2019 (r504746) +++ head/math/py-chaospy/distinfo Thu Jun 20 23:36:57 2019 (r504747) @@ -1,3 +1,3 @@ -TIMESTAMP = 1550811747 -SHA256 (chaospy-3.0.4.tar.gz) = 1f104179bbce3cbef1dde6e5ebf4f9374a3d280a48d50c9a29fcd6261395488e -SIZE (chaospy-3.0.4.tar.gz) = 145306 +TIMESTAMP = 1561073697 +SHA256 (chaospy-3.0.5.tar.gz) = 86480c0fcf499df47bcdcb7ba50f1276c480189ee36f931fddf8aef81e6b6f1c +SIZE (chaospy-3.0.5.tar.gz) = 146518 From owner-svn-ports-all@freebsd.org Thu Jun 20 23:38:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B832115CABA1; Thu, 20 Jun 2019 23:38:37 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5E8616CAFF; Thu, 20 Jun 2019 23:38:37 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3A4DD1B163; Thu, 20 Jun 2019 23:38:37 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KNcbXv018310; Thu, 20 Jun 2019 23:38:37 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KNcaed018307; Thu, 20 Jun 2019 23:38:36 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906202338.x5KNcaed018307@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Thu, 20 Jun 2019 23:38:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504748 - head/math/calc X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/math/calc X-SVN-Commit-Revision: 504748 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5E8616CAFF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 23:38:37 -0000 Author: kai Date: Thu Jun 20 23:38:36 2019 New Revision: 504748 URL: https://svnweb.freebsd.org/changeset/ports/504748 Log: math/calc: Update to 2.12.7.2 * Add path to license file while I'm here. Changelog: https://github.com/lcn2/calc/blob/2.12.7.2/CHANGES PR: 235800 Submitted by: Darren Mulligan Approved by: johans (maintainer timeout) Modified: head/math/calc/Makefile head/math/calc/distinfo Modified: head/math/calc/Makefile ============================================================================== --- head/math/calc/Makefile Thu Jun 20 23:36:57 2019 (r504747) +++ head/math/calc/Makefile Thu Jun 20 23:38:36 2019 (r504748) @@ -2,14 +2,14 @@ # $FreeBSD$ PORTNAME= calc -PORTVERSION= 2.12.6.5 -PORTREVISION= 1 +PORTVERSION= 2.12.7.2 CATEGORIES= math MAINTAINER= johans@FreeBSD.org COMMENT= Arbitrary precision calculator LICENSE= LGPL21 +LICENSE_FILE= ${WRKSRC}/COPYING-LGPL USES= gmake tar:bzip2 readline USE_LDCONFIG= yes Modified: head/math/calc/distinfo ============================================================================== --- head/math/calc/distinfo Thu Jun 20 23:36:57 2019 (r504747) +++ head/math/calc/distinfo Thu Jun 20 23:38:36 2019 (r504748) @@ -1,3 +1,3 @@ -TIMESTAMP = 1517913994 -SHA256 (lcn2-calc-2.12.6.5_GH0.tar.gz) = c87697db966b83e499e046f43e3d772fbcab4b29e452084645885664fa329807 -SIZE (lcn2-calc-2.12.6.5_GH0.tar.gz) = 1112269 +TIMESTAMP = 1550396076 +SHA256 (lcn2-calc-2.12.7.2_GH0.tar.gz) = f2516a3d54941ba88ed877138bece9b1daba13a863f7c1de0d6e0962647aa8cf +SIZE (lcn2-calc-2.12.7.2_GH0.tar.gz) = 1117829 From owner-svn-ports-all@freebsd.org Thu Jun 20 23:47:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 929EB15CADCD; Thu, 20 Jun 2019 23:47:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 38FE76CF17; Thu, 20 Jun 2019 23:47:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0F6C61B325; Thu, 20 Jun 2019 23:47:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KNlPFn023591; Thu, 20 Jun 2019 23:47:25 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KNlP2S023589; Thu, 20 Jun 2019 23:47:25 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906202347.x5KNlP2S023589@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 23:47:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504749 - head/math/py-deap X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/py-deap X-SVN-Commit-Revision: 504749 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 38FE76CF17 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 23:47:26 -0000 Author: yuri Date: Thu Jun 20 23:47:25 2019 New Revision: 504749 URL: https://svnweb.freebsd.org/changeset/ports/504749 Log: math/py-deap: Update 1.2.2 -> 1.3.0 Reported by: portscout Modified: head/math/py-deap/Makefile head/math/py-deap/distinfo Modified: head/math/py-deap/Makefile ============================================================================== --- head/math/py-deap/Makefile Thu Jun 20 23:38:36 2019 (r504748) +++ head/math/py-deap/Makefile Thu Jun 20 23:47:25 2019 (r504749) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= deap -DISTVERSION= 1.2.2 -PORTREVISION= 1 +DISTVERSION= 1.3.0 CATEGORIES= math biology science devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/math/py-deap/distinfo ============================================================================== --- head/math/py-deap/distinfo Thu Jun 20 23:38:36 2019 (r504748) +++ head/math/py-deap/distinfo Thu Jun 20 23:47:25 2019 (r504749) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544165307 -SHA256 (deap-1.2.2.tar.gz) = 95c63e66d755ec206c80fdb2908851c0bef420ee8651ad7be4f0578e9e909bcf -SIZE (deap-1.2.2.tar.gz) = 936584 +TIMESTAMP = 1561074357 +SHA256 (deap-1.3.0.tar.gz) = cd0fd7bccf7837b9e6a666b75e1c3a629fa3f5bc346cb90a9edd8cd56f085980 +SIZE (deap-1.3.0.tar.gz) = 1059890 From owner-svn-ports-all@freebsd.org Thu Jun 20 23:52:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8EEA15CB037; Thu, 20 Jun 2019 23:52:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4E2EB6D323; Thu, 20 Jun 2019 23:52:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 224061B4C1; Thu, 20 Jun 2019 23:52:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KNqPt0028462; Thu, 20 Jun 2019 23:52:25 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KNqPZe028459; Thu, 20 Jun 2019 23:52:25 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906202352.x5KNqPZe028459@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 20 Jun 2019 23:52:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504750 - head/math/osi X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/osi X-SVN-Commit-Revision: 504750 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4E2EB6D323 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 23:52:26 -0000 Author: yuri Date: Thu Jun 20 23:52:25 2019 New Revision: 504750 URL: https://svnweb.freebsd.org/changeset/ports/504750 Log: math/osi: Update 0.107.9 -> 0.108.4 Reported by: portscout Modified: head/math/osi/Makefile head/math/osi/distinfo head/math/osi/pkg-plist Modified: head/math/osi/Makefile ============================================================================== --- head/math/osi/Makefile Thu Jun 20 23:47:25 2019 (r504749) +++ head/math/osi/Makefile Thu Jun 20 23:52:25 2019 (r504750) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= Osi -DISTVERSION= 0.107.9 -PORTREVISION= 2 +DISTVERSION= 0.108.4 CATEGORIES= math MASTER_SITES= https://www.coin-or.org/download/source/${PORTNAME}/ PKGNAMEPREFIX= coin-or- Modified: head/math/osi/distinfo ============================================================================== --- head/math/osi/distinfo Thu Jun 20 23:47:25 2019 (r504749) +++ head/math/osi/distinfo Thu Jun 20 23:52:25 2019 (r504750) @@ -1,3 +1,3 @@ -TIMESTAMP = 1544415432 -SHA256 (Osi-0.107.9.tgz) = 6d61fb27e2dccf6574fcc4a03b7a0083f10e578e5e5b2abae22da11489571c05 -SIZE (Osi-0.107.9.tgz) = 7513203 +TIMESTAMP = 1561074521 +SHA256 (Osi-0.108.4.tgz) = 45a72e7019d33b9cf9c3f9fde30a9cb1e822e3b6897239c7dd67bc0060837c8d +SIZE (Osi-0.108.4.tgz) = 7516391 Modified: head/math/osi/pkg-plist ============================================================================== --- head/math/osi/pkg-plist Thu Jun 20 23:47:25 2019 (r504749) +++ head/math/osi/pkg-plist Thu Jun 20 23:52:25 2019 (r504750) @@ -15,9 +15,9 @@ include/coin/OsiSolverParameters.hpp include/coin/OsiUnitTests.hpp lib/libOsi.so lib/libOsi.so.1 -lib/libOsi.so.1.12.9 +lib/libOsi.so.1.13.4 lib/libOsiCommonTests.so lib/libOsiCommonTests.so.1 -lib/libOsiCommonTests.so.1.12.9 +lib/libOsiCommonTests.so.1.13.4 libdata/pkgconfig/osi-unittests.pc libdata/pkgconfig/osi.pc From owner-svn-ports-all@freebsd.org Thu Jun 20 23:53:58 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9FA6415CB145; Thu, 20 Jun 2019 23:53:58 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 465D96D5D6; Thu, 20 Jun 2019 23:53:58 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 206501B4C6; Thu, 20 Jun 2019 23:53:58 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5KNrwas028704; Thu, 20 Jun 2019 23:53:58 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5KNrvdD028703; Thu, 20 Jun 2019 23:53:57 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201906202353.x5KNrvdD028703@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Thu, 20 Jun 2019 23:53:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504751 - head/net/py-kombu X-SVN-Group: ports-head X-SVN-Commit-Author: wen X-SVN-Commit-Paths: head/net/py-kombu X-SVN-Commit-Revision: 504751 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 465D96D5D6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Jun 2019 23:53:58 -0000 Author: wen Date: Thu Jun 20 23:53:57 2019 New Revision: 504751 URL: https://svnweb.freebsd.org/changeset/ports/504751 Log: - Update to 4.6.3 PR: 234090 Submitted by: wenheping2000@hotmail.com(myself) Approved by: maintainer(timeout, > 6 months) Modified: head/net/py-kombu/Makefile head/net/py-kombu/distinfo Modified: head/net/py-kombu/Makefile ============================================================================== --- head/net/py-kombu/Makefile Thu Jun 20 23:52:25 2019 (r504750) +++ head/net/py-kombu/Makefile Thu Jun 20 23:53:57 2019 (r504751) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= kombu -PORTVERSION= 4.1.0 +PORTVERSION= 4.6.3 CATEGORIES= net python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net/py-kombu/distinfo ============================================================================== --- head/net/py-kombu/distinfo Thu Jun 20 23:52:25 2019 (r504750) +++ head/net/py-kombu/distinfo Thu Jun 20 23:53:57 2019 (r504751) @@ -1,3 +1,3 @@ -TIMESTAMP = 1513951741 -SHA256 (kombu-4.1.0.tar.gz) = 4249d9dd9dbf1fcec471d1c2def20653c9310dd1a217272d77e4844f9d5273cb -SIZE (kombu-4.1.0.tar.gz) = 421875 +TIMESTAMP = 1561074134 +SHA256 (kombu-4.6.3.tar.gz) = eb365ea795cd7e629ba2f1f398e0c3ba354b91ef4de225ffdf6ab45fdfc7d581 +SIZE (kombu-4.6.3.tar.gz) = 427754 From owner-svn-ports-all@freebsd.org Fri Jun 21 00:33:21 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1392C15CC0FA; Fri, 21 Jun 2019 00:33:21 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AE5C76EA9D; Fri, 21 Jun 2019 00:33:20 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A3A6F1BBC3; Fri, 21 Jun 2019 00:33:20 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L0XK8u049911; Fri, 21 Jun 2019 00:33:20 GMT (envelope-from meta@FreeBSD.org) Received: (from meta@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L0XKIZ049909; Fri, 21 Jun 2019 00:33:20 GMT (envelope-from meta@FreeBSD.org) Message-Id: <201906210033.x5L0XKIZ049909@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: meta set sender to meta@FreeBSD.org using -f From: Koichiro Iwao Date: Fri, 21 Jun 2019 00:33:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504752 - head/sysutils/py-supervisor X-SVN-Group: ports-head X-SVN-Commit-Author: meta X-SVN-Commit-Paths: head/sysutils/py-supervisor X-SVN-Commit-Revision: 504752 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AE5C76EA9D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.98)[-0.977,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 00:33:21 -0000 Author: meta Date: Fri Jun 21 00:33:20 2019 New Revision: 504752 URL: https://svnweb.freebsd.org/changeset/ports/504752 Log: sysutils/py-supervisor: Update to 4.0.3 Also, - Define multiple LICENSEs - Pet portlint PR: 238347 Submitted by: John W. O'Brien Approved by: maintainer timeout Relnotes: https://github.com/Supervisor/supervisor/blob/4.0.3/CHANGES.rst Modified: head/sysutils/py-supervisor/Makefile head/sysutils/py-supervisor/distinfo Modified: head/sysutils/py-supervisor/Makefile ============================================================================== --- head/sysutils/py-supervisor/Makefile Thu Jun 20 23:53:57 2019 (r504751) +++ head/sysutils/py-supervisor/Makefile Fri Jun 21 00:33:20 2019 (r504752) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= supervisor -PORTVERSION= 3.3.4 +PORTVERSION= 4.0.3 PORTEPOCH= 1 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP @@ -11,11 +11,20 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= hizel@vyborg.ru COMMENT= System for controlling process state under UNIX -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}meld3>=0.6.5:www/py-meld3@${PY_FLAVOR} +LICENSE= REPOZE BSD3CLAUSE MEDUSA +LICENSE_COMB= multi +LICENSE_NAME_REPOZE= Repoze License +LICENSE_NAME_MEDUSA= Medusa License +LICENSE_FILE= ${WRKSRC}/LICENSES.txt +LICENSE_PERMS_REPOZE= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept +LICENSE_PERMS_MEDUSA= dist-mirror pkg-mirror auto-accept + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}meld3>=1.0.0:www/py-meld3@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>=0.5.0:devel/py-mock@${PY_FLAVOR} -USES= python:2.7 shebangfix +USES= python shebangfix USE_PYTHON= distutils autoplist + PIDDIR?= /var/run/supervisor NO_ARCH= yes Modified: head/sysutils/py-supervisor/distinfo ============================================================================== --- head/sysutils/py-supervisor/distinfo Thu Jun 20 23:53:57 2019 (r504751) +++ head/sysutils/py-supervisor/distinfo Fri Jun 21 00:33:20 2019 (r504752) @@ -1,3 +1,3 @@ -TIMESTAMP = 1534438600 -SHA256 (supervisor-3.3.4.tar.gz) = 212201a3fd1d35c150ef0c35bf0676fd1a6c195fb60bf0f2147fe7dbd317e672 -SIZE (supervisor-3.3.4.tar.gz) = 419794 +TIMESTAMP = 1559515431 +SHA256 (supervisor-4.0.3.tar.gz) = f768abc073e8702892718938b8a0ab98ebcb91c2afcb39bf2cb570d3eb51149e +SIZE (supervisor-4.0.3.tar.gz) = 435960 From owner-svn-ports-all@freebsd.org Fri Jun 21 01:36:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A905415CD037; Fri, 21 Jun 2019 01:36:31 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B1D970219; Fri, 21 Jun 2019 01:36:31 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 396DE1C5B6; Fri, 21 Jun 2019 01:36:31 +0000 (UTC) (envelope-from jrm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L1aVLW081526; Fri, 21 Jun 2019 01:36:31 GMT (envelope-from jrm@FreeBSD.org) Received: (from jrm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L1aVEJ081525; Fri, 21 Jun 2019 01:36:31 GMT (envelope-from jrm@FreeBSD.org) Message-Id: <201906210136.x5L1aVEJ081525@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jrm set sender to jrm@FreeBSD.org using -f From: Joseph Mingrone Date: Fri, 21 Jun 2019 01:36:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504753 - head X-SVN-Group: ports-head X-SVN-Commit-Author: jrm X-SVN-Commit-Paths: head X-SVN-Commit-Revision: 504753 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4B1D970219 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 01:36:31 -0000 Author: jrm Date: Fri Jun 21 01:36:30 2019 New Revision: 504753 URL: https://svnweb.freebsd.org/changeset/ports/504753 Log: .gitauthors: Add Chuck Silvers (chs) Modified: head/.gitauthors (contents, props changed) Modified: head/.gitauthors ============================================================================== --- head/.gitauthors Fri Jun 21 00:33:20 2019 (r504752) +++ head/.gitauthors Fri Jun 21 01:36:30 2019 (r504753) @@ -143,6 +143,7 @@ chinsan = Chin-San Huang chm = Christoph Herrmann chmr = Christoph Robitschko chris = Chris Costello +chs = Chuck Silvers chuck = Chuck Tuffli chuckr = Chuck Robey cjc = Crist J. Clark From owner-svn-ports-all@freebsd.org Fri Jun 21 02:15:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6335E15CD902; Fri, 21 Jun 2019 02:15:01 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EEB6D710CB; Fri, 21 Jun 2019 02:15:00 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BE6E01CC61; Fri, 21 Jun 2019 02:15:00 +0000 (UTC) (envelope-from ler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L2F04W002250; Fri, 21 Jun 2019 02:15:00 GMT (envelope-from ler@FreeBSD.org) Received: (from ler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L2F0hx002249; Fri, 21 Jun 2019 02:15:00 GMT (envelope-from ler@FreeBSD.org) Message-Id: <201906210215.x5L2F0hx002249@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ler set sender to ler@FreeBSD.org using -f From: Larry Rosenman Date: Fri, 21 Jun 2019 02:15:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504754 - in head/devel/cdecl: . files X-SVN-Group: ports-head X-SVN-Commit-Author: ler X-SVN-Commit-Paths: in head/devel/cdecl: . files X-SVN-Commit-Revision: 504754 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EEB6D710CB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 02:15:01 -0000 Author: ler Date: Fri Jun 21 02:15:00 2019 New Revision: 504754 URL: https://svnweb.freebsd.org/changeset/ports/504754 Log: devel/cdecl: update to 6.4.1. Fixed use of GNU Readline Several things relating to the use of GNU Readline were fixed. (I (ler) reported the warnings, and bison warnings that were also fixed). Deleted: head/devel/cdecl/files/ Modified: head/devel/cdecl/Makefile head/devel/cdecl/distinfo Modified: head/devel/cdecl/Makefile ============================================================================== --- head/devel/cdecl/Makefile Fri Jun 21 01:36:30 2019 (r504753) +++ head/devel/cdecl/Makefile Fri Jun 21 02:15:00 2019 (r504754) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= cdecl -PORTVERSION= 6.4 -PORTREVISION= 1 +PORTVERSION= 6.4.1 DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= devel Modified: head/devel/cdecl/distinfo ============================================================================== --- head/devel/cdecl/distinfo Fri Jun 21 01:36:30 2019 (r504753) +++ head/devel/cdecl/distinfo Fri Jun 21 02:15:00 2019 (r504754) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560949538 -SHA256 (paul-j-lucas-cdecl-cdecl-6.4_GH0.tar.gz) = a5578736866ba02a8a7149b72325d522a76af73cefd696fdc0e7e899b4239eb7 -SIZE (paul-j-lucas-cdecl-cdecl-6.4_GH0.tar.gz) = 374727 +TIMESTAMP = 1561082970 +SHA256 (paul-j-lucas-cdecl-cdecl-6.4.1_GH0.tar.gz) = 980a90341d55671573fd44964c7c7eca2be8b3a7846ca33d5cb96356a092561a +SIZE (paul-j-lucas-cdecl-cdecl-6.4.1_GH0.tar.gz) = 376164 From owner-svn-ports-all@freebsd.org Fri Jun 21 04:52:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7A01415D079F; Fri, 21 Jun 2019 04:52:45 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AD9DC7643A; Fri, 21 Jun 2019 04:52:44 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8885A1E799; Fri, 21 Jun 2019 04:52:44 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L4qi9s086028; Fri, 21 Jun 2019 04:52:44 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L4qi5g086026; Fri, 21 Jun 2019 04:52:44 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201906210452.x5L4qi5g086026@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Fri, 21 Jun 2019 04:52:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504755 - head/shells/ksh93-devel X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: head/shells/ksh93-devel X-SVN-Commit-Revision: 504755 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AD9DC7643A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 04:52:45 -0000 Author: cy Date: Fri Jun 21 04:52:43 2019 New Revision: 504755 URL: https://svnweb.freebsd.org/changeset/ports/504755 Log: Update to the latest att/ast github commit. Modified: head/shells/ksh93-devel/Makefile (contents, props changed) head/shells/ksh93-devel/distinfo (contents, props changed) Modified: head/shells/ksh93-devel/Makefile ============================================================================== --- head/shells/ksh93-devel/Makefile Fri Jun 21 02:15:00 2019 (r504754) +++ head/shells/ksh93-devel/Makefile Fri Jun 21 04:52:43 2019 (r504755) @@ -12,8 +12,8 @@ LICENSE= EPL USES= compiler:c11 meson ninja python:build -HASH= a0651eb -AST_COMMIT_DATE= 2019.06.08 +HASH= ea69da1 +AST_COMMIT_DATE= 2019.06.20 USE_GITHUB= yes GH_ACCOUNT= att Modified: head/shells/ksh93-devel/distinfo ============================================================================== --- head/shells/ksh93-devel/distinfo Fri Jun 21 02:15:00 2019 (r504754) +++ head/shells/ksh93-devel/distinfo Fri Jun 21 04:52:43 2019 (r504755) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560044106 -SHA256 (att-ast-2019.06.08-a0651eb_GH0.tar.gz) = c40e4fd8555a790b2fe8c5d32f39922a3d307d89e4a80ac679598b13e8a2a4b8 -SIZE (att-ast-2019.06.08-a0651eb_GH0.tar.gz) = 2039552 +TIMESTAMP = 1561090950 +SHA256 (att-ast-2019.06.20-ea69da1_GH0.tar.gz) = 8b6ed36502f0f74a0e50aafad8639c5d91ffaf73b18c04cddc65131748019096 +SIZE (att-ast-2019.06.20-ea69da1_GH0.tar.gz) = 2021877 From owner-svn-ports-all@freebsd.org Fri Jun 21 04:52:58 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2865F15D07D6; Fri, 21 Jun 2019 04:52:58 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9A6D67651C; Fri, 21 Jun 2019 04:52:57 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 78C8B1E79A; Fri, 21 Jun 2019 04:52:57 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L4qvGh086154; Fri, 21 Jun 2019 04:52:57 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L4qvsT086152; Fri, 21 Jun 2019 04:52:57 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201906210452.x5L4qvsT086152@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Fri, 21 Jun 2019 04:52:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504756 - head/security/krb5-devel X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: head/security/krb5-devel X-SVN-Commit-Revision: 504756 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9A6D67651C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.955,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 04:52:58 -0000 Author: cy Date: Fri Jun 21 04:52:56 2019 New Revision: 504756 URL: https://svnweb.freebsd.org/changeset/ports/504756 Log: Update to the latest MIT/KRB5 github commit. Modified: head/security/krb5-devel/Makefile (contents, props changed) head/security/krb5-devel/distinfo (contents, props changed) Modified: head/security/krb5-devel/Makefile ============================================================================== --- head/security/krb5-devel/Makefile Fri Jun 21 04:52:43 2019 (r504755) +++ head/security/krb5-devel/Makefile Fri Jun 21 04:52:56 2019 (r504756) @@ -7,8 +7,8 @@ CATEGORIES= security .if !defined(MASTERDIR) PKGNAMESUFFIX= -devel .endif -HASH= b61c055 -MIT_COMMIT_DATE= 2019.05.08 +HASH= 5c52e28 +MIT_COMMIT_DATE= 2019.06.20 PATCH_SITES= http://web.mit.edu/kerberos/advisories/ PATCH_DIST_STRIP= -p2 Modified: head/security/krb5-devel/distinfo ============================================================================== --- head/security/krb5-devel/distinfo Fri Jun 21 04:52:43 2019 (r504755) +++ head/security/krb5-devel/distinfo Fri Jun 21 04:52:56 2019 (r504756) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560044186 -SHA256 (krb5-krb5-1.18.2019.05.08-b61c055_GH0.tar.gz) = 15e006db112f1b27c93a39051e502560a4db71b9ae246293c27593855d0d7689 -SIZE (krb5-krb5-1.18.2019.05.08-b61c055_GH0.tar.gz) = 5148482 +TIMESTAMP = 1561090964 +SHA256 (krb5-krb5-1.18.2019.06.20-5c52e28_GH0.tar.gz) = 139244a7d4fef34f4a7801be620a8df607da3dedb0b20599d1b3691e1d3b27c2 +SIZE (krb5-krb5-1.18.2019.06.20-5c52e28_GH0.tar.gz) = 5148184 From owner-svn-ports-all@freebsd.org Fri Jun 21 04:53:16 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6AA3015D0811; Fri, 21 Jun 2019 04:53:16 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0F70E76606; Fri, 21 Jun 2019 04:53:16 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DB7511E79B; Fri, 21 Jun 2019 04:53:15 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L4rFmq086325; Fri, 21 Jun 2019 04:53:15 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L4rFk1086321; Fri, 21 Jun 2019 04:53:15 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201906210453.x5L4rFk1086321@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Fri, 21 Jun 2019 04:53:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504757 - in head/sysutils: cfengine-devel cfengine-masterfiles-devel X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: in head/sysutils: cfengine-devel cfengine-masterfiles-devel X-SVN-Commit-Revision: 504757 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0F70E76606 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 04:53:16 -0000 Author: cy Date: Fri Jun 21 04:53:14 2019 New Revision: 504757 URL: https://svnweb.freebsd.org/changeset/ports/504757 Log: Update to the latest cfengine commits on github. Modified: head/sysutils/cfengine-devel/Makefile (contents, props changed) head/sysutils/cfengine-devel/distinfo (contents, props changed) head/sysutils/cfengine-masterfiles-devel/Makefile (contents, props changed) head/sysutils/cfengine-masterfiles-devel/distinfo (contents, props changed) Modified: head/sysutils/cfengine-devel/Makefile ============================================================================== --- head/sysutils/cfengine-devel/Makefile Fri Jun 21 04:52:56 2019 (r504756) +++ head/sysutils/cfengine-devel/Makefile Fri Jun 21 04:53:14 2019 (r504757) @@ -6,8 +6,8 @@ PORTVERSION= 3.${CFENGINE_COMMIT_DATE} CATEGORIES= sysutils MASTER_SITES= https://s3.amazonaws.com/cfengine-package-repos/tarballs/ PKGNAMESUFFIX= -devel -HASH= 9ee3f3f -CFENGINE_COMMIT_DATE= 2019.06.08 +HASH= cfdbde3 +CFENGINE_COMMIT_DATE= 2019.06.20 MAINTAINER= cy@FreeBSD.org # gjb@FreeBSD.org is also committer for this port Modified: head/sysutils/cfengine-devel/distinfo ============================================================================== --- head/sysutils/cfengine-devel/distinfo Fri Jun 21 04:52:56 2019 (r504756) +++ head/sysutils/cfengine-devel/distinfo Fri Jun 21 04:53:14 2019 (r504757) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560044316 -SHA256 (cfengine-core-3.2019.06.08-9ee3f3f_GH0.tar.gz) = e29792212ee78f9a645dcd9747336b2b5cf1d37da8712a7f4dfa90717fe4ec83 -SIZE (cfengine-core-3.2019.06.08-9ee3f3f_GH0.tar.gz) = 2224537 +TIMESTAMP = 1561090964 +SHA256 (cfengine-core-3.2019.06.20-cfdbde3_GH0.tar.gz) = 1c11886ec1c347552ff5544ced5e245d611604c5da50ad70eb3b2a0ca4684900 +SIZE (cfengine-core-3.2019.06.20-cfdbde3_GH0.tar.gz) = 2230409 Modified: head/sysutils/cfengine-masterfiles-devel/Makefile ============================================================================== --- head/sysutils/cfengine-masterfiles-devel/Makefile Fri Jun 21 04:52:56 2019 (r504756) +++ head/sysutils/cfengine-masterfiles-devel/Makefile Fri Jun 21 04:53:14 2019 (r504757) @@ -7,8 +7,8 @@ PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= https://cfengine-package-repos.s3.amazonaws.com/tarballs/ PKGNAMESUFFIX= -devel -HASH= e985b9b -CFENGINE_COMMIT_DATE= 2019.06.08 +HASH= 6503cb8 +CFENGINE_COMMIT_DATE= 2019.06.20 MAINTAINER= cy@FreeBSD.org # gjb@FreeBSD.org is also committer for this port @@ -31,12 +31,11 @@ RUN_DEPENDS= cf-agent:sysutils/cfengine${PKGNAMESUFFIX FETCH_BEFORE_ARGS= -o ${DISTDIR}/${DISTFILES} MAKE_JOBS_UNSAFE= yes -USES= autoreconf:build cpe gmake python:build shebangfix +USES= autoreconf:build cpe gmake python:build HAS_CONFIGURE= yes EXAMPLESDIR= ${PREFIX}/share/examples/cfengine-masterfiles CONFIGURE_SCRIPT= ./autogen.sh CONFIGURE_ARGS= --prefix=${EXAMPLESDIR} CONFIGURE_ENV= EXPLICIT_VERSION=${PORTVERSION}-${HASH} -SHEBANG_FILES= modules/packages/yum modules/packages/zypper .include Modified: head/sysutils/cfengine-masterfiles-devel/distinfo ============================================================================== --- head/sysutils/cfengine-masterfiles-devel/distinfo Fri Jun 21 04:52:56 2019 (r504756) +++ head/sysutils/cfengine-masterfiles-devel/distinfo Fri Jun 21 04:53:14 2019 (r504757) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560044381 -SHA256 (cfengine-masterfiles-3.2019.06.08-e985b9b_GH0.tar.gz) = 5936c1e3833fbe45a2ac0784e4994ad48870b89cb963dd34012b40b9e57e717f -SIZE (cfengine-masterfiles-3.2019.06.08-e985b9b_GH0.tar.gz) = 406675 +TIMESTAMP = 1561090959 +SHA256 (cfengine-masterfiles-3.2019.06.20-6503cb8_GH0.tar.gz) = f9a6bf106e17ee5163a95da335d73edae7dcdb1405a7914a479e68fd1524e4da +SIZE (cfengine-masterfiles-3.2019.06.20-6503cb8_GH0.tar.gz) = 409788 From owner-svn-ports-all@freebsd.org Fri Jun 21 05:26:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BF62615D0F46; Fri, 21 Jun 2019 05:26:00 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6106280C98; Fri, 21 Jun 2019 05:26:00 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3A18B1EC99; Fri, 21 Jun 2019 05:26:00 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L5Q0Sw002094; Fri, 21 Jun 2019 05:26:00 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L5PxT8002088; Fri, 21 Jun 2019 05:25:59 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201906210525.x5L5PxT8002088@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Fri, 21 Jun 2019 05:25:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504758 - head/net/ntp-devel X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: head/net/ntp-devel X-SVN-Commit-Revision: 504758 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6106280C98 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 05:26:00 -0000 Author: cy Date: Fri Jun 21 05:25:59 2019 New Revision: 504758 URL: https://svnweb.freebsd.org/changeset/ports/504758 Log: Update 4.3.97 --> 4.3.99 Modified: head/net/ntp-devel/Makefile (contents, props changed) head/net/ntp-devel/distinfo (contents, props changed) Modified: head/net/ntp-devel/Makefile ============================================================================== --- head/net/ntp-devel/Makefile Fri Jun 21 04:53:14 2019 (r504757) +++ head/net/ntp-devel/Makefile Fri Jun 21 05:25:59 2019 (r504758) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= ntp -PORTVERSION= 4.3.97 +PORTVERSION= 4.3.99 CATEGORIES= net ipv6 MASTER_SITES= http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-dev/ \ http://archive.ntp.org/ntp4/ntp-dev/ Modified: head/net/ntp-devel/distinfo ============================================================================== --- head/net/ntp-devel/distinfo Fri Jun 21 04:53:14 2019 (r504757) +++ head/net/ntp-devel/distinfo Fri Jun 21 05:25:59 2019 (r504758) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559907650 -SHA256 (ntp-dev-4.3.97.tar.gz) = f075b15d50a0f25f1864221ac868195549944be40a45d7eb75fa53964ffe6c6d -SIZE (ntp-dev-4.3.97.tar.gz) = 7010616 +TIMESTAMP = 1561093102 +SHA256 (ntp-dev-4.3.99.tar.gz) = 254307ef142c82ddcf9e864a67eb7c9d456f0e3328e44b0c5d9e15acc2222a09 +SIZE (ntp-dev-4.3.99.tar.gz) = 7038690 From owner-svn-ports-all@freebsd.org Fri Jun 21 05:33:21 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 286B915D1332; Fri, 21 Jun 2019 05:33:21 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BADFD810ED; Fri, 21 Jun 2019 05:33:20 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A3C8F1EE3B; Fri, 21 Jun 2019 05:33:20 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L5XKOF007492; Fri, 21 Jun 2019 05:33:20 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L5XKIB007491; Fri, 21 Jun 2019 05:33:20 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906210533.x5L5XKIB007491@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 21 Jun 2019 05:33:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504759 - head/misc/gobuster X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/gobuster X-SVN-Commit-Revision: 504759 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BADFD810ED X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 05:33:21 -0000 Author: yuri Date: Fri Jun 21 05:33:20 2019 New Revision: 504759 URL: https://svnweb.freebsd.org/changeset/ports/504759 Log: misc/gobuster: Update 3.0.0 -> 3.0.1 Reported by: portscout Modified: head/misc/gobuster/Makefile head/misc/gobuster/distinfo Modified: head/misc/gobuster/Makefile ============================================================================== --- head/misc/gobuster/Makefile Fri Jun 21 05:25:59 2019 (r504758) +++ head/misc/gobuster/Makefile Fri Jun 21 05:33:20 2019 (r504759) @@ -2,7 +2,7 @@ PORTNAME= gobuster DISTVERSIONPREFIX= v -DISTVERSION= 3.0.0 +DISTVERSION= 3.0.1 CATEGORIES= misc dns MAINTAINER= yuri@FreeBSD.org Modified: head/misc/gobuster/distinfo ============================================================================== --- head/misc/gobuster/distinfo Fri Jun 21 05:25:59 2019 (r504758) +++ head/misc/gobuster/distinfo Fri Jun 21 05:33:20 2019 (r504759) @@ -1,6 +1,6 @@ -TIMESTAMP = 1561066377 -SHA256 (OJ-gobuster-v3.0.0_GH0.tar.gz) = 71d75bbbe4dc74ad2e156381e57eb53dffc6a16e549fb07ba34ec3c677d57888 -SIZE (OJ-gobuster-v3.0.0_GH0.tar.gz) = 29180 +TIMESTAMP = 1561094830 +SHA256 (OJ-gobuster-v3.0.1_GH0.tar.gz) = 9c70c73b4c08b02d1fc722cd82eda3d8ce683de53b08c8bddd31fc5c4d90a977 +SIZE (OJ-gobuster-v3.0.1_GH0.tar.gz) = 29393 SHA256 (google-uuid-c2e93f3_GH0.tar.gz) = 61a0e56aa49810b3a3a1983d7ce9b09ff2fe3c7e7c807572426bff33ed36d934 SIZE (google-uuid-c2e93f3_GH0.tar.gz) = 13862 SHA256 (hashicorp-errwrap-8a6fb52_GH0.tar.gz) = a7a95f9731829c7d9a66d49de0d8cd0e0d9d55da95c1124a80e6719278236e4c From owner-svn-ports-all@freebsd.org Fri Jun 21 07:23:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2699515D2E1D; Fri, 21 Jun 2019 07:23:10 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C07B183B92; Fri, 21 Jun 2019 07:23:09 +0000 (UTC) (envelope-from meta@FreeBSD.org) Received: from icepick.vmeta.jp (unknown [IPv6:2405:6586:2280:1200:4934:205c:9a0b:a8af]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) (Authenticated sender: meta/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 5498B3CED; Fri, 21 Jun 2019 07:23:08 +0000 (UTC) (envelope-from meta@FreeBSD.org) Date: Fri, 21 Jun 2019 16:23:05 +0900 From: Koichiro Iwao To: "Timur I. Bakeyev" Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504602 - head Message-ID: <20190621072305.mdtg7qnkypar4xdu@icepick.vmeta.jp> References: <201906192311.x5JNBe8n038136@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <201906192311.x5JNBe8n038136@repo.freebsd.org> X-Operating-System: FreeBSD 12.0-STABLE amd64 User-Agent: NeoMutt/20180716 X-Rspamd-Queue-Id: C07B183B92 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.90 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.91)[-0.906,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 07:23:10 -0000 On Wed, Jun 19, 2019 at 11:11:40PM +0000, Timur I. Bakeyev wrote: > +20190619: > + AFFECTS: users of samba4[6-8] and devel/talloc, devel/tevent, databases/tdb, databases/ldb* > + AUTHOR: timur@FreeBSD.org > (snip) > + > + for users of portmaster: > + portmaster -o devel/talloc1 devel/talloc > + portmaster -o devel/tevent1 devel/tevent > + portmaster -o databases/tdb1 databases/tdb > + portmaster -r devel/talloc1 Hi, I would say the last one must be `portmaster -r talloc1`. # portmaster -r devel/talloc1 ===>>> The argument to -r must be a package name, or a glob pattern ===>>> Aborting update -- meta From owner-svn-ports-all@freebsd.org Fri Jun 21 07:26:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CAB3315D2E77; Fri, 21 Jun 2019 07:26:42 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 71E4C83CC6; Fri, 21 Jun 2019 07:26:42 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5EA902006E; Fri, 21 Jun 2019 07:26:42 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L7QgO2064314; Fri, 21 Jun 2019 07:26:42 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L7QfWc064310; Fri, 21 Jun 2019 07:26:41 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906210726.x5L7QfWc064310@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 21 Jun 2019 07:26:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504760 - head/www/py-djangorestframework X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/www/py-djangorestframework X-SVN-Commit-Revision: 504760 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 71E4C83CC6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 07:26:43 -0000 Author: kai Date: Fri Jun 21 07:26:41 2019 New Revision: 504760 URL: https://svnweb.freebsd.org/changeset/ports/504760 Log: www/py-djangorestframework: Update to 3.9.4 Changelog: https://www.django-rest-framework.org/community/release-notes/#394 Modified: head/www/py-djangorestframework/Makefile head/www/py-djangorestframework/distinfo Modified: head/www/py-djangorestframework/Makefile ============================================================================== --- head/www/py-djangorestframework/Makefile Fri Jun 21 05:33:20 2019 (r504759) +++ head/www/py-djangorestframework/Makefile Fri Jun 21 07:26:41 2019 (r504760) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= djangorestframework -DISTVERSION= 3.9.2 +DISTVERSION= 3.9.4 PORTEPOCH= 1 CATEGORIES= www python MASTER_SITES= CHEESESHOP Modified: head/www/py-djangorestframework/distinfo ============================================================================== --- head/www/py-djangorestframework/distinfo Fri Jun 21 05:33:20 2019 (r504759) +++ head/www/py-djangorestframework/distinfo Fri Jun 21 07:26:41 2019 (r504760) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556208542 -SHA256 (djangorestframework-3.9.2.tar.gz) = f7a266260d656e1cf4ca54d7a7349609dc8af4fe2590edd0ecd7d7643ea94a17 -SIZE (djangorestframework-3.9.2.tar.gz) = 785546 +TIMESTAMP = 1561075293 +SHA256 (djangorestframework-3.9.4.tar.gz) = c12869cfd83c33d579b17b3cb28a2ae7322a53c3ce85580c2a2ebe4e3f56c4fb +SIZE (djangorestframework-3.9.4.tar.gz) = 779306 From owner-svn-ports-all@freebsd.org Fri Jun 21 07:32:54 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6587A15D318E; Fri, 21 Jun 2019 07:32:54 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 049D3842B6; Fri, 21 Jun 2019 07:32:54 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C6EE520236; Fri, 21 Jun 2019 07:32:53 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L7WrtH069369; Fri, 21 Jun 2019 07:32:53 GMT (envelope-from mandree@FreeBSD.org) Received: (from mandree@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L7WrGh069368; Fri, 21 Jun 2019 07:32:53 GMT (envelope-from mandree@FreeBSD.org) Message-Id: <201906210732.x5L7WrGh069368@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mandree set sender to mandree@FreeBSD.org using -f From: Matthias Andree Date: Fri, 21 Jun 2019 07:32:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504761 - head/databases/tdb X-SVN-Group: ports-head X-SVN-Commit-Author: mandree X-SVN-Commit-Paths: head/databases/tdb X-SVN-Commit-Revision: 504761 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 049D3842B6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.963,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 07:32:54 -0000 Author: mandree Date: Fri Jun 21 07:32:53 2019 New Revision: 504761 URL: https://svnweb.freebsd.org/changeset/ports/504761 Log: Reinstate PORTEPOCH=1 to prevent version from going backwards. Modified: head/databases/tdb/Makefile Modified: head/databases/tdb/Makefile ============================================================================== --- head/databases/tdb/Makefile Fri Jun 21 07:26:41 2019 (r504760) +++ head/databases/tdb/Makefile Fri Jun 21 07:32:53 2019 (r504761) @@ -3,7 +3,7 @@ PORTNAME= tdb PORTVERSION= 1.4.0 PORTREVISION= 0 -PORTEPOCH= 0 +PORTEPOCH= 1 CATEGORIES= databases MASTER_SITES= SAMBA From owner-svn-ports-all@freebsd.org Fri Jun 21 07:33:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 54E4915D31BF; Fri, 21 Jun 2019 07:33:19 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EF66E8438F; Fri, 21 Jun 2019 07:33:18 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C0D9320237; Fri, 21 Jun 2019 07:33:18 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L7XIHw069529; Fri, 21 Jun 2019 07:33:18 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L7XIwm069528; Fri, 21 Jun 2019 07:33:18 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906210733.x5L7XIwm069528@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 21 Jun 2019 07:33:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504762 - head/www/py-dj21-djangorestframework X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/www/py-dj21-djangorestframework X-SVN-Commit-Revision: 504762 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EF66E8438F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 07:33:19 -0000 Author: kai Date: Fri Jun 21 07:33:18 2019 New Revision: 504762 URL: https://svnweb.freebsd.org/changeset/ports/504762 Log: www/py-dj21-djangorestframework: Update to 3.9.4 Changelog: https://www.django-rest-framework.org/community/release-notes/#394 Modified: head/www/py-dj21-djangorestframework/Makefile head/www/py-dj21-djangorestframework/distinfo Modified: head/www/py-dj21-djangorestframework/Makefile ============================================================================== --- head/www/py-dj21-djangorestframework/Makefile Fri Jun 21 07:32:53 2019 (r504761) +++ head/www/py-dj21-djangorestframework/Makefile Fri Jun 21 07:33:18 2019 (r504762) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= djangorestframework -DISTVERSION= 3.9.2 +DISTVERSION= 3.9.4 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj21- Modified: head/www/py-dj21-djangorestframework/distinfo ============================================================================== --- head/www/py-dj21-djangorestframework/distinfo Fri Jun 21 07:32:53 2019 (r504761) +++ head/www/py-dj21-djangorestframework/distinfo Fri Jun 21 07:33:18 2019 (r504762) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556208590 -SHA256 (djangorestframework-3.9.2.tar.gz) = f7a266260d656e1cf4ca54d7a7349609dc8af4fe2590edd0ecd7d7643ea94a17 -SIZE (djangorestframework-3.9.2.tar.gz) = 785546 +TIMESTAMP = 1561075293 +SHA256 (djangorestframework-3.9.4.tar.gz) = c12869cfd83c33d579b17b3cb28a2ae7322a53c3ce85580c2a2ebe4e3f56c4fb +SIZE (djangorestframework-3.9.4.tar.gz) = 779306 From owner-svn-ports-all@freebsd.org Fri Jun 21 07:59:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BB47615D3AC9; Fri, 21 Jun 2019 07:59:57 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 60E618507E; Fri, 21 Jun 2019 07:59:57 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4AD262057A; Fri, 21 Jun 2019 07:59:57 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L7xvfa080667; Fri, 21 Jun 2019 07:59:57 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L7xuAK080665; Fri, 21 Jun 2019 07:59:56 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906210759.x5L7xuAK080665@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 21 Jun 2019 07:59:56 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504763 - head/www/py-drf-yasg X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/www/py-drf-yasg X-SVN-Commit-Revision: 504763 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 60E618507E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 07:59:57 -0000 Author: kai Date: Fri Jun 21 07:59:56 2019 New Revision: 504763 URL: https://svnweb.freebsd.org/changeset/ports/504763 Log: www/py-drf-yasg: Update to 1.16.0 Changelog: https://github.com/axnsan12/drf-yasg/blob/1.16.0/docs/changelog.rst Modified: head/www/py-drf-yasg/Makefile head/www/py-drf-yasg/distinfo Modified: head/www/py-drf-yasg/Makefile ============================================================================== --- head/www/py-drf-yasg/Makefile Fri Jun 21 07:33:18 2019 (r504762) +++ head/www/py-drf-yasg/Makefile Fri Jun 21 07:59:56 2019 (r504763) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= drf-yasg -DISTVERSION= 1.15.0 +DISTVERSION= 1.16.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-drf-yasg/distinfo ============================================================================== --- head/www/py-drf-yasg/distinfo Fri Jun 21 07:33:18 2019 (r504762) +++ head/www/py-drf-yasg/distinfo Fri Jun 21 07:59:56 2019 (r504763) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556211907 -SHA256 (drf-yasg-1.15.0.tar.gz) = dfb96eb36b259c2e0da67515319a25e49f6bdd3a275412f34221cc5236d2b62a -SIZE (drf-yasg-1.15.0.tar.gz) = 1313489 +TIMESTAMP = 1561074540 +SHA256 (drf-yasg-1.16.0.tar.gz) = 82b535a22fc13e0a202217df4c6470c40b54d21f742e69798f53c69afccbfdac +SIZE (drf-yasg-1.16.0.tar.gz) = 1288698 From owner-svn-ports-all@freebsd.org Fri Jun 21 08:02:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BCC3B15D3E82; Fri, 21 Jun 2019 08:02:42 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6147485436; Fri, 21 Jun 2019 08:02:42 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 36CEF20731; Fri, 21 Jun 2019 08:02:42 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L82gxg085478; Fri, 21 Jun 2019 08:02:42 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L82fJ0085476; Fri, 21 Jun 2019 08:02:41 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906210802.x5L82fJ0085476@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Fri, 21 Jun 2019 08:02:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504764 - head/devel/phpunit7 X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/phpunit7 X-SVN-Commit-Revision: 504764 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6147485436 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:02:42 -0000 Author: joneum Date: Fri Jun 21 08:02:41 2019 New Revision: 504764 URL: https://svnweb.freebsd.org/changeset/ports/504764 Log: Update to 7.5.13 Sponsored by: Netzkommune GmbH Modified: head/devel/phpunit7/Makefile head/devel/phpunit7/distinfo Modified: head/devel/phpunit7/Makefile ============================================================================== --- head/devel/phpunit7/Makefile Fri Jun 21 07:59:56 2019 (r504763) +++ head/devel/phpunit7/Makefile Fri Jun 21 08:02:41 2019 (r504764) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= phpunit -DISTVERSION= 7.5.12 +DISTVERSION= 7.5.13 CATEGORIES= devel www MASTER_SITES= https://phar.phpunit.de/ PKGNAMESUFFIX= 7${PHP_PKGNAMESUFFIX} Modified: head/devel/phpunit7/distinfo ============================================================================== --- head/devel/phpunit7/distinfo Fri Jun 21 07:59:56 2019 (r504763) +++ head/devel/phpunit7/distinfo Fri Jun 21 08:02:41 2019 (r504764) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560756901 -SHA256 (phpunit-7.5.12.phar) = 64d7ff4905b10dea9cef6d03826a6d5bc63e6bf460b92484205257530999ca83 -SIZE (phpunit-7.5.12.phar) = 2710765 +TIMESTAMP = 1561103897 +SHA256 (phpunit-7.5.13.phar) = e7e29ce9e8f0e1916237c6c9e81613e256f4275935cd8000bc2b0dceaa7981e1 +SIZE (phpunit-7.5.13.phar) = 2711028 From owner-svn-ports-all@freebsd.org Fri Jun 21 08:02:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5519015D3EA1; Fri, 21 Jun 2019 08:02:48 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E39C085472; Fri, 21 Jun 2019 08:02:47 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 26B5920732; Fri, 21 Jun 2019 08:02:47 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L82lKq085638; Fri, 21 Jun 2019 08:02:47 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L82kXE085635; Fri, 21 Jun 2019 08:02:46 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906210802.x5L82kXE085635@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 21 Jun 2019 08:02:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504765 - in head/www: py-dj21-drf-yasg py-dj22-drf-yasg X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/www: py-dj21-drf-yasg py-dj22-drf-yasg X-SVN-Commit-Revision: 504765 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E39C085472 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:02:48 -0000 Author: kai Date: Fri Jun 21 08:02:46 2019 New Revision: 504765 URL: https://svnweb.freebsd.org/changeset/ports/504765 Log: www/py-{dj21,dj22}-drf-yasg: Update to 1.16.0 Changelog: https://github.com/axnsan12/drf-yasg/blob/1.16.0/docs/changelog.rst Modified: head/www/py-dj21-drf-yasg/Makefile head/www/py-dj21-drf-yasg/distinfo head/www/py-dj22-drf-yasg/Makefile head/www/py-dj22-drf-yasg/distinfo Modified: head/www/py-dj21-drf-yasg/Makefile ============================================================================== --- head/www/py-dj21-drf-yasg/Makefile Fri Jun 21 08:02:41 2019 (r504764) +++ head/www/py-dj21-drf-yasg/Makefile Fri Jun 21 08:02:46 2019 (r504765) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= drf-yasg -DISTVERSION= 1.15.0 +DISTVERSION= 1.16.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj21- Modified: head/www/py-dj21-drf-yasg/distinfo ============================================================================== --- head/www/py-dj21-drf-yasg/distinfo Fri Jun 21 08:02:41 2019 (r504764) +++ head/www/py-dj21-drf-yasg/distinfo Fri Jun 21 08:02:46 2019 (r504765) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556212062 -SHA256 (drf-yasg-1.15.0.tar.gz) = dfb96eb36b259c2e0da67515319a25e49f6bdd3a275412f34221cc5236d2b62a -SIZE (drf-yasg-1.15.0.tar.gz) = 1313489 +TIMESTAMP = 1561074540 +SHA256 (drf-yasg-1.16.0.tar.gz) = 82b535a22fc13e0a202217df4c6470c40b54d21f742e69798f53c69afccbfdac +SIZE (drf-yasg-1.16.0.tar.gz) = 1288698 Modified: head/www/py-dj22-drf-yasg/Makefile ============================================================================== --- head/www/py-dj22-drf-yasg/Makefile Fri Jun 21 08:02:41 2019 (r504764) +++ head/www/py-dj22-drf-yasg/Makefile Fri Jun 21 08:02:46 2019 (r504765) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= drf-yasg -DISTVERSION= 1.15.0 +DISTVERSION= 1.16.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj22- Modified: head/www/py-dj22-drf-yasg/distinfo ============================================================================== --- head/www/py-dj22-drf-yasg/distinfo Fri Jun 21 08:02:41 2019 (r504764) +++ head/www/py-dj22-drf-yasg/distinfo Fri Jun 21 08:02:46 2019 (r504765) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556211907 -SHA256 (drf-yasg-1.15.0.tar.gz) = dfb96eb36b259c2e0da67515319a25e49f6bdd3a275412f34221cc5236d2b62a -SIZE (drf-yasg-1.15.0.tar.gz) = 1313489 +TIMESTAMP = 1561074540 +SHA256 (drf-yasg-1.16.0.tar.gz) = 82b535a22fc13e0a202217df4c6470c40b54d21f742e69798f53c69afccbfdac +SIZE (drf-yasg-1.16.0.tar.gz) = 1288698 From owner-svn-ports-all@freebsd.org Fri Jun 21 08:03:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 367AB15D3ED2; Fri, 21 Jun 2019 08:03:08 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D17CF855E4; Fri, 21 Jun 2019 08:03:07 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AE06B20735; Fri, 21 Jun 2019 08:03:07 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L8377j085773; Fri, 21 Jun 2019 08:03:07 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L8375i085771; Fri, 21 Jun 2019 08:03:07 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906210803.x5L8375i085771@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Fri, 21 Jun 2019 08:03:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504766 - head/devel/phpunit8 X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: head/devel/phpunit8 X-SVN-Commit-Revision: 504766 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D17CF855E4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:03:08 -0000 Author: joneum Date: Fri Jun 21 08:03:07 2019 New Revision: 504766 URL: https://svnweb.freebsd.org/changeset/ports/504766 Log: Update to 8.2.3 Sponsored by: Netzkommune GmbH Modified: head/devel/phpunit8/Makefile head/devel/phpunit8/distinfo Modified: head/devel/phpunit8/Makefile ============================================================================== --- head/devel/phpunit8/Makefile Fri Jun 21 08:02:46 2019 (r504765) +++ head/devel/phpunit8/Makefile Fri Jun 21 08:03:07 2019 (r504766) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= phpunit -DISTVERSION= 8.2.2 +DISTVERSION= 8.2.3 CATEGORIES= devel www MASTER_SITES= https://phar.phpunit.de/ PKGNAMESUFFIX= 8${PHP_PKGNAMESUFFIX} Modified: head/devel/phpunit8/distinfo ============================================================================== --- head/devel/phpunit8/distinfo Fri Jun 21 08:02:46 2019 (r504765) +++ head/devel/phpunit8/distinfo Fri Jun 21 08:03:07 2019 (r504766) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560765160 -SHA256 (phpunit-8.2.2.phar) = ad18642ebf5e230da790e4f53b3ed7d226834bb22c8a6e0fc273f59bb7ba521f -SIZE (phpunit-8.2.2.phar) = 2839982 +TIMESTAMP = 1561103915 +SHA256 (phpunit-8.2.3.phar) = 50f910a3ac54f4dc1414daae34eb134a6cc149bd5566f67330d6199cd44af90f +SIZE (phpunit-8.2.3.phar) = 2841363 From owner-svn-ports-all@freebsd.org Fri Jun 21 08:09:56 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8863915D402C; Fri, 21 Jun 2019 08:09:56 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2EADE8574C; Fri, 21 Jun 2019 08:09:56 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 195B920737; Fri, 21 Jun 2019 08:09:56 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L89tEX086196; Fri, 21 Jun 2019 08:09:55 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L89tWC086192; Fri, 21 Jun 2019 08:09:55 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906210809.x5L89tWC086192@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 21 Jun 2019 08:09:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504767 - in head/www: py-dj21-django-debug-toolbar py-dj22-django-debug-toolbar X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/www: py-dj21-django-debug-toolbar py-dj22-django-debug-toolbar X-SVN-Commit-Revision: 504767 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2EADE8574C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:09:56 -0000 Author: kai Date: Fri Jun 21 08:09:54 2019 New Revision: 504767 URL: https://svnweb.freebsd.org/changeset/ports/504767 Log: www/py-{dj21,dj22}-django-debug-toolbar: Update to 2.0 Changelog: https://github.com/jazzband/django-debug-toolbar/blob/2.0/docs/changes.rst Modified: head/www/py-dj21-django-debug-toolbar/Makefile head/www/py-dj21-django-debug-toolbar/distinfo head/www/py-dj22-django-debug-toolbar/Makefile head/www/py-dj22-django-debug-toolbar/distinfo Modified: head/www/py-dj21-django-debug-toolbar/Makefile ============================================================================== --- head/www/py-dj21-django-debug-toolbar/Makefile Fri Jun 21 08:03:07 2019 (r504766) +++ head/www/py-dj21-django-debug-toolbar/Makefile Fri Jun 21 08:09:54 2019 (r504767) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django-debug-toolbar -PORTVERSION= 1.11 +PORTVERSION= 2.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj21- Modified: head/www/py-dj21-django-debug-toolbar/distinfo ============================================================================== --- head/www/py-dj21-django-debug-toolbar/distinfo Fri Jun 21 08:03:07 2019 (r504766) +++ head/www/py-dj21-django-debug-toolbar/distinfo Fri Jun 21 08:09:54 2019 (r504767) @@ -1,3 +1,3 @@ -TIMESTAMP = 1546724075 -SHA256 (django-debug-toolbar-1.11.tar.gz) = 89d75b60c65db363fb24688d977e5fbf0e73386c67acf562d278402a10fc3736 -SIZE (django-debug-toolbar-1.11.tar.gz) = 108708 +TIMESTAMP = 1561075490 +SHA256 (django-debug-toolbar-2.0.tar.gz) = 17c53cd6bf4e7d69902aedf9a1d26c5d3b7369b54c5718744704f27b5a72f35d +SIZE (django-debug-toolbar-2.0.tar.gz) = 108622 Modified: head/www/py-dj22-django-debug-toolbar/Makefile ============================================================================== --- head/www/py-dj22-django-debug-toolbar/Makefile Fri Jun 21 08:03:07 2019 (r504766) +++ head/www/py-dj22-django-debug-toolbar/Makefile Fri Jun 21 08:09:54 2019 (r504767) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django-debug-toolbar -PORTVERSION= 1.11 +PORTVERSION= 2.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj22- Modified: head/www/py-dj22-django-debug-toolbar/distinfo ============================================================================== --- head/www/py-dj22-django-debug-toolbar/distinfo Fri Jun 21 08:03:07 2019 (r504766) +++ head/www/py-dj22-django-debug-toolbar/distinfo Fri Jun 21 08:09:54 2019 (r504767) @@ -1,3 +1,3 @@ -TIMESTAMP = 1546724075 -SHA256 (django-debug-toolbar-1.11.tar.gz) = 89d75b60c65db363fb24688d977e5fbf0e73386c67acf562d278402a10fc3736 -SIZE (django-debug-toolbar-1.11.tar.gz) = 108708 +TIMESTAMP = 1561075490 +SHA256 (django-debug-toolbar-2.0.tar.gz) = 17c53cd6bf4e7d69902aedf9a1d26c5d3b7369b54c5718744704f27b5a72f35d +SIZE (django-debug-toolbar-2.0.tar.gz) = 108622 From owner-svn-ports-all@freebsd.org Fri Jun 21 08:10:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8EE3C15D4055; Fri, 21 Jun 2019 08:10:08 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 252468581F; Fri, 21 Jun 2019 08:10:08 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0156E2073B; Fri, 21 Jun 2019 08:10:08 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L8A7kb086356; Fri, 21 Jun 2019 08:10:07 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L8A7NU086355; Fri, 21 Jun 2019 08:10:07 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906210810.x5L8A7NU086355@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 21 Jun 2019 08:10:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504768 - head/multimedia/svt-av1 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/svt-av1 X-SVN-Commit-Revision: 504768 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 252468581F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:10:08 -0000 Author: jbeich Date: Fri Jun 21 08:10:07 2019 New Revision: 504768 URL: https://svnweb.freebsd.org/changeset/ports/504768 Log: multimedia/svt-av1: update to 0.5.0.466 Changes: https://github.com/OpenVisualCloud/SVT-AV1/compare/cc2ee452...ac75c3e0 Modified: head/multimedia/svt-av1/Makefile (contents, props changed) head/multimedia/svt-av1/distinfo (contents, props changed) Modified: head/multimedia/svt-av1/Makefile ============================================================================== --- head/multimedia/svt-av1/Makefile Fri Jun 21 08:09:54 2019 (r504767) +++ head/multimedia/svt-av1/Makefile Fri Jun 21 08:10:07 2019 (r504768) @@ -2,8 +2,8 @@ PORTNAME= svt-av1 DISTVERSIONPREFIX= v -DISTVERSION= 0.5.0-457 -DISTVERSIONSUFFIX= -gcc2ee452 +DISTVERSION= 0.5.0-466 +DISTVERSIONSUFFIX= -gac75c3e0 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org Modified: head/multimedia/svt-av1/distinfo ============================================================================== --- head/multimedia/svt-av1/distinfo Fri Jun 21 08:09:54 2019 (r504767) +++ head/multimedia/svt-av1/distinfo Fri Jun 21 08:10:07 2019 (r504768) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560989925 -SHA256 (OpenVisualCloud-SVT-AV1-v0.5.0-457-gcc2ee452_GH0.tar.gz) = 8e387f463cf80cf5c4e264f5826d419c56074e4f8652e4c2a1fbad4dcf3aaa3e -SIZE (OpenVisualCloud-SVT-AV1-v0.5.0-457-gcc2ee452_GH0.tar.gz) = 2584386 +TIMESTAMP = 1561086797 +SHA256 (OpenVisualCloud-SVT-AV1-v0.5.0-466-gac75c3e0_GH0.tar.gz) = 39c9eded59adccdd8658b8357cd89ec6d3b89a1cba20ac3d8dabdaa7635e6534 +SIZE (OpenVisualCloud-SVT-AV1-v0.5.0-466-gac75c3e0_GH0.tar.gz) = 2718981 From owner-svn-ports-all@freebsd.org Fri Jun 21 08:11:06 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3D79915D40A8; Fri, 21 Jun 2019 08:11:06 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D5E738596A; Fri, 21 Jun 2019 08:11:05 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B1EE820762; Fri, 21 Jun 2019 08:11:05 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L8B5Hq087272; Fri, 21 Jun 2019 08:11:05 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L8B5U1087271; Fri, 21 Jun 2019 08:11:05 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906210811.x5L8B5U1087271@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 21 Jun 2019 08:11:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504769 - head/multimedia/gmmlib X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/gmmlib X-SVN-Commit-Revision: 504769 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D5E738596A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:11:06 -0000 Author: jbeich Date: Fri Jun 21 08:11:04 2019 New Revision: 504769 URL: https://svnweb.freebsd.org/changeset/ports/504769 Log: multimedia/gmmlib: update to 19.2.2 Changes: https://github.com/intel/gmmlib/compare/intel-gmmlib-19.2.1...intel-gmmlib-19.2.2 Reported by: portscout Modified: head/multimedia/gmmlib/Makefile (contents, props changed) head/multimedia/gmmlib/distinfo (contents, props changed) Modified: head/multimedia/gmmlib/Makefile ============================================================================== --- head/multimedia/gmmlib/Makefile Fri Jun 21 08:10:07 2019 (r504768) +++ head/multimedia/gmmlib/Makefile Fri Jun 21 08:11:04 2019 (r504769) @@ -2,7 +2,7 @@ PORTNAME= gmmlib DISTVERSIONPREFIX= intel-${PORTNAME}- -DISTVERSION= 19.2.1 +DISTVERSION= 19.2.2 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org Modified: head/multimedia/gmmlib/distinfo ============================================================================== --- head/multimedia/gmmlib/distinfo Fri Jun 21 08:10:07 2019 (r504768) +++ head/multimedia/gmmlib/distinfo Fri Jun 21 08:11:04 2019 (r504769) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558647929 -SHA256 (intel-gmmlib-intel-gmmlib-19.2.1_GH0.tar.gz) = e03b87e932081920e70db83b3604f9de79aee38b677f4553f17b9fcfe9274be5 -SIZE (intel-gmmlib-intel-gmmlib-19.2.1_GH0.tar.gz) = 633194 +TIMESTAMP = 1560983742 +SHA256 (intel-gmmlib-intel-gmmlib-19.2.2_GH0.tar.gz) = 5efa836ff9af7fe4cd48a70fafb9f352a015dae4fe557c6cdb7d06fe5d010e95 +SIZE (intel-gmmlib-intel-gmmlib-19.2.2_GH0.tar.gz) = 633243 From owner-svn-ports-all@freebsd.org Fri Jun 21 08:15:07 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3766715D4232; Fri, 21 Jun 2019 08:15:07 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CD92E85C8B; Fri, 21 Jun 2019 08:15:06 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B16C4208D7; Fri, 21 Jun 2019 08:15:06 +0000 (UTC) (envelope-from joneum@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L8F626091617; Fri, 21 Jun 2019 08:15:06 GMT (envelope-from joneum@FreeBSD.org) Received: (from joneum@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L8F49B091608; Fri, 21 Jun 2019 08:15:04 GMT (envelope-from joneum@FreeBSD.org) Message-Id: <201906210815.x5L8F49B091608@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: joneum set sender to joneum@FreeBSD.org using -f From: Jochen Neumeister Date: Fri, 21 Jun 2019 08:15:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504770 - in head: french/wordpress german/wordpress japanese/wordpress russian/wordpress www/wordpress X-SVN-Group: ports-head X-SVN-Commit-Author: joneum X-SVN-Commit-Paths: in head: french/wordpress german/wordpress japanese/wordpress russian/wordpress www/wordpress X-SVN-Commit-Revision: 504770 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CD92E85C8B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:15:07 -0000 Author: joneum Date: Fri Jun 21 08:15:04 2019 New Revision: 504770 URL: https://svnweb.freebsd.org/changeset/ports/504770 Log: Update to 5.2.2 Changelog: https://wordpress.org/news/2019/06/wordpress-5-2-2-maintenance-release/ Sponsored by: Netzkommune GmbH Modified: head/french/wordpress/Makefile head/french/wordpress/distinfo head/german/wordpress/Makefile head/german/wordpress/distinfo head/japanese/wordpress/Makefile head/japanese/wordpress/distinfo head/russian/wordpress/Makefile head/russian/wordpress/distinfo head/www/wordpress/Makefile head/www/wordpress/distinfo Modified: head/french/wordpress/Makefile ============================================================================== --- head/french/wordpress/Makefile Fri Jun 21 08:11:04 2019 (r504769) +++ head/french/wordpress/Makefile Fri Jun 21 08:15:04 2019 (r504770) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -DISTVERSION= 5.2.1 +DISTVERSION= 5.2.2 DISTVERSIONSUFFIX= -fr_FR PORTEPOCH= 1 CATEGORIES= french www Modified: head/french/wordpress/distinfo ============================================================================== --- head/french/wordpress/distinfo Fri Jun 21 08:11:04 2019 (r504769) +++ head/french/wordpress/distinfo Fri Jun 21 08:15:04 2019 (r504770) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560690280 -SHA256 (wordpress-5.2.1-fr_FR.tar.gz) = cd62797b9a9706b971b7c891808da11f36917f20730f1891364268a0b67782a2 -SIZE (wordpress-5.2.1-fr_FR.tar.gz) = 11850124 +TIMESTAMP = 1561104176 +SHA256 (wordpress-5.2.2-fr_FR.tar.gz) = 3dad23c71cb23ab0e131fa76da5da56c166f9d2649c86ca4ae5f75129bcf9e2f +SIZE (wordpress-5.2.2-fr_FR.tar.gz) = 11851897 Modified: head/german/wordpress/Makefile ============================================================================== --- head/german/wordpress/Makefile Fri Jun 21 08:11:04 2019 (r504769) +++ head/german/wordpress/Makefile Fri Jun 21 08:15:04 2019 (r504770) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -DISTVERSION= 5.2.1 +DISTVERSION= 5.2.2 DISTVERSIONSUFFIX= -de_DE CATEGORIES= german www MASTER_SITES= http://de.wordpress.org/ Modified: head/german/wordpress/distinfo ============================================================================== --- head/german/wordpress/distinfo Fri Jun 21 08:11:04 2019 (r504769) +++ head/german/wordpress/distinfo Fri Jun 21 08:15:04 2019 (r504770) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560690318 -SHA256 (wordpress-5.2.1-de_DE.tar.gz) = 1f12aac01ee24f638b4630ea2174f05092f50630dba82c893867aee9ddb1d1e7 -SIZE (wordpress-5.2.1-de_DE.tar.gz) = 11854990 +TIMESTAMP = 1561104224 +SHA256 (wordpress-5.2.2-de_DE.tar.gz) = 6f65fbbafff83d2e61c54035ee0695bdff3960f5bab505af359e49d71b0801db +SIZE (wordpress-5.2.2-de_DE.tar.gz) = 11856114 Modified: head/japanese/wordpress/Makefile ============================================================================== --- head/japanese/wordpress/Makefile Fri Jun 21 08:11:04 2019 (r504769) +++ head/japanese/wordpress/Makefile Fri Jun 21 08:15:04 2019 (r504770) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -DISTVERSION= 5.2.1 +DISTVERSION= 5.2.2 DISTVERSIONSUFFIX= -ja CATEGORIES= japanese www MASTER_SITES= http://ja.wordpress.org/ Modified: head/japanese/wordpress/distinfo ============================================================================== --- head/japanese/wordpress/distinfo Fri Jun 21 08:11:04 2019 (r504769) +++ head/japanese/wordpress/distinfo Fri Jun 21 08:15:04 2019 (r504770) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560690365 -SHA256 (wordpress-5.2.1-ja.tar.gz) = ad80f687861079467f5e5d8500d0acefdd29ee807370f074aa4f6e4af156b544 -SIZE (wordpress-5.2.1-ja.tar.gz) = 11851773 +TIMESTAMP = 1561104262 +SHA256 (wordpress-5.2.2-ja.tar.gz) = 1055ade56855f6fdafe8dbf2dd53b476dc0ce332de3cb462267670c98c3e4308 +SIZE (wordpress-5.2.2-ja.tar.gz) = 11855693 Modified: head/russian/wordpress/Makefile ============================================================================== --- head/russian/wordpress/Makefile Fri Jun 21 08:11:04 2019 (r504769) +++ head/russian/wordpress/Makefile Fri Jun 21 08:15:04 2019 (r504770) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -DISTVERSION= 5.2.1 +DISTVERSION= 5.2.2 DISTVERSIONSUFFIX= -ru_RU CATEGORIES= russian www MASTER_SITES= http://ru.wordpress.org/ Modified: head/russian/wordpress/distinfo ============================================================================== --- head/russian/wordpress/distinfo Fri Jun 21 08:11:04 2019 (r504769) +++ head/russian/wordpress/distinfo Fri Jun 21 08:15:04 2019 (r504770) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560690401 -SHA256 (wordpress-5.2.1-ru_RU.tar.gz) = b6b689478b737c7043ff5ad65d10de5b122eafd8d5dfd65dafe6c31186195263 -SIZE (wordpress-5.2.1-ru_RU.tar.gz) = 11913743 +TIMESTAMP = 1561104294 +SHA256 (wordpress-5.2.2-ru_RU.tar.gz) = ed5fa4f1e0a2f8afda1a6d1d81cc94e4bf9c3b30444333cb1d8c1b6a6333368d +SIZE (wordpress-5.2.2-ru_RU.tar.gz) = 11912362 Modified: head/www/wordpress/Makefile ============================================================================== --- head/www/wordpress/Makefile Fri Jun 21 08:11:04 2019 (r504769) +++ head/www/wordpress/Makefile Fri Jun 21 08:15:04 2019 (r504770) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= wordpress -DISTVERSION= 5.2.1 +DISTVERSION= 5.2.2 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= http://wordpress.org/ Modified: head/www/wordpress/distinfo ============================================================================== --- head/www/wordpress/distinfo Fri Jun 21 08:11:04 2019 (r504769) +++ head/www/wordpress/distinfo Fri Jun 21 08:15:04 2019 (r504770) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560690162 -SHA256 (wordpress-5.2.1.tar.gz) = 694769b2f7e235598fdc75534be6aaabf9999af1342168e75ed87803eea3f789 -SIZE (wordpress-5.2.1.tar.gz) = 11199196 +TIMESTAMP = 1561104334 +SHA256 (wordpress-5.2.2.tar.gz) = 783fc929a64d37e4ad4e8eea0a5f7ca2d9469f430a48a6aa1555bde0f6a23122 +SIZE (wordpress-5.2.2.tar.gz) = 11200591 From owner-svn-ports-all@freebsd.org Fri Jun 21 08:15:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1866415D4291; Fri, 21 Jun 2019 08:15:59 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B19F285D7F; Fri, 21 Jun 2019 08:15:58 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 93F66208D9; Fri, 21 Jun 2019 08:15:58 +0000 (UTC) (envelope-from 0mp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L8FwYd091770; Fri, 21 Jun 2019 08:15:58 GMT (envelope-from 0mp@FreeBSD.org) Received: (from 0mp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L8FwZl091768; Fri, 21 Jun 2019 08:15:58 GMT (envelope-from 0mp@FreeBSD.org) Message-Id: <201906210815.x5L8FwZl091768@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: 0mp set sender to 0mp@FreeBSD.org using -f From: Mateusz Piotrowski <0mp@FreeBSD.org> Date: Fri, 21 Jun 2019 08:15:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504771 - head/devel/py-testfixtures X-SVN-Group: ports-head X-SVN-Commit-Author: 0mp X-SVN-Commit-Paths: head/devel/py-testfixtures X-SVN-Commit-Revision: 504771 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B19F285D7F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:15:59 -0000 Author: 0mp Date: Fri Jun 21 08:15:57 2019 New Revision: 504771 URL: https://svnweb.freebsd.org/changeset/ports/504771 Log: Update to 6.10.0 Changelog: https://github.com/Simplistix/testfixtures/blob/master/CHANGELOG.rst#6100-19-jun-2019 Modified: head/devel/py-testfixtures/Makefile head/devel/py-testfixtures/distinfo Modified: head/devel/py-testfixtures/Makefile ============================================================================== --- head/devel/py-testfixtures/Makefile Fri Jun 21 08:15:04 2019 (r504770) +++ head/devel/py-testfixtures/Makefile Fri Jun 21 08:15:57 2019 (r504771) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= testfixtures -PORTVERSION= 6.9.0 +PORTVERSION= 6.10.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-testfixtures/distinfo ============================================================================== --- head/devel/py-testfixtures/distinfo Fri Jun 21 08:15:04 2019 (r504770) +++ head/devel/py-testfixtures/distinfo Fri Jun 21 08:15:57 2019 (r504771) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560429013 -SHA256 (testfixtures-6.9.0.tar.gz) = 772c9e3a2743782c9e432de4334da71d2896a94a35748d60dbcdd30271010beb -SIZE (testfixtures-6.9.0.tar.gz) = 111506 +TIMESTAMP = 1561030691 +SHA256 (testfixtures-6.10.0.tar.gz) = 9d230c5c80746f9f86a16a1f751a5cf5d8e317d4cc48243a19fb180d22303bce +SIZE (testfixtures-6.10.0.tar.gz) = 111976 From owner-svn-ports-all@freebsd.org Fri Jun 21 08:19:47 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F3EF15D42F3; Fri, 21 Jun 2019 08:19:47 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2A5C685E7F; Fri, 21 Jun 2019 08:19:47 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 188A8208DB; Fri, 21 Jun 2019 08:19:47 +0000 (UTC) (envelope-from rodrigo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L8JkrU092059; Fri, 21 Jun 2019 08:19:46 GMT (envelope-from rodrigo@FreeBSD.org) Received: (from rodrigo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L8JkVX092055; Fri, 21 Jun 2019 08:19:46 GMT (envelope-from rodrigo@FreeBSD.org) Message-Id: <201906210819.x5L8JkVX092055@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigo set sender to rodrigo@FreeBSD.org using -f From: Rodrigo Osorio Date: Fri, 21 Jun 2019 08:19:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504772 - in head: . x11-clocks/emiclock X-SVN-Group: ports-head X-SVN-Commit-Author: rodrigo X-SVN-Commit-Paths: in head: . x11-clocks/emiclock X-SVN-Commit-Revision: 504772 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2A5C685E7F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:19:48 -0000 Author: rodrigo Date: Fri Jun 21 08:19:46 2019 New Revision: 504772 URL: https://svnweb.freebsd.org/changeset/ports/504772 Log: Add UTF-8 resource file to x11-clocks/emiclock Add LICENSE section and update the LEGAL file accordingly. Bump PORTREVISION x11-clocks/emiclock has a very restrictive license and changes has to be approved by Masayuki Koba the original author. The approval was obtained by private email exchange (in Japanese). ======================= From: koba@hoge.org To: nyan@FreeBSD.org > nyan wrote: > Could you please approve the followings. > > 1. Install and use UTF-8 resource file converted from EUC > (resources/R6/EUC/EmiClock.ad) without any changes. > > 2. Add the above method to emiclock's port and redistribute a package > that include UTF-8 resource file. Of course, I think that they are suitable ways these days so you may modify it. ======================= PR: 238308 Submitted by: nyan Approved by: Masayuki Koba (author) Modified: head/LEGAL head/x11-clocks/emiclock/Makefile head/x11-clocks/emiclock/pkg-plist Modified: head/LEGAL ============================================================================== --- head/LEGAL Fri Jun 21 08:15:57 2019 (r504771) +++ head/LEGAL Fri Jun 21 08:19:46 2019 (r504772) @@ -72,6 +72,7 @@ ecw_jpeg_2000_*.zip graphics/libecwj2 Registration req edith* editors/edith Redistribution not allowed eijiro* japanese/eijiro-fpw The original dictionary is not free emc2* math/emc2 No resale, contact author for commercial usage +emiclock-* x11-clocks/emiclock Changes on the code or repackaging requires author approval et-linux-* games/linux-enemyterritory Redistribution limited etqw* games/linux-etqw-demo-server Redistribution limited etqw* games/linux-etqw-server Redistribution limited Modified: head/x11-clocks/emiclock/Makefile ============================================================================== --- head/x11-clocks/emiclock/Makefile Fri Jun 21 08:15:57 2019 (r504771) +++ head/x11-clocks/emiclock/Makefile Fri Jun 21 08:19:46 2019 (r504772) @@ -3,19 +3,25 @@ PORTNAME= emiclock PORTVERSION= 2.0.2 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= x11-clocks MASTER_SITES= LOCAL/nyan MAINTAINER= ports@FreeBSD.org COMMENT= Hyper-animated face analog clock for X11 -USES= imake +LICENSE= UNKNOWN +LICENSE_NAME= Emi Clock for X11 +LICENSE_FILE= ${WRKSRC}/COPYRIGHT.en +LICENSE_PERMS= dist-mirror no-dist-sell pkg-mirror no-pkg-sell auto-accept + +USES= iconv:build imake USE_XORG= ice sm x11 xaw xext xmu xpm xt LANGRES= resources/R6/EUC/EmiClock.ad LANGDIR= ${PREFIX}/lib/X11/ja_JP.eucJP/app-defaults LANGDIR2= ${PREFIX}/lib/X11/ja_JP.EUC/app-defaults +LANGDIR_UTF8= ${PREFIX}/lib/X11/ja_JP.UTF-8/app-defaults OPTIONS_DEFINE= DOCS @@ -36,6 +42,9 @@ post-install: @${MKDIR} ${STAGEDIR}${LANGDIR2} ${LN} -sf ../../ja_JP.eucJP/app-defaults/EmiClock \ ${STAGEDIR}${LANGDIR2}/EmiClock + @${MKDIR} ${STAGEDIR}${LANGDIR_UTF8} + ${ICONV_CMD} -f euc-jp -t utf-8 ${WRKSRC}/${LANGRES} > \ + ${STAGEDIR}${LANGDIR_UTF8}/EmiClock post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/x11-clocks/emiclock/pkg-plist ============================================================================== --- head/x11-clocks/emiclock/pkg-plist Fri Jun 21 08:15:57 2019 (r504771) +++ head/x11-clocks/emiclock/pkg-plist Fri Jun 21 08:19:46 2019 (r504772) @@ -3,6 +3,7 @@ lib/X11/EmiClock/myu.au lib/X11/app-defaults/EmiClock lib/X11/ja_JP.EUC/app-defaults/EmiClock lib/X11/ja_JP.eucJP/app-defaults/EmiClock +lib/X11/ja_JP.UTF-8/app-defaults/EmiClock man/man1/emiclock.1.gz %%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT %%PORTDOCS%%%%DOCSDIR%%/COPYRIGHT.en From owner-svn-ports-all@freebsd.org Fri Jun 21 08:25:52 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4283315D462E; Fri, 21 Jun 2019 08:25:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E8297864C6; Fri, 21 Jun 2019 08:25:51 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C35B020A87; Fri, 21 Jun 2019 08:25:51 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L8PpFa097797; Fri, 21 Jun 2019 08:25:51 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L8PoRk097786; Fri, 21 Jun 2019 08:25:50 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906210825.x5L8PoRk097786@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 21 Jun 2019 08:25:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504773 - in head/games: freeciv freeciv-nox11 freeciv/files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/games: freeciv freeciv-nox11 freeciv/files X-SVN-Commit-Revision: 504773 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E8297864C6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.970,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:25:52 -0000 Author: tobik Date: Fri Jun 21 08:25:49 2019 New Revision: 504773 URL: https://svnweb.freebsd.org/changeset/ports/504773 Log: games/freeciv: Update to 2.6.0 - Add options to allow building of more of the various clients. For now just enable the Qt client by default. Changes: https://freeciv.fandom.com/wiki/NEWS-2.6.0 Added: head/games/freeciv/files/ head/games/freeciv/files/patch-common_Makefile.am (contents, props changed) head/games/freeciv/files/patch-m4_sdl2-client.m4 (contents, props changed) head/games/freeciv/files/patch-server_Makefile.am (contents, props changed) Modified: head/games/freeciv-nox11/Makefile head/games/freeciv/Makefile head/games/freeciv/distinfo head/games/freeciv/pkg-descr head/games/freeciv/pkg-plist Modified: head/games/freeciv-nox11/Makefile ============================================================================== --- head/games/freeciv-nox11/Makefile Fri Jun 21 08:19:46 2019 (r504772) +++ head/games/freeciv-nox11/Makefile Fri Jun 21 08:25:49 2019 (r504773) @@ -1,10 +1,10 @@ # Created by: Andrew Pantyukhin # $FreeBSD$ +PKGNAMESUFFIX= -nox11 + MASTERDIR= ${.CURDIR}/../freeciv -# Explicitly exclude X11 options -OPTIONS_EXCLUDE= SDL X11 -PKGNAMESUFFIX= -nox11 +OPTIONS_EXCLUDE= ${OPTIONS_MULTI_UI} .include "${MASTERDIR}/Makefile" Modified: head/games/freeciv/Makefile ============================================================================== --- head/games/freeciv/Makefile Fri Jun 21 08:19:46 2019 (r504772) +++ head/games/freeciv/Makefile Fri Jun 21 08:25:49 2019 (r504773) @@ -2,84 +2,103 @@ # $FreeBSD$ PORTNAME= freeciv -PORTVERSION= 2.5.10 -PORTREVISION= 4 +PORTVERSION= 2.6.0 CATEGORIES= games -MASTER_SITES= SF/freeciv/Freeciv%20${PORTVERSION:R}/${PORTVERSION} \ - http://download.gna.org/freeciv/stable/ +MASTER_SITES= SF/freeciv/Freeciv%20${PORTVERSION:R}/${PORTVERSION} MAINTAINER= tobik@FreeBSD.org COMMENT= Free turn-based multiplayer strategy LICENSE= GPLv2+ +LICENSE_FILE= ${WRKSRC}/COPYING -RUN_DEPENDS= hicolor-icon-theme>=0:misc/hicolor-icon-theme -LIB_DEPENDS= libltdl.so:devel/libltdl \ - libcurl.so:ftp/curl +LIB_DEPENDS= libcurl.so:ftp/curl \ + libltdl.so:devel/libltdl -USES= gmake iconv libtool localbase pkgconfig tar:bzip2 python \ - sqlite readline +USES= autoreconf compiler:c++11-lang gmake iconv libtool lua:53 \ + pkgconfig readline ssl tar:bzip2 + GNU_CONFIGURE= yes CONFIGURE_ARGS= ${ICONV_CONFIGURE_ARG} \ + --disable-static \ --enable-aimodules \ - --enable-fcdb=sqlite3 \ - --enable-shared \ - --program-transform-name= \ - --without-ggz-client \ - --without-ggz-server + --enable-client=${_FREECIV_CLIENT:ts,} \ + --enable-fcdb=${_FREECIV_DB:ts,} \ + --enable-fcmp=${_FREECIV_MP:U:S/^/cli /:ts,} \ + --enable-mapimg=no \ + --enable-shared +LDFLAGS+= -Wl,--as-needed + PORTDATA= * -OPTIONS_DEFINE?= NLS X11 SDL MYSQL IPV6 DOCS -OPTIONS_DEFAULT?= X11 +OPTIONS_DEFINE= DOCS IPV6 NLS +OPTIONS_DEFAULT= QT5 SQLITE3 +OPTIONS_MULTI= DB UI +OPTIONS_MULTI_DB= MYSQL PGSQL SQLITE3 +OPTIONS_MULTI_UI= GTK2 GTK3 QT5 SDL OPTIONS_SUB= yes -SDL_CONFIGURE_ON= --enable-client=gtk,sdl -SDL_USE= SDL=sdl,image,ttf,gfx -MYSQL_CONFIGURE_ON= --enable-fcdb=mysql --with-mysql-prefix=${LOCALBASE} -MYSQL_USES= mysql + +DB_DESC= Database support +UI_DESC= GUI clients + +GTK2_USES= gnome sdl +GTK2_USE= GNOME=gdkpixbuf2,glib20,gtk20,pango SDL=mixer2 +GTK2_VARS= _FREECIV_CLIENT+=gtk2 \ + _FREECIV_MP+=gtk2 + +GTK3_USES= gnome sdl +GTK3_USE= GNOME=cairo,gdkpixbuf2,glib20,gtk30,pango SDL=mixer2 +GTK3_VARS= _FREECIV_CLIENT+=gtk3 \ + _FREECIV_MP+=gtk3 + IPV6_CONFIGURE_ENABLE= ipv6 + +MYSQL_USES= mysql +MYSQL_CONFIGURE_ON= --with-mysql-prefix=${LOCALBASE} +MYSQL_VARS= _FREECIV_DB+=mysql + NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls -.include +PGSQL_USES= pgsql +PGSQL_CONFIGURE_ON= --with-postgres-prefix=${LOCALBASE} +PGSQL_VARS= _FREECIV_DB+=postgres -.if ${PORT_OPTIONS:MSDL} && empty(PORT_OPTIONS:MX11) -IGNORE= cannot use SDL without X11: re-run make config -.endif +QT5_USES= qt:5 sdl +QT5_USE= QT=core,gui,widgets,buildtools_build SDL=mixer2 +QT5_CONFIGURE_ON= --with-qt5-includes=${LOCALBASE}/${QT_INCDIR_REL} \ + --with-qt5-libs=${LOCALBASE}/${QT_LIBDIR_REL} +QT5_CONFIGURE_ENABLE= ruledit +QT5_VARS= _FREECIV_CLIENT+=qt \ + _FREECIV_MP+=qt -.if ${PORT_OPTIONS:MX11} -LIB_DEPENDS+= libtiff.so:graphics/tiff \ - libpng.so:graphics/png \ - libfontconfig.so:x11-fonts/fontconfig \ - libfreetype.so:print/freetype2 -USE_XORG= xpm -USE_SDL+= mixer -USE_GNOME= gtk20 cairo -INSTALLS_ICONS= yes -. if ! ${PORT_OPTIONS:MSDL} -CONFIGURE_ARGS+=--enable-client=gtk -. endif -CONFLICTS= freeciv-nox11-[0-9]* -PLIST_SUB+= GTK="" +SDL_USES= sdl +SDL_USE= SDL=gfx2,image2,mixer2,ttf2 +SDL_VARS= _FREECIV_CLIENT+=sdl2 + +SQLITE3_USES= sqlite +SQLITE3_VARS= _FREECIV_DB+=sqlite3 + +# Save OPTIONS_MULTI_UI value for later before the framework +# does things with it. +_FREECIV_CLIENTS:= ${OPTIONS_MULTI_UI} + +.include + +.if ${_FREECIV_CLIENT:Uno} == no +CONFLICTS= freeciv +PLIST_SUB+= ${_FREECIV_CLIENTS:S/$/="@comment "/} \ + CLIENT="@comment " .else -CONFIGURE_ARGS+=--enable-client=no --enable-fcmp=no -CONFLICTS= freeciv-[0-9]* -PLIST_SUB+= GTK="@comment " +CONFLICTS= freeciv-nox11 +PLIST_SUB+= CLIENT="" .endif -post-patch: - ${FIND} ${WRKSRC} -name Makefile.in|${XARGS} ${REINPLACE_CMD} -e \ - '/pkgdatadir/s|[(]datadir)/@PACKAGE@|(prefix)/${DATADIR_REL}|' - ${REINPLACE_CMD} 's/minor=99/minor=0/' ${WRKSRC}/configure - ${REINPLACE_CMD} 's/(LIB_GGZMOD)/& $$(LIB_GGZ_GTK)/' \ - ${WRKSRC}/client/Makefile.in +# Avoid annoying and too general LUA_LIBDIR=lib sub from USES=lua +PLIST_SUB:= ${PLIST_SUB:NLUA_LIBDIR=*} post-install: - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libfreeciv*.so - ${RM} ${STAGEDIR}${PREFIX}/etc/ggz.modules + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libfreeciv*.so -post-install-X11-on: - ${INSTALL_DATA} ${WRKSRC}/data/civclient.dsc ${STAGEDIR}${DATADIR}/ - cd ${STAGEDIR}/${PREFIX}/bin && ${LN} -s freeciv-gtk2 freeciv-client - -.include +.include Modified: head/games/freeciv/distinfo ============================================================================== --- head/games/freeciv/distinfo Fri Jun 21 08:19:46 2019 (r504772) +++ head/games/freeciv/distinfo Fri Jun 21 08:25:49 2019 (r504773) @@ -1,3 +1,3 @@ -TIMESTAMP = 1517835109 -SHA256 (freeciv-2.5.10.tar.bz2) = c8a14156562dce2f0a7b96390c2d5a35314f1124c448782a6a47b0c51cfcb302 -SIZE (freeciv-2.5.10.tar.bz2) = 40920632 +TIMESTAMP = 1560586935 +SHA256 (freeciv-2.6.0.tar.bz2) = 7c20399198d6c7d846fed9a69b02e01134ae5340a3ae0f99d1e38063ade6c999 +SIZE (freeciv-2.6.0.tar.bz2) = 51912466 Added: head/games/freeciv/files/patch-common_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/freeciv/files/patch-common_Makefile.am Fri Jun 21 08:25:49 2019 (r504773) @@ -0,0 +1,11 @@ +--- common/Makefile.am.orig 2019-06-16 16:23:58 UTC ++++ common/Makefile.am +@@ -141,7 +141,7 @@ libfreeciv_la_LIBADD = \ + $(top_builddir)/utility/libcivutility.la \ + $(top_builddir)/common/aicore/libaicore.la \ + $(top_builddir)/common/scriptcore/libscriptcore.la \ +- $(COMMON_LIBS) ++ $(COMMON_LIBS) $(LIBICONV) + + BUILT_SOURCES = packets_gen.c packets_gen.h + Added: head/games/freeciv/files/patch-m4_sdl2-client.m4 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/freeciv/files/patch-m4_sdl2-client.m4 Fri Jun 21 08:25:49 2019 (r504773) @@ -0,0 +1,11 @@ +--- m4/sdl2-client.m4.orig 2019-06-15 17:19:23 UTC ++++ m4/sdl2-client.m4 +@@ -82,7 +82,7 @@ AC_DEFUN([FC_SDL2_PROJECT], + ac_save_LIBS="$LIBS" + CPPFLAGS="$CPPFLAGS $SDL2_CFLAGS" + CFLAGS="$CFLAGS $SDL2_CFLAGS" +- LIBS="$LIBS $SDL2_LIBS" ++ LIBS="$LIBS $SDL2_LIBS -lm" + AC_CHECK_LIB([$1], [$2], + [sdl2_lib_found="yes"], [sdl2_lib_found="no" + sdl2_h_found="no"]) Added: head/games/freeciv/files/patch-server_Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/freeciv/files/patch-server_Makefile.am Fri Jun 21 08:25:49 2019 (r504773) @@ -0,0 +1,12 @@ +--- server/Makefile.am.orig 2019-06-16 16:26:20 UTC ++++ server/Makefile.am +@@ -153,7 +153,8 @@ srvlibs = \ + + libfreeciv_srv_la_LIBADD = \ + $(srvlibs) $(SRV_LIB_LIBS) \ +- $(LUA_LIBS) $(TOLUA_LIBS) $(LUASQL_LIBS) ++ $(LUA_LIBS) $(TOLUA_LIBS) $(LUASQL_LIBS) \ ++ $(SERVER_LIBS) + + exe_ldflags = + Modified: head/games/freeciv/pkg-descr ============================================================================== --- head/games/freeciv/pkg-descr Fri Jun 21 08:19:46 2019 (r504772) +++ head/games/freeciv/pkg-descr Fri Jun 21 08:25:49 2019 (r504773) @@ -13,5 +13,3 @@ That also means it has very extensive multilanguage su rare in games. WWW: http://www.freeciv.org/ - --Adam Modified: head/games/freeciv/pkg-plist ============================================================================== --- head/games/freeciv/pkg-plist Fri Jun 21 08:19:46 2019 (r504772) +++ head/games/freeciv/pkg-plist Fri Jun 21 08:25:49 2019 (r504773) @@ -1,43 +1,59 @@ -%%X11%%bin/freeciv-client -%%GTK%%bin/freeciv-gtk2 -%%X11%%bin/freeciv-manual -%%GTK%%bin/freeciv-mp-gtk2 -%%SDL%%bin/freeciv-sdl +%%CLIENT%%bin/freeciv-manual +%%GTK2%%bin/freeciv-gtk2 +%%GTK3%%bin/freeciv-gtk3 +bin/freeciv-mp-cli +%%GTK2%%bin/freeciv-mp-gtk2 +%%GTK3%%bin/freeciv-mp-gtk3 +%%QT5%%bin/freeciv-mp-qt +%%QT5%%bin/freeciv-qt +%%QT5%%bin/freeciv-ruledit +%%SDL%%bin/freeciv-sdl2 bin/freeciv-server %%ETCDIR%%/database.lua -lib/libfreeciv-srv.a lib/libfreeciv-srv.so lib/libfreeciv-srv.so.0 lib/libfreeciv-srv.so.0.0.0 -lib/libfreeciv.a lib/libfreeciv.so lib/libfreeciv.so.0 lib/libfreeciv.so.0.0.0 -man/man6/freeciv-client.6.gz -man/man6/freeciv-gtk2.6.gz -man/man6/freeciv-gtk3.6.gz +%%CLIENT%%man/man6/freeciv-client.6.gz +%%GTK2%%man/man6/freeciv-gtk2.6.gz +@comment man/man6/freeciv-gtk3.22.6.gz +%%GTK3%%man/man6/freeciv-gtk3.6.gz man/man6/freeciv-manual.6.gz man/man6/freeciv-modpack.6.gz man/man6/freeciv-mp-cli.6.gz -man/man6/freeciv-mp-gtk2.6.gz -man/man6/freeciv-mp-gtk3.6.gz -man/man6/freeciv-mp-qt.6.gz -man/man6/freeciv-qt.6.gz -man/man6/freeciv-sdl.6.gz +%%GTK2%%man/man6/freeciv-mp-gtk2.6.gz +%%GTK3%%man/man6/freeciv-mp-gtk3.6.gz +%%QT5%%man/man6/freeciv-mp-qt.6.gz +%%QT5%%man/man6/freeciv-qt.6.gz +%%QT5%%man/man6/freeciv-ruledit.6.gz +@comment man/man6/freeciv-sdl.6.gz +%%SDL%%man/man6/freeciv-sdl2.6.gz man/man6/freeciv-server.6.gz -man/man6/freeciv-xaw.6.gz -%%GTK%%share/appdata/freeciv-gtk2.appdata.xml -%%GTK%%share/appdata/freeciv-mp-gtk2.appdata.xml -%%SDL%%share/appdata/freeciv-sdl.appdata.xml +@comment man/man6/freeciv-xaw.6.gz +%%GTK2%%share/appdata/freeciv-gtk2.appdata.xml +%%GTK3%%share/appdata/freeciv-gtk3.appdata.xml +%%GTK2%%share/appdata/freeciv-mp-gtk2.appdata.xml +%%GTK3%%share/appdata/freeciv-mp-gtk3.appdata.xml +%%QT5%%share/appdata/freeciv-mp-qt.appdata.xml +%%QT5%%share/appdata/freeciv-qt.appdata.xml +%%QT5%%share/appdata/freeciv-ruledit.appdata.xml +%%SDL%%share/appdata/freeciv-sdl2.appdata.xml share/appdata/freeciv-server.appdata.xml -%%GTK%%share/applications/freeciv-gtk2.desktop -%%GTK%%share/applications/freeciv-mp-gtk2.desktop -%%SDL%%share/applications/freeciv-sdl.desktop +%%GTK2%%share/applications/freeciv-gtk2.desktop +%%GTK2%%share/applications/freeciv-mp-gtk2.desktop +%%GTK3%%share/applications/freeciv-mp-gtk3.desktop +%%QT5%%share/applications/freeciv-mp-qt.desktop +%%QT5%%share/applications/freeciv-qt.desktop +%%QT5%%share/applications/freeciv-ruledit.desktop +%%SDL%%share/applications/freeciv-sdl2.desktop +%%GTK3%%share/applications/freeciv.desktop share/applications/freeciv-server.desktop %%PORTDOCS%%%%DOCSDIR%%/ABOUT-NLS %%PORTDOCS%%%%DOCSDIR%%/AUTHORS %%PORTDOCS%%%%DOCSDIR%%/BUGS -%%PORTDOCS%%%%DOCSDIR%%/COPYING +@comment %%PORTDOCS%%%%DOCSDIR%%/COPYING %%PORTDOCS%%%%DOCSDIR%%/ChangeLog %%PORTDOCS%%%%DOCSDIR%%/CodingStyle %%PORTDOCS%%%%DOCSDIR%%/FAQ @@ -46,10 +62,11 @@ share/applications/freeciv-server.desktop %%PORTDOCS%%%%DOCSDIR%%/INSTALL %%PORTDOCS%%%%DOCSDIR%%/INSTALL.Cygwin %%PORTDOCS%%%%DOCSDIR%%/NEWS -%%PORTDOCS%%%%DOCSDIR%%/NEWS-2.5 +%%PORTDOCS%%%%DOCSDIR%%/NEWS-2.6 %%PORTDOCS%%%%DOCSDIR%%/README.AI %%PORTDOCS%%%%DOCSDIR%%/README.AI_modules -%%PORTDOCS%%%%DOCSDIR%%/README.SDLClient +%%PORTDOCS%%%%DOCSDIR%%/README.achievements +%%PORTDOCS%%%%DOCSDIR%%/README.actions %%PORTDOCS%%%%DOCSDIR%%/README.agents %%PORTDOCS%%%%DOCSDIR%%/README.attributes %%PORTDOCS%%%%DOCSDIR%%/README.delta @@ -57,101 +74,135 @@ share/applications/freeciv-server.desktop %%PORTDOCS%%%%DOCSDIR%%/README.fcdb %%PORTDOCS%%%%DOCSDIR%%/README.governor %%PORTDOCS%%%%DOCSDIR%%/README.graphics +%%PORTDOCS%%%%DOCSDIR%%/README.msys2 %%PORTDOCS%%%%DOCSDIR%%/README.nations %%PORTDOCS%%%%DOCSDIR%%/README.packaging -%%PORTDOCS%%%%DOCSDIR%%/README.ruleset_civ2civ3 -%%PORTDOCS%%%%DOCSDIR%%/README.ruleset_experimental -%%PORTDOCS%%%%DOCSDIR%%/README.ruleset_multiplayer %%PORTDOCS%%%%DOCSDIR%%/README.rulesets %%PORTDOCS%%%%DOCSDIR%%/README.scorelog %%PORTDOCS%%%%DOCSDIR%%/README.sound %%PORTDOCS%%%%DOCSDIR%%/README.tilesets %%PORTDOCS%%%%DOCSDIR%%/TODO -%%X11%%share/icons/hicolor/128x128/apps/freeciv-client.png -%%X11%%share/icons/hicolor/128x128/apps/freeciv-modpack.png -%%X11%%share/icons/hicolor/128x128/apps/freeciv-server.png -%%X11%%share/icons/hicolor/16x16/apps/freeciv-client.png -%%X11%%share/icons/hicolor/16x16/apps/freeciv-modpack.png -%%X11%%share/icons/hicolor/16x16/apps/freeciv-server.png -%%X11%%share/icons/hicolor/32x32/apps/freeciv-client.png -%%X11%%share/icons/hicolor/32x32/apps/freeciv-modpack.png -%%X11%%share/icons/hicolor/32x32/apps/freeciv-server.png -%%X11%%share/icons/hicolor/48x48/apps/freeciv-client.png -%%X11%%share/icons/hicolor/48x48/apps/freeciv-modpack.png -%%X11%%share/icons/hicolor/48x48/apps/freeciv-server.png -%%X11%%share/icons/hicolor/64x64/apps/freeciv-client.png -%%X11%%share/icons/hicolor/64x64/apps/freeciv-modpack.png -%%X11%%share/icons/hicolor/64x64/apps/freeciv-server.png +%%CLIENT%%share/icons/hicolor/128x128/apps/freeciv-client.png +%%CLIENT%%share/icons/hicolor/128x128/apps/freeciv-modpack.png +share/icons/hicolor/128x128/apps/freeciv-server.png +%%CLIENT%%share/icons/hicolor/16x16/apps/freeciv-client.png +%%CLIENT%%share/icons/hicolor/16x16/apps/freeciv-modpack.png +share/icons/hicolor/16x16/apps/freeciv-server.png +%%CLIENT%%share/icons/hicolor/32x32/apps/freeciv-client.png +%%CLIENT%%share/icons/hicolor/32x32/apps/freeciv-modpack.png +share/icons/hicolor/32x32/apps/freeciv-server.png +%%CLIENT%%share/icons/hicolor/48x48/apps/freeciv-client.png +%%CLIENT%%share/icons/hicolor/48x48/apps/freeciv-modpack.png +share/icons/hicolor/48x48/apps/freeciv-server.png +%%CLIENT%%share/icons/hicolor/64x64/apps/freeciv-client.png +%%CLIENT%%share/icons/hicolor/64x64/apps/freeciv-modpack.png +share/icons/hicolor/64x64/apps/freeciv-server.png %%NLS%%share/locale/ar/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/ar/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/ar/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/bg/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/bg/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/bg/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/ca/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/ca/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/ca/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/cs/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/cs/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/cs/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/da/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/da/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/da/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/de/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/de/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/de/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/el/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/el/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/el/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/en_GB/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/en_GB/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/eo/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/eo/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/eo/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/es/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/es/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/es/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/et/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/et/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/et/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/fa/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/fa/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/fa/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/fi/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/fi/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/fi/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/fr/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/fr/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/fr/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/ga/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/ga/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/ga/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/gd/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/gd/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/gd/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/he/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/he/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/he/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/hu/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/hu/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/hu/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/id/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/id/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/id/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/it/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/it/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/it/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/ja/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/ja/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/ja/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/ko/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/ko/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/ko/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/lt/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/lt/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/lt/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/nb/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/nb/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/nb/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/nl/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/nl/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/nl/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/pl/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/pl/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/pl/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/pt/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/pt/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/pt/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/pt_BR/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/ro/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/ro/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/ro/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/ru/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/ru/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/ru/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/sr/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/sr/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/sr/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/sv/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/sv/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/sv/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/tr/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/tr/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/tr/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/uk/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/uk/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/uk/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/zh_CN/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/freeciv.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/freeciv-nations.mo +%%QT5%%%%NLS%%share/locale/zh_TW/LC_MESSAGES/freeciv-ruledit.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/freeciv.mo -%%X11%%share/pixmaps/freeciv-client.png +%%CLIENT%%share/pixmaps/freeciv-client.png From owner-svn-ports-all@freebsd.org Fri Jun 21 08:32:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 68E6B15D486E; Fri, 21 Jun 2019 08:32:37 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 181A7868FE; Fri, 21 Jun 2019 08:32:37 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0799920C2B; Fri, 21 Jun 2019 08:32:37 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L8WbtL002864; Fri, 21 Jun 2019 08:32:37 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L8WaeX002862; Fri, 21 Jun 2019 08:32:36 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201906210832.x5L8WaeX002862@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Fri, 21 Jun 2019 08:32:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504774 - head/textproc/apache-solr X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: head/textproc/apache-solr X-SVN-Commit-Revision: 504774 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 181A7868FE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:32:37 -0000 Author: mfechner Date: Fri Jun 21 08:32:36 2019 New Revision: 504774 URL: https://svnweb.freebsd.org/changeset/ports/504774 Log: Upgrade to version 8.1.1. For detailed changelog see here: https://lucene.apache.org/solr/8_1_1/changes/Changes.html Modified: head/textproc/apache-solr/Makefile head/textproc/apache-solr/distinfo head/textproc/apache-solr/pkg-plist Modified: head/textproc/apache-solr/Makefile ============================================================================== --- head/textproc/apache-solr/Makefile Fri Jun 21 08:25:49 2019 (r504773) +++ head/textproc/apache-solr/Makefile Fri Jun 21 08:32:36 2019 (r504774) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= apache-solr -PORTVERSION= 8.0.0 +PORTVERSION= 8.1.1 CATEGORIES= textproc java MASTER_SITES= APACHE/lucene/solr/${PORTVERSION} DISTNAME= solr-${PORTVERSION} Modified: head/textproc/apache-solr/distinfo ============================================================================== --- head/textproc/apache-solr/distinfo Fri Jun 21 08:25:49 2019 (r504773) +++ head/textproc/apache-solr/distinfo Fri Jun 21 08:32:36 2019 (r504774) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552653559 -SHA256 (solr-8.0.0.tgz) = 0e6392d3b980ab917c731b054101aafcebceacc0e5063cb1e305aeeaec911d12 -SIZE (solr-8.0.0.tgz) = 171894486 +TIMESTAMP = 1561102507 +SHA256 (solr-8.1.1.tgz) = b515598c11f53fe28d682e3d71238642e9f34509194e3c4746e39bb7d7bb46a1 +SIZE (solr-8.1.1.tgz) = 175620176 Modified: head/textproc/apache-solr/pkg-plist ============================================================================== --- head/textproc/apache-solr/pkg-plist Fri Jun 21 08:25:49 2019 (r504773) +++ head/textproc/apache-solr/pkg-plist Fri Jun 21 08:32:36 2019 (r504774) @@ -28,8 +28,8 @@ solr/contrib/clustering/README.txt solr/contrib/clustering/lib/attributes-binder-1.3.3.jar solr/contrib/clustering/lib/carrot2-guava-18.0.jar solr/contrib/clustering/lib/carrot2-mini-3.16.0.jar -solr/contrib/clustering/lib/jackson-annotations-2.9.6.jar -solr/contrib/clustering/lib/jackson-databind-2.9.6.jar +solr/contrib/clustering/lib/jackson-annotations-2.9.8.jar +solr/contrib/clustering/lib/jackson-databind-2.9.8.jar solr/contrib/clustering/lib/simple-xml-2.7.1.jar solr/contrib/dataimporthandler-extras/lib/activation-1.1.1.jar solr/contrib/dataimporthandler-extras/lib/gimap-1.5.1.jar @@ -89,21 +89,23 @@ solr/contrib/prometheus-exporter/bin/solr-exporter.cmd solr/contrib/prometheus-exporter/conf/grafana-solr-dashboard.json solr/contrib/prometheus-exporter/conf/solr-exporter-config.xml solr/contrib/prometheus-exporter/lib/argparse4j-0.8.1.jar -solr/contrib/prometheus-exporter/lib/jackson-annotations-2.9.6.jar -solr/contrib/prometheus-exporter/lib/jackson-core-2.9.6.jar -solr/contrib/prometheus-exporter/lib/jackson-databind-2.9.6.jar +solr/contrib/prometheus-exporter/lib/jackson-annotations-2.9.8.jar +solr/contrib/prometheus-exporter/lib/jackson-core-2.9.8.jar +solr/contrib/prometheus-exporter/lib/jackson-databind-2.9.8.jar solr/contrib/prometheus-exporter/lib/jackson-jq-0.0.8.jar -solr/contrib/prometheus-exporter/lib/log4j-api-2.11.0.jar -solr/contrib/prometheus-exporter/lib/log4j-core-2.11.0.jar -solr/contrib/prometheus-exporter/lib/log4j-slf4j-impl-2.11.0.jar +solr/contrib/prometheus-exporter/lib/log4j-api-2.11.2.jar +solr/contrib/prometheus-exporter/lib/log4j-core-2.11.2.jar +solr/contrib/prometheus-exporter/lib/log4j-slf4j-impl-2.11.2.jar solr/contrib/prometheus-exporter/lib/simpleclient-0.2.0.jar solr/contrib/prometheus-exporter/lib/simpleclient_common-0.2.0.jar solr/contrib/prometheus-exporter/lib/simpleclient_httpserver-0.2.0.jar solr/contrib/prometheus-exporter/lib/slf4j-api-1.7.24.jar solr/contrib/prometheus-exporter/lucene-libs/lucene-analyzers-common-%%PORTVERSION%%.jar -solr/contrib/velocity/lib/commons-collections-3.2.2.jar -solr/contrib/velocity/lib/velocity-1.7.jar -solr/contrib/velocity/lib/velocity-tools-2.0.jar +solr/contrib/velocity/lib/commons-lang3-3.8.1.jar +solr/contrib/velocity/lib/velocity-engine-core-2.0.jar +solr/contrib/velocity/lib/velocity-tools-generic-3.0.jar +solr/contrib/velocity/lib/velocity-tools-view-3.0.jar +solr/contrib/velocity/lib/velocity-tools-view-jsp-3.0.jar solr/dist/solr-analysis-extras-%%PORTVERSION%%.jar solr/dist/solr-analytics-%%PORTVERSION%%.jar solr/dist/solr-cell-%%PORTVERSION%%.jar @@ -137,7 +139,7 @@ solr/dist/solrj-lib/noggit-0.8.jar solr/dist/solrj-lib/slf4j-api-1.7.24.jar solr/dist/solrj-lib/stax2-api-3.1.4.jar solr/dist/solrj-lib/woodstox-core-asl-4.4.1.jar -solr/dist/solrj-lib/zookeeper-3.4.13.jar +solr/dist/solrj-lib/zookeeper-3.4.14.jar solr/dist/test-framework/README.txt solr/dist/test-framework/lib/ant-1.8.2.jar solr/dist/test-framework/lib/hamcrest-core-1.3.jar @@ -162,6 +164,7 @@ solr/example/example-DIH/solr/db/conf/clustering/carro solr/example/example-DIH/solr/db/conf/clustering/carrot2/lingo-attributes.xml solr/example/example-DIH/solr/db/conf/clustering/carrot2/stc-attributes.xml solr/example/example-DIH/solr/db/conf/currency.xml +solr/example/example-DIH/solr/db/conf/dataimport.properties solr/example/example-DIH/solr/db/conf/db-data-config.xml solr/example/example-DIH/solr/db/conf/elevate.xml solr/example/example-DIH/solr/db/conf/lang/contractions_ca.txt @@ -285,6 +288,7 @@ solr/example/example-DIH/solr/solr/conf/clustering/car solr/example/example-DIH/solr/solr/conf/clustering/carrot2/lingo-attributes.xml solr/example/example-DIH/solr/solr/conf/clustering/carrot2/stc-attributes.xml solr/example/example-DIH/solr/solr/conf/currency.xml +solr/example/example-DIH/solr/solr/conf/dataimport.properties solr/example/example-DIH/solr/solr/conf/elevate.xml solr/example/example-DIH/solr/solr/conf/lang/contractions_ca.txt solr/example/example-DIH/solr/solr/conf/lang/contractions_fr.txt @@ -480,7 +484,7 @@ solr/licenses/aspectjrt-LICENSE-EPL.txt solr/licenses/attributes-binder-1.3.3.jar.sha1 solr/licenses/attributes-binder-LICENSE-ASL.txt solr/licenses/attributes-binder-NOTICE.txt -solr/licenses/avatica-core-1.10.0.jar.sha1 +solr/licenses/avatica-core-1.13.0.jar.sha1 solr/licenses/avatica-core-LICENSE-ASL.txt solr/licenses/avatica-core-NOTICE.txt solr/licenses/bcmail-LICENSE-BSD_LIKE.txt @@ -501,10 +505,10 @@ solr/licenses/byte-buddy-NOTICE.txt solr/licenses/caffeine-2.4.0.jar.sha1 solr/licenses/caffeine-LICENSE-ASL.txt solr/licenses/caffeine-NOTICE.txt -solr/licenses/calcite-core-1.13.0.jar.sha1 +solr/licenses/calcite-core-1.18.0.jar.sha1 solr/licenses/calcite-core-LICENSE-ASL.txt solr/licenses/calcite-core-NOTICE.txt -solr/licenses/calcite-linq4j-1.13.0.jar.sha1 +solr/licenses/calcite-linq4j-1.18.0.jar.sha1 solr/licenses/calcite-linq4j-LICENSE-ASL.txt solr/licenses/calcite-linq4j-NOTICE.txt solr/licenses/carrot2-guava-18.0.jar.sha1 @@ -528,7 +532,7 @@ solr/licenses/commons-collections-NOTICE.txt solr/licenses/commons-collections4-4.2.jar.sha1 solr/licenses/commons-collections4-LICENSE-ASL.txt solr/licenses/commons-collections4-NOTICE.txt -solr/licenses/commons-compiler-2.7.6.jar.sha1 +solr/licenses/commons-compiler-3.0.9.jar.sha1 solr/licenses/commons-compiler-LICENSE-BSD.txt solr/licenses/commons-compiler-NOTICE.txt solr/licenses/commons-compress-1.18.jar.sha1 @@ -550,9 +554,6 @@ solr/licenses/commons-fileupload-NOTICE.txt solr/licenses/commons-io-2.5.jar.sha1 solr/licenses/commons-io-LICENSE-ASL.txt solr/licenses/commons-io-NOTICE.txt -solr/licenses/commons-lang-2.6.jar.sha1 -solr/licenses/commons-lang-LICENSE-ASL.txt -solr/licenses/commons-lang-NOTICE.txt solr/licenses/commons-lang3-3.8.1.jar.sha1 solr/licenses/commons-lang3-LICENSE-ASL.txt solr/licenses/commons-lang3-NOTICE.txt @@ -562,16 +563,16 @@ solr/licenses/commons-logging-NOTICE.txt solr/licenses/commons-math3-3.6.1.jar.sha1 solr/licenses/commons-math3-LICENSE-ASL.txt solr/licenses/commons-math3-NOTICE.txt -solr/licenses/commons-text-1.4.jar.sha1 +solr/licenses/commons-text-1.6.jar.sha1 solr/licenses/commons-text-LICENSE-ASL.txt solr/licenses/commons-text-NOTICE.txt -solr/licenses/curator-client-2.8.0.jar.sha1 +solr/licenses/curator-client-2.13.0.jar.sha1 solr/licenses/curator-client-LICENSE-ASL.txt solr/licenses/curator-client-NOTICE.txt -solr/licenses/curator-framework-2.8.0.jar.sha1 +solr/licenses/curator-framework-2.13.0.jar.sha1 solr/licenses/curator-framework-LICENSE-ASL.txt solr/licenses/curator-framework-NOTICE.txt -solr/licenses/curator-recipes-2.8.0.jar.sha1 +solr/licenses/curator-recipes-2.13.0.jar.sha1 solr/licenses/curator-recipes-LICENSE-ASL.txt solr/licenses/curator-recipes-NOTICE.txt solr/licenses/curvesapi-1.04.jar.sha1 @@ -583,12 +584,9 @@ solr/licenses/dec-NOTICE.txt solr/licenses/derby-10.9.1.0.jar.sha1 solr/licenses/derby-LICENSE-ASL.txt solr/licenses/derby-NOTICE.txt -solr/licenses/disruptor-3.4.0.jar.sha1 +solr/licenses/disruptor-3.4.2.jar.sha1 solr/licenses/disruptor-LICENSE-ASL.txt solr/licenses/disruptor-NOTICE.txt -solr/licenses/dom4j-1.6.1.jar.sha1 -solr/licenses/dom4j-LICENSE-BSD_LIKE.txt -solr/licenses/dom4j-NOTICE.txt solr/licenses/eigenbase-properties-1.1.5.jar.sha1 solr/licenses/eigenbase-properties-LICENSE-ASL.txt solr/licenses/eigenbase-properties-NOTICE.txt @@ -597,10 +595,7 @@ solr/licenses/fontbox-LICENSE-ASL.txt solr/licenses/fontbox-NOTICE.txt solr/licenses/gimap-1.5.1.jar.sha1 solr/licenses/gimap-LICENSE-CDDL.txt -solr/licenses/gmetric4j-1.0.7.jar.sha1 -solr/licenses/gmetric4j-LICENSE-BSD.txt -solr/licenses/gmetric4j-NOTICE.txt -solr/licenses/guava-14.0.1.jar.sha1 +solr/licenses/guava-25.1-jre.jar.sha1 solr/licenses/guava-LICENSE-ASL.txt solr/licenses/guava-NOTICE.txt solr/licenses/hadoop-annotations-3.2.0.jar.sha1 @@ -678,18 +673,18 @@ solr/licenses/jackcess-NOTICE.txt solr/licenses/jackcess-encrypt-2.1.4.jar.sha1 solr/licenses/jackcess-encrypt-LICENSE-ASL.txt solr/licenses/jackcess-encrypt-NOTICE.txt -solr/licenses/jackson-annotations-2.9.6.jar.sha1 +solr/licenses/jackson-annotations-2.9.8.jar.sha1 solr/licenses/jackson-annotations-LICENSE-ASL.txt solr/licenses/jackson-annotations-NOTICE.txt -solr/licenses/jackson-core-2.9.6.jar.sha1 +solr/licenses/jackson-core-2.9.8.jar.sha1 solr/licenses/jackson-core-LICENSE-ASL.txt solr/licenses/jackson-core-NOTICE.txt solr/licenses/jackson-core-asl-LICENSE-ASL.txt solr/licenses/jackson-core-asl-NOTICE.txt -solr/licenses/jackson-databind-2.9.6.jar.sha1 +solr/licenses/jackson-databind-2.9.8.jar.sha1 solr/licenses/jackson-databind-LICENSE-ASL.txt solr/licenses/jackson-databind-NOTICE.txt -solr/licenses/jackson-dataformat-smile-2.9.6.jar.sha1 +solr/licenses/jackson-dataformat-smile-2.9.8.jar.sha1 solr/licenses/jackson-dataformat-smile-LICENSE-ASL.txt solr/licenses/jackson-dataformat-smile-NOTICE.txt solr/licenses/jackson-jq-0.0.8.jar.sha1 @@ -697,7 +692,7 @@ solr/licenses/jackson-jq-LICENSE-ASL.txt solr/licenses/jackson-jq-NOTICE.txt solr/licenses/jackson-mapper-asl-LICENSE-ASL.txt solr/licenses/jackson-mapper-asl-NOTICE.txt -solr/licenses/janino-2.7.6.jar.sha1 +solr/licenses/janino-3.0.9.jar.sha1 solr/licenses/janino-LICENSE-BSD.txt solr/licenses/janino-NOTICE.txt solr/licenses/java-libpst-0.8.1.jar.sha1 @@ -746,6 +741,12 @@ solr/licenses/jetty-xml-9.4.14.v20181114.jar.sha1 solr/licenses/jmatio-1.5.jar.sha1 solr/licenses/jmatio-LICENSE-BSD.txt solr/licenses/jmatio-NOTICE.txt +solr/licenses/jose4j-0.6.5.jar.sha1 +solr/licenses/jose4j-LICENSE-ASL.txt +solr/licenses/jose4j-NOTICE.txt +solr/licenses/json-path-2.4.0.jar.sha1 +solr/licenses/json-path-LICENSE-ASL.txt +solr/licenses/json-path-NOTICE.txt solr/licenses/jsonic-1.2.7.jar.sha1 solr/licenses/jsonic-LICENSE-ASL.txt solr/licenses/jsonic-NOTICE.txt @@ -808,35 +809,38 @@ solr/licenses/kerby-util-NOTICE.txt solr/licenses/langdetect-1.1-20120112.jar.sha1 solr/licenses/langdetect-LICENSE-ASL.txt solr/licenses/langdetect-NOTICE.txt -solr/licenses/log4j-1.2-api-2.11.0.jar.sha1 +solr/licenses/log4j-1.2-api-2.11.2.jar.sha1 solr/licenses/log4j-LICENSE-ASL.txt solr/licenses/log4j-NOTICE.txt -solr/licenses/log4j-api-2.11.0.jar.sha1 +solr/licenses/log4j-api-2.11.2.jar.sha1 solr/licenses/log4j-api-LICENSE-ASL.txt solr/licenses/log4j-api-NOTICE.txt -solr/licenses/log4j-core-2.11.0.jar.sha1 +solr/licenses/log4j-core-2.11.2.jar.sha1 solr/licenses/log4j-core-LICENSE-ASL.txt solr/licenses/log4j-core-NOTICE.txt solr/licenses/log4j-slf4j-LICENSE-ASL.txt solr/licenses/log4j-slf4j-NOTICE.txt -solr/licenses/log4j-slf4j-impl-2.11.0.jar.sha1 +solr/licenses/log4j-slf4j-impl-2.11.2.jar.sha1 +solr/licenses/log4j-web-2.11.2.jar.sha1 +solr/licenses/log4j-web-LICENSE-ASL.txt +solr/licenses/log4j-web-NOTICE.txt solr/licenses/metadata-extractor-2.11.0.jar.sha1 solr/licenses/metadata-extractor-LICENSE-PD.txt -solr/licenses/metrics-core-3.2.6.jar.sha1 +solr/licenses/metrics-core-4.0.5.jar.sha1 solr/licenses/metrics-core-LICENSE-ASL.txt solr/licenses/metrics-core-NOTICE.txt -solr/licenses/metrics-ganglia-3.2.6.jar.sha1 -solr/licenses/metrics-ganglia-LICENSE-ASL.txt -solr/licenses/metrics-ganglia-NOTICE.txt -solr/licenses/metrics-graphite-3.2.6.jar.sha1 +solr/licenses/metrics-graphite-4.0.5.jar.sha1 solr/licenses/metrics-graphite-LICENSE-ASL.txt solr/licenses/metrics-graphite-NOTICE.txt solr/licenses/metrics-jetty-LICENSE-ASL.txt solr/licenses/metrics-jetty-NOTICE.txt -solr/licenses/metrics-jetty9-3.2.6.jar.sha1 +solr/licenses/metrics-jetty9-4.0.5.jar.sha1 +solr/licenses/metrics-jmx-4.0.5.jar.sha1 +solr/licenses/metrics-jmx-LICENSE-ASL.txt +solr/licenses/metrics-jmx-NOTICE.txt solr/licenses/metrics-json-LICENSE-ASL.txt solr/licenses/metrics-json-NOTICE.txt -solr/licenses/metrics-jvm-3.2.6.jar.sha1 +solr/licenses/metrics-jvm-4.0.5.jar.sha1 solr/licenses/metrics-jvm-LICENSE-ASL.txt solr/licenses/metrics-jvm-NOTICE.txt solr/licenses/metrics-servlets-LICENSE-ASL.txt @@ -910,7 +914,7 @@ solr/licenses/rome-NOTICE.txt solr/licenses/rome-utils-1.5.1.jar.sha1 solr/licenses/rome-utils-LICENSE-ASL.txt solr/licenses/rome-utils-NOTICE.txt -solr/licenses/rrd4j-3.2.jar.sha1 +solr/licenses/rrd4j-3.5.jar.sha1 solr/licenses/rrd4j-LICENSE-ASL.txt solr/licenses/rrd4j-NOTICE.txt solr/licenses/servlet-api-LICENSE-CDDL.txt @@ -958,12 +962,18 @@ solr/licenses/tika-parsers-NOTICE.txt solr/licenses/tika-xmp-1.19.1.jar.sha1 solr/licenses/tika-xmp-LICENSE-ASL.txt solr/licenses/tika-xmp-NOTICE.txt -solr/licenses/velocity-1.7.jar.sha1 -solr/licenses/velocity-LICENSE-ASL.txt -solr/licenses/velocity-NOTICE.txt -solr/licenses/velocity-tools-2.0.jar.sha1 -solr/licenses/velocity-tools-LICENSE-ASL.txt -solr/licenses/velocity-tools-NOTICE.txt +solr/licenses/velocity-engine-core-2.0.jar.sha1 +solr/licenses/velocity-engine-core-LICENSE-ASL.txt +solr/licenses/velocity-engine-core-NOTICE.txt +solr/licenses/velocity-tools-generic-3.0.jar.sha1 +solr/licenses/velocity-tools-generic-LICENSE-ASL.txt +solr/licenses/velocity-tools-generic-NOTICE.txt +solr/licenses/velocity-tools-view-3.0.jar.sha1 +solr/licenses/velocity-tools-view-LICENSE-ASL.txt +solr/licenses/velocity-tools-view-NOTICE.txt +solr/licenses/velocity-tools-view-jsp-3.0.jar.sha1 +solr/licenses/velocity-tools-view-jsp-LICENSE-ASL.txt +solr/licenses/velocity-tools-view-jsp-NOTICE.txt solr/licenses/vorbis-java-core-0.8.jar.sha1 solr/licenses/vorbis-java-core-LICENSE-BSD_LIKE.txt solr/licenses/vorbis-java-core-NOTICE.txt @@ -985,7 +995,7 @@ solr/licenses/xmpcore-NOTICE.txt solr/licenses/xz-1.8.jar.sha1 solr/licenses/xz-LICENSE-PD.txt solr/licenses/xz-NOTICE.txt -solr/licenses/zookeeper-3.4.13.jar.sha1 +solr/licenses/zookeeper-3.4.14.jar.sha1 solr/licenses/zookeeper-LICENSE-ASL.txt solr/licenses/zookeeper-NOTICE.txt solr/server/README.txt @@ -996,15 +1006,15 @@ solr/server/etc/jetty-https8.xml solr/server/etc/jetty-ssl.xml solr/server/etc/jetty.xml solr/server/etc/webdefault.xml -solr/server/lib/ext/disruptor-3.4.0.jar +solr/server/lib/ext/disruptor-3.4.2.jar solr/server/lib/ext/jcl-over-slf4j-1.7.24.jar solr/server/lib/ext/jul-to-slf4j-1.7.24.jar -solr/server/lib/ext/log4j-1.2-api-2.11.0.jar -solr/server/lib/ext/log4j-api-2.11.0.jar -solr/server/lib/ext/log4j-core-2.11.0.jar -solr/server/lib/ext/log4j-slf4j-impl-2.11.0.jar +solr/server/lib/ext/log4j-1.2-api-2.11.2.jar +solr/server/lib/ext/log4j-api-2.11.2.jar +solr/server/lib/ext/log4j-core-2.11.2.jar +solr/server/lib/ext/log4j-slf4j-impl-2.11.2.jar +solr/server/lib/ext/log4j-web-2.11.2.jar solr/server/lib/ext/slf4j-api-1.7.24.jar -solr/server/lib/gmetric4j-1.0.7.jar solr/server/lib/http2-common-9.4.14.v20181114.jar solr/server/lib/http2-hpack-9.4.14.v20181114.jar solr/server/lib/http2-server-9.4.14.v20181114.jar @@ -1024,11 +1034,11 @@ solr/server/lib/jetty-servlets-9.4.14.v20181114.jar solr/server/lib/jetty-util-9.4.14.v20181114.jar solr/server/lib/jetty-webapp-9.4.14.v20181114.jar solr/server/lib/jetty-xml-9.4.14.v20181114.jar -solr/server/lib/metrics-core-3.2.6.jar -solr/server/lib/metrics-ganglia-3.2.6.jar -solr/server/lib/metrics-graphite-3.2.6.jar -solr/server/lib/metrics-jetty9-3.2.6.jar -solr/server/lib/metrics-jvm-3.2.6.jar +solr/server/lib/metrics-core-4.0.5.jar +solr/server/lib/metrics-graphite-4.0.5.jar +solr/server/lib/metrics-jetty9-4.0.5.jar +solr/server/lib/metrics-jmx-4.0.5.jar +solr/server/lib/metrics-jvm-4.0.5.jar solr/server/modules/http.mod solr/server/modules/https.mod solr/server/modules/https8.mod @@ -1043,29 +1053,28 @@ solr/server/scripts/cloud-scripts/zkcli.sh solr/server/solr-webapp/webapp/WEB-INF/lib/antlr4-runtime-4.5.1-1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/asm-5.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/asm-commons-5.1.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/avatica-core-1.10.0.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/avatica-core-1.13.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/caffeine-2.4.0.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/calcite-core-1.13.0.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/calcite-linq4j-1.13.0.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/calcite-core-1.18.0.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/calcite-linq4j-1.18.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-beanutils-1.9.3.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-cli-1.2.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-codec-1.11.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-collections-3.2.2.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/commons-compiler-2.7.6.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/commons-compiler-3.0.9.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-configuration2-2.1.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-exec-1.3.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-fileupload-1.3.3.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-io-2.5.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/commons-lang-2.6.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-lang3-3.8.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/commons-math3-3.6.1.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/curator-client-2.8.0.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/curator-framework-2.8.0.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/curator-recipes-2.8.0.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/disruptor-3.4.0.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/dom4j-1.6.1.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/commons-text-1.6.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/curator-client-2.13.0.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/curator-framework-2.13.0.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/curator-recipes-2.13.0.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/disruptor-3.4.2.jar solr/server/solr-webapp/webapp/WEB-INF/lib/eigenbase-properties-1.1.5.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/guava-14.0.1.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/guava-25.1-jre.jar solr/server/solr-webapp/webapp/WEB-INF/lib/hadoop-annotations-3.2.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/hadoop-auth-3.2.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/hadoop-common-3.2.0.jar @@ -1079,17 +1088,19 @@ solr/server/solr-webapp/webapp/WEB-INF/lib/http2-http- solr/server/solr-webapp/webapp/WEB-INF/lib/httpclient-4.5.6.jar solr/server/solr-webapp/webapp/WEB-INF/lib/httpcore-4.4.10.jar solr/server/solr-webapp/webapp/WEB-INF/lib/httpmime-4.5.6.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-annotations-2.9.6.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-core-2.9.6.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-databind-2.9.6.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-dataformat-smile-2.9.6.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/janino-2.7.6.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-annotations-2.9.8.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-core-2.9.8.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-databind-2.9.8.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/jackson-dataformat-smile-2.9.8.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/janino-3.0.9.jar solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-alpn-client-9.4.14.v20181114.jar solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-alpn-java-client-9.4.14.v20181114.jar solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-client-9.4.14.v20181114.jar solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-http-9.4.14.v20181114.jar solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-io-9.4.14.v20181114.jar solr/server/solr-webapp/webapp/WEB-INF/lib/jetty-util-9.4.14.v20181114.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/jose4j-0.6.5.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/json-path-2.4.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/kerb-core-1.0.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/kerb-util-1.0.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/kerby-asn1-1.0.1.jar @@ -1119,14 +1130,14 @@ solr/server/solr-webapp/webapp/WEB-INF/lib/org.restlet solr/server/solr-webapp/webapp/WEB-INF/lib/org.restlet.ext.servlet-2.3.0.jar solr/server/solr-webapp/webapp/WEB-INF/lib/protobuf-java-3.6.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/re2j-1.2.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/rrd4j-3.2.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/rrd4j-3.5.jar solr/server/solr-webapp/webapp/WEB-INF/lib/solr-core-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/solr-solrj-%%PORTVERSION%%.jar solr/server/solr-webapp/webapp/WEB-INF/lib/spatial4j-0.7.jar solr/server/solr-webapp/webapp/WEB-INF/lib/stax2-api-3.1.4.jar solr/server/solr-webapp/webapp/WEB-INF/lib/t-digest-3.1.jar solr/server/solr-webapp/webapp/WEB-INF/lib/woodstox-core-asl-4.4.1.jar -solr/server/solr-webapp/webapp/WEB-INF/lib/zookeeper-3.4.13.jar +solr/server/solr-webapp/webapp/WEB-INF/lib/zookeeper-3.4.14.jar solr/server/solr-webapp/webapp/WEB-INF/web.xml solr/server/solr-webapp/webapp/css/angular/analysis.css solr/server/solr-webapp/webapp/css/angular/chosen.css @@ -1390,6 +1401,7 @@ solr/server/solr-webapp/webapp/js/angular/controllers/ solr/server/solr-webapp/webapp/js/angular/controllers/segments.js solr/server/solr-webapp/webapp/js/angular/controllers/stream.js solr/server/solr-webapp/webapp/js/angular/controllers/threads.js +solr/server/solr-webapp/webapp/js/angular/controllers/unknown.js solr/server/solr-webapp/webapp/js/angular/services.js solr/server/solr-webapp/webapp/libs/angular-chosen.js solr/server/solr-webapp/webapp/libs/angular-cookies.js @@ -1434,6 +1446,7 @@ solr/server/solr-webapp/webapp/partials/schema.html solr/server/solr-webapp/webapp/partials/segments.html solr/server/solr-webapp/webapp/partials/stream.html solr/server/solr-webapp/webapp/partials/threads.html +solr/server/solr-webapp/webapp/partials/unknown.html solr/server/solr/README.txt solr/server/solr/configsets/_default/conf/lang/contractions_ca.txt solr/server/solr/configsets/_default/conf/lang/contractions_fr.txt @@ -1581,5 +1594,6 @@ solr/server/solr/configsets/sample_techproducts_config solr/server/solr/solr.xml solr/server/solr/zoo.cfg solr/server/start.jar +@dir solr/server/logs @dir(solr,solr) /var/db/solr @dir(solr,solr) /var/log/solr From owner-svn-ports-all@freebsd.org Fri Jun 21 08:58:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A85415D4DDB; Fri, 21 Jun 2019 08:58:29 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A5D1A8744D; Fri, 21 Jun 2019 08:58:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 52C8C20F94; Fri, 21 Jun 2019 08:58:28 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L8wS5G013539; Fri, 21 Jun 2019 08:58:28 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L8wRop013537; Fri, 21 Jun 2019 08:58:27 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906210858.x5L8wRop013537@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 21 Jun 2019 08:58:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504775 - head/textproc/sd X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/textproc/sd X-SVN-Commit-Revision: 504775 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A5D1A8744D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 08:58:29 -0000 Author: tobik Date: Fri Jun 21 08:58:27 2019 New Revision: 504775 URL: https://svnweb.freebsd.org/changeset/ports/504775 Log: textproc/sd: Update to 0.6.5 - Install now generated manual and shell completions Changes: https://github.com/chmln/sd/releases Modified: head/textproc/sd/Makefile head/textproc/sd/distinfo Modified: head/textproc/sd/Makefile ============================================================================== --- head/textproc/sd/Makefile Fri Jun 21 08:32:36 2019 (r504774) +++ head/textproc/sd/Makefile Fri Jun 21 08:58:27 2019 (r504775) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= sd -DISTVERSION= 0.6.1 +DISTVERSION= 0.6.5 CATEGORIES= textproc MAINTAINER= tobik@FreeBSD.org @@ -32,6 +32,7 @@ CARGO_CRATES= aho-corasick-0.7.3 \ heck-0.3.1 \ lazy_static-1.3.0 \ libc-0.2.51 \ + man-0.3.0 \ memchr-2.2.0 \ memmap-0.7.0 \ memoffset-0.2.1 \ @@ -57,6 +58,7 @@ CARGO_CRATES= aho-corasick-0.7.3 \ regex-1.1.7 \ regex-syntax-0.6.6 \ remove_dir_all-0.5.1 \ + roff-0.1.0 \ scopeguard-0.3.3 \ strsim-0.8.0 \ structopt-0.2.16 \ @@ -77,13 +79,33 @@ CARGO_CRATES= aho-corasick-0.7.3 \ winapi-i686-pc-windows-gnu-0.4.0 \ winapi-x86_64-pc-windows-gnu-0.4.0 -PLIST_FILES= bin/sd +_SD_OUT_DIR= ${WRKDIR}/cargo-out +MAKE_ENV= SD_OUT_DIR=${_SD_OUT_DIR} +PLIST_FILES= bin/sd \ + etc/bash_completion.d/sd.bash \ + man/man1/sd.1.gz \ + share/fish/completions/sd.fish \ + share/zsh/site-functions/_sd PORTDOCS= README.md OPTIONS_DEFINE= DOCS +post-patch: + @${REINPLACE_CMD} 's,"OUT_DIR","SD_OUT_DIR",g' ${WRKSRC}/build.rs + post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sd + ${INSTALL_MAN} ${_SD_OUT_DIR}/sd.1 \ + ${STAGEDIR}${PREFIX}/man/man1 + @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d + ${INSTALL_DATA} ${_SD_OUT_DIR}/sd.bash \ + ${STAGEDIR}${PREFIX}/etc/bash_completion.d + @${MKDIR} ${STAGEDIR}${PREFIX}/share/fish/completions + ${INSTALL_DATA} ${_SD_OUT_DIR}/sd.fish \ + ${STAGEDIR}${PREFIX}/share/fish/completions + @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions + ${INSTALL_DATA} ${_SD_OUT_DIR}/_sd \ + ${STAGEDIR}${PREFIX}/share/zsh/site-functions post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} Modified: head/textproc/sd/distinfo ============================================================================== --- head/textproc/sd/distinfo Fri Jun 21 08:32:36 2019 (r504774) +++ head/textproc/sd/distinfo Fri Jun 21 08:58:27 2019 (r504775) @@ -1,4 +1,4 @@ -TIMESTAMP = 1560703594 +TIMESTAMP = 1561105846 SHA256 (rust/crates/aho-corasick-0.7.3.tar.gz) = e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c SIZE (rust/crates/aho-corasick-0.7.3.tar.gz) = 55093 SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b @@ -35,6 +35,8 @@ SHA256 (rust/crates/lazy_static-1.3.0.tar.gz) = bc5729 SIZE (rust/crates/lazy_static-1.3.0.tar.gz) = 10616 SHA256 (rust/crates/libc-0.2.51.tar.gz) = bedcc7a809076656486ffe045abeeac163da1b558e963a31e29fbfbeba916917 SIZE (rust/crates/libc-0.2.51.tar.gz) = 397323 +SHA256 (rust/crates/man-0.3.0.tar.gz) = ebf5fa795187a80147b1ac10aaedcf5ffd3bbeb1838bda61801a1c9ad700a1c9 +SIZE (rust/crates/man-0.3.0.tar.gz) = 16839 SHA256 (rust/crates/memchr-2.2.0.tar.gz) = 2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39 SIZE (rust/crates/memchr-2.2.0.tar.gz) = 20939 SHA256 (rust/crates/memmap-0.7.0.tar.gz) = 6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b @@ -85,6 +87,8 @@ SHA256 (rust/crates/regex-syntax-0.6.6.tar.gz) = dcfd8 SIZE (rust/crates/regex-syntax-0.6.6.tar.gz) = 273068 SHA256 (rust/crates/remove_dir_all-0.5.1.tar.gz) = 3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5 SIZE (rust/crates/remove_dir_all-0.5.1.tar.gz) = 8726 +SHA256 (rust/crates/roff-0.1.0.tar.gz) = e33e4fb37ba46888052c763e4ec2acfedd8f00f62897b630cadb6298b833675e +SIZE (rust/crates/roff-0.1.0.tar.gz) = 7493 SHA256 (rust/crates/scopeguard-0.3.3.tar.gz) = 94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27 SIZE (rust/crates/scopeguard-0.3.3.tar.gz) = 9605 SHA256 (rust/crates/strsim-0.8.0.tar.gz) = 8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a @@ -123,5 +127,5 @@ SHA256 (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.t SIZE (rust/crates/winapi-i686-pc-windows-gnu-0.4.0.tar.gz) = 2918815 SHA256 (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f SIZE (rust/crates/winapi-x86_64-pc-windows-gnu-0.4.0.tar.gz) = 2947998 -SHA256 (chmln-sd-0.6.1_GH0.tar.gz) = 4ca219762eb90edccaae68789deb6f790102df584a753d73b856de72ff4dd053 -SIZE (chmln-sd-0.6.1_GH0.tar.gz) = 12046 +SHA256 (chmln-sd-0.6.5_GH0.tar.gz) = ed38e5103080373b00443f72683ac2785b18e354ab6ef4797e27af028be9baf2 +SIZE (chmln-sd-0.6.5_GH0.tar.gz) = 13539 From owner-svn-ports-all@freebsd.org Fri Jun 21 09:01:56 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA5A815D4FE8; Fri, 21 Jun 2019 09:01:56 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4B8D3877B7; Fri, 21 Jun 2019 09:01:56 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2773B2110E; Fri, 21 Jun 2019 09:01:56 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L91uTf014818; Fri, 21 Jun 2019 09:01:56 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L91tIF014816; Fri, 21 Jun 2019 09:01:55 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906210901.x5L91tIF014816@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 21 Jun 2019 09:01:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504776 - head/java/jd-gui X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/java/jd-gui X-SVN-Commit-Revision: 504776 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4B8D3877B7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 09:01:56 -0000 Author: tobik Date: Fri Jun 21 09:01:55 2019 New Revision: 504776 URL: https://svnweb.freebsd.org/changeset/ports/504776 Log: java/jd-gui: Update to 1.6.1 Changes: https://github.com/java-decompiler/jd-gui/compare/v1.5.2...v1.6.1 Modified: head/java/jd-gui/Makefile head/java/jd-gui/distinfo Modified: head/java/jd-gui/Makefile ============================================================================== --- head/java/jd-gui/Makefile Fri Jun 21 08:58:27 2019 (r504775) +++ head/java/jd-gui/Makefile Fri Jun 21 09:01:55 2019 (r504776) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= jd-gui -PORTVERSION= 1.5.2 +PORTVERSION= 1.6.1 DISTVERSIONPREFIX= v CATEGORIES= java devel MASTER_SITES= https://github.com/java-decompiler/jd-gui/releases/download/v${PORTVERSION}/:jar Modified: head/java/jd-gui/distinfo ============================================================================== --- head/java/jd-gui/distinfo Fri Jun 21 08:58:27 2019 (r504775) +++ head/java/jd-gui/distinfo Fri Jun 21 09:01:55 2019 (r504776) @@ -1,5 +1,5 @@ -TIMESTAMP = 1559477463 -SHA256 (jd-gui-1.5.2.jar) = 796652689058e5e79f0676c14465a99e2cef9fbab1eb9d1f0c44b0df3677d16d -SIZE (jd-gui-1.5.2.jar) = 3013097 -SHA256 (java-decompiler-jd-gui-v1.5.2_GH0.tar.gz) = 4fe8b81de11c9c3e70d1dde1694411c20d34417791f2b97543015f9e69096e74 -SIZE (java-decompiler-jd-gui-v1.5.2_GH0.tar.gz) = 333510 +TIMESTAMP = 1561107608 +SHA256 (jd-gui-1.6.1.jar) = c969c39acb1447fa1e086f9c298cf5a1b51a1fcf612b3364b0b45b3d7811fdfd +SIZE (jd-gui-1.6.1.jar) = 3026413 +SHA256 (java-decompiler-jd-gui-v1.6.1_GH0.tar.gz) = ad60555254ebd372e73b137b94428d82bc0e2bfc49785a4a67ca36f2531dcba6 +SIZE (java-decompiler-jd-gui-v1.6.1_GH0.tar.gz) = 337719 From owner-svn-ports-all@freebsd.org Fri Jun 21 09:02:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 09F7415D5005; Fri, 21 Jun 2019 09:02:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A07CA877C6; Fri, 21 Jun 2019 09:01:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7CD9321112; Fri, 21 Jun 2019 09:01:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L91xMF014910; Fri, 21 Jun 2019 09:01:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L91x7k014909; Fri, 21 Jun 2019 09:01:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906210901.x5L91x7k014909@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 21 Jun 2019 09:01:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504777 - head/sysutils/mbgtools X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/sysutils/mbgtools X-SVN-Commit-Revision: 504777 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A07CA877C6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 09:02:00 -0000 Author: amdmi3 Date: Fri Jun 21 09:01:59 2019 New Revision: 504777 URL: https://svnweb.freebsd.org/changeset/ports/504777 Log: - Update WWW Approved by: portmgr blanket Modified: head/sysutils/mbgtools/pkg-descr Modified: head/sysutils/mbgtools/pkg-descr ============================================================================== --- head/sysutils/mbgtools/pkg-descr Fri Jun 21 09:01:55 2019 (r504776) +++ head/sysutils/mbgtools/pkg-descr Fri Jun 21 09:01:59 2019 (r504777) @@ -1,4 +1,4 @@ Tools for Meinberg GPS and PTP cards including a loadable kernel driver. -WWW: http://www.meinbergglobal.com/english/sw/ +WWW: https://www.meinbergglobal.com/english/sw/ From owner-svn-ports-all@freebsd.org Fri Jun 21 09:31:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A286415D58A1; Fri, 21 Jun 2019 09:31:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4836588737; Fri, 21 Jun 2019 09:31:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 249F621507; Fri, 21 Jun 2019 09:31:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L9VweM033527; Fri, 21 Jun 2019 09:31:58 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L9VwmV033526; Fri, 21 Jun 2019 09:31:58 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906210931.x5L9VwmV033526@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 21 Jun 2019 09:31:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504778 - head/www/davical X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/www/davical X-SVN-Commit-Revision: 504778 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4836588737 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.95)[-0.950,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 09:31:59 -0000 Author: amdmi3 Date: Fri Jun 21 09:31:58 2019 New Revision: 504778 URL: https://svnweb.freebsd.org/changeset/ports/504778 Log: - Update WWW Approved by: portmgr blanket Modified: head/www/davical/pkg-descr Modified: head/www/davical/pkg-descr ============================================================================== --- head/www/davical/pkg-descr Fri Jun 21 09:01:59 2019 (r504777) +++ head/www/davical/pkg-descr Fri Jun 21 09:31:58 2019 (r504778) @@ -1,4 +1,4 @@ DAViCal is a PHP based CalDAV server which uses a Postgres backend. It is administered using a Web interface. -WWW: http://www.davical.org/ +WWW: https://www.davical.org/ From owner-svn-ports-all@freebsd.org Fri Jun 21 09:36:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0448A15D5920; Fri, 21 Jun 2019 09:36:08 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9AD65888B4; Fri, 21 Jun 2019 09:36:07 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4F5832163B; Fri, 21 Jun 2019 09:36:07 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5L9a7FK034823; Fri, 21 Jun 2019 09:36:07 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5L9a6VD034816; Fri, 21 Jun 2019 09:36:06 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906210936.x5L9a6VD034816@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 21 Jun 2019 09:36:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504779 - in head/www: py-dj21-django-cors-headers py-dj22-django-cors-headers X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/www: py-dj21-django-cors-headers py-dj22-django-cors-headers X-SVN-Commit-Revision: 504779 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9AD65888B4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 09:36:08 -0000 Author: kai Date: Fri Jun 21 09:36:06 2019 New Revision: 504779 URL: https://svnweb.freebsd.org/changeset/ports/504779 Log: www/py-{dj21,dj22}-django-cors-headers: Update to 3.0.2 Changelog: https://github.com/ottoyiu/django-cors-headers/blob/3.0.2/HISTORY.rst Modified: head/www/py-dj21-django-cors-headers/Makefile head/www/py-dj21-django-cors-headers/distinfo head/www/py-dj22-django-cors-headers/Makefile head/www/py-dj22-django-cors-headers/distinfo Modified: head/www/py-dj21-django-cors-headers/Makefile ============================================================================== --- head/www/py-dj21-django-cors-headers/Makefile Fri Jun 21 09:31:58 2019 (r504778) +++ head/www/py-dj21-django-cors-headers/Makefile Fri Jun 21 09:36:06 2019 (r504779) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= django-cors-headers -PORTVERSION= 2.5.2 +PORTVERSION= 3.0.2 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj21- Modified: head/www/py-dj21-django-cors-headers/distinfo ============================================================================== --- head/www/py-dj21-django-cors-headers/distinfo Fri Jun 21 09:31:58 2019 (r504778) +++ head/www/py-dj21-django-cors-headers/distinfo Fri Jun 21 09:36:06 2019 (r504779) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556208631 -SHA256 (django-cors-headers-2.5.2.tar.gz) = fb44f6b9f10de847919305c3f0d38fcfbadfe0dd5cf1c866f37df66ad0dda1bb -SIZE (django-cors-headers-2.5.2.tar.gz) = 22721 +TIMESTAMP = 1561104731 +SHA256 (django-cors-headers-3.0.2.tar.gz) = ebf3e2cf25aa6993b959a8e6a87828ebb3c8fe5bc3ec4a2d6e65f3b8d9b4212c +SIZE (django-cors-headers-3.0.2.tar.gz) = 24497 Modified: head/www/py-dj22-django-cors-headers/Makefile ============================================================================== --- head/www/py-dj22-django-cors-headers/Makefile Fri Jun 21 09:31:58 2019 (r504778) +++ head/www/py-dj22-django-cors-headers/Makefile Fri Jun 21 09:36:06 2019 (r504779) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= django-cors-headers -PORTVERSION= 2.5.3 +PORTVERSION= 3.0.2 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj22- Modified: head/www/py-dj22-django-cors-headers/distinfo ============================================================================== --- head/www/py-dj22-django-cors-headers/distinfo Fri Jun 21 09:31:58 2019 (r504778) +++ head/www/py-dj22-django-cors-headers/distinfo Fri Jun 21 09:36:06 2019 (r504779) @@ -1,3 +1,3 @@ -TIMESTAMP = 1556644278 -SHA256 (django-cors-headers-2.5.3.tar.gz) = c7987faa9aaef7f6a802b0f354a719e80a9158c284f530265ac792f1ee725e52 -SIZE (django-cors-headers-2.5.3.tar.gz) = 23295 +TIMESTAMP = 1561104731 +SHA256 (django-cors-headers-3.0.2.tar.gz) = ebf3e2cf25aa6993b959a8e6a87828ebb3c8fe5bc3ec4a2d6e65f3b8d9b4212c +SIZE (django-cors-headers-3.0.2.tar.gz) = 24497 From owner-svn-ports-all@freebsd.org Fri Jun 21 10:25:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 03ECA15D64E3; Fri, 21 Jun 2019 10:25:29 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7E24689E5F; Fri, 21 Jun 2019 10:25:28 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5277421EB4; Fri, 21 Jun 2019 10:25:28 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LAPSqj060732; Fri, 21 Jun 2019 10:25:28 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LAPRUs060730; Fri, 21 Jun 2019 10:25:27 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906211025.x5LAPRUs060730@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 21 Jun 2019 10:25:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504780 - head/www/py-dj21-django-taggit X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/www/py-dj21-django-taggit X-SVN-Commit-Revision: 504780 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7E24689E5F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 10:25:29 -0000 Author: kai Date: Fri Jun 21 10:25:27 2019 New Revision: 504780 URL: https://svnweb.freebsd.org/changeset/ports/504780 Log: www/py-dj21-django-taggit: Update to 1.1.0 Changelog: https://github.com/jazzband/django-taggit/blob/1.1.0/CHANGELOG.rst Modified: head/www/py-dj21-django-taggit/Makefile head/www/py-dj21-django-taggit/distinfo Modified: head/www/py-dj21-django-taggit/Makefile ============================================================================== --- head/www/py-dj21-django-taggit/Makefile Fri Jun 21 09:36:06 2019 (r504779) +++ head/www/py-dj21-django-taggit/Makefile Fri Jun 21 10:25:27 2019 (r504780) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= django-taggit -PORTVERSION= 0.23.0 +PORTVERSION= 1.1.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj21- @@ -12,7 +12,6 @@ COMMENT= Reusable Django application for simple taggin LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}isort>0:devel/py-isort@${PY_FLAVOR} RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django21>=1.11:www/py-django21@${PY_FLAVOR} USES= python:3.5+ Modified: head/www/py-dj21-django-taggit/distinfo ============================================================================== --- head/www/py-dj21-django-taggit/distinfo Fri Jun 21 09:36:06 2019 (r504779) +++ head/www/py-dj21-django-taggit/distinfo Fri Jun 21 10:25:27 2019 (r504780) @@ -1,3 +1,3 @@ -TIMESTAMP = 1542119703 -SHA256 (django-taggit-0.23.0.tar.gz) = a21cbe7e0879f1364eef1c88a2eda89d593bf000ebf51c3f00423c6927075dce -SIZE (django-taggit-0.23.0.tar.gz) = 44585 +TIMESTAMP = 1561104967 +SHA256 (django-taggit-1.1.0.tar.gz) = 01bf163f66f385de3777378f43338aba93aae8673891d8ba9a20695b2ffb8e10 +SIZE (django-taggit-1.1.0.tar.gz) = 41780 From owner-svn-ports-all@freebsd.org Fri Jun 21 10:59:07 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F79915D6D39; Fri, 21 Jun 2019 10:59:07 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3EA7F8ACE7; Fri, 21 Jun 2019 10:59:07 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D378B223B6; Fri, 21 Jun 2019 10:59:06 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LAx6iW076811; Fri, 21 Jun 2019 10:59:06 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LAx6H7076810; Fri, 21 Jun 2019 10:59:06 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906211059.x5LAx6H7076810@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 21 Jun 2019 10:59:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504781 - head/www/rubygem-passenger X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/www/rubygem-passenger X-SVN-Commit-Revision: 504781 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3EA7F8ACE7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 10:59:07 -0000 Author: linimon Date: Fri Jun 21 10:59:06 2019 New Revision: 504781 URL: https://svnweb.freebsd.org/changeset/ports/504781 Log: Add compiler:c++11-lang to USES to fix build on GCC-based systems: src/cxx_supportlib/WebSocketCommandReverseServer.h:809: error: no matching function for call to 'make_shared(boost::asio::io_context&)' Approved by: portmgr (tier-2 blanket) Modified: head/www/rubygem-passenger/Makefile Modified: head/www/rubygem-passenger/Makefile ============================================================================== --- head/www/rubygem-passenger/Makefile Fri Jun 21 10:25:27 2019 (r504780) +++ head/www/rubygem-passenger/Makefile Fri Jun 21 10:59:06 2019 (r504781) @@ -37,7 +37,7 @@ USES+= apache:2.2+ USE_RUBY= yes RAKE_BIN= ${LOCALBASE}/bin/rake -USES+= cpe gem libtool python:env shebangfix ssl +USES+= compiler:c++11-lang cpe gem libtool python:env shebangfix ssl SHEBANG_FILES= src/cxx_supportlib/vendor-copy/libuv/gyp_uv.py LIB_DEPENDS+= libuv.so:devel/libuv \ From owner-svn-ports-all@freebsd.org Fri Jun 21 10:59:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BBD3015D6D60; Fri, 21 Jun 2019 10:59:29 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 623038ADBC; Fri, 21 Jun 2019 10:59:29 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3AB91223B7; Fri, 21 Jun 2019 10:59:29 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LAxTI2076945; Fri, 21 Jun 2019 10:59:29 GMT (envelope-from pizzamig@FreeBSD.org) Received: (from pizzamig@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LAxSRg076944; Fri, 21 Jun 2019 10:59:28 GMT (envelope-from pizzamig@FreeBSD.org) Message-Id: <201906211059.x5LAxSRg076944@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pizzamig set sender to pizzamig@FreeBSD.org using -f From: Luca Pizzamiglio Date: Fri, 21 Jun 2019 10:59:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504782 - head/net-mgmt/py-prometheus-client X-SVN-Group: ports-head X-SVN-Commit-Author: pizzamig X-SVN-Commit-Paths: head/net-mgmt/py-prometheus-client X-SVN-Commit-Revision: 504782 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 623038ADBC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 10:59:29 -0000 Author: pizzamig Date: Fri Jun 21 10:59:28 2019 New Revision: 504782 URL: https://svnweb.freebsd.org/changeset/ports/504782 Log: net-mgmt/py-prometheus-client: Update to 0.7.1 CHANGES: https://github.com/prometheus/client_python/releases/tag/v0.7.1 Sponsored by: trivago N.V. Modified: head/net-mgmt/py-prometheus-client/Makefile head/net-mgmt/py-prometheus-client/distinfo Modified: head/net-mgmt/py-prometheus-client/Makefile ============================================================================== --- head/net-mgmt/py-prometheus-client/Makefile Fri Jun 21 10:59:06 2019 (r504781) +++ head/net-mgmt/py-prometheus-client/Makefile Fri Jun 21 10:59:28 2019 (r504782) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= prometheus-client -PORTVERSION= 0.7.0 +PORTVERSION= 0.7.1 DISTVERSIONPREFIX= v CATEGORIES= net-mgmt python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/net-mgmt/py-prometheus-client/distinfo ============================================================================== --- head/net-mgmt/py-prometheus-client/distinfo Fri Jun 21 10:59:06 2019 (r504781) +++ head/net-mgmt/py-prometheus-client/distinfo Fri Jun 21 10:59:28 2019 (r504782) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560428958 -SHA256 (prometheus-client_python-v0.7.0_GH0.tar.gz) = 2ce1ce6a407babf37ba992987a7c6ad80fd4ac47b7523e0d3e11ec640492b47b -SIZE (prometheus-client_python-v0.7.0_GH0.tar.gz) = 62531 +TIMESTAMP = 1561110533 +SHA256 (prometheus-client_python-v0.7.1_GH0.tar.gz) = 6bfe4192c03f81c36c86a2dd7cd1fa151e470cd3d9fd24fe15e63abb85383aa0 +SIZE (prometheus-client_python-v0.7.1_GH0.tar.gz) = 62880 From owner-svn-ports-all@freebsd.org Fri Jun 21 11:03:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1A5E415D6FE8; Fri, 21 Jun 2019 11:03:20 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B06078B2E4; Fri, 21 Jun 2019 11:03:19 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6347C2257E; Fri, 21 Jun 2019 11:03:19 +0000 (UTC) (envelope-from pizzamig@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LB3J53081799; Fri, 21 Jun 2019 11:03:19 GMT (envelope-from pizzamig@FreeBSD.org) Received: (from pizzamig@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LB3Ijg081797; Fri, 21 Jun 2019 11:03:18 GMT (envelope-from pizzamig@FreeBSD.org) Message-Id: <201906211103.x5LB3Ijg081797@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pizzamig set sender to pizzamig@FreeBSD.org using -f From: Luca Pizzamiglio Date: Fri, 21 Jun 2019 11:03:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504783 - in head/benchmarks/stress-ng: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pizzamig X-SVN-Commit-Paths: in head/benchmarks/stress-ng: . files X-SVN-Commit-Revision: 504783 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B06078B2E4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 11:03:20 -0000 Author: pizzamig Date: Fri Jun 21 11:03:18 2019 New Revision: 504783 URL: https://svnweb.freebsd.org/changeset/ports/504783 Log: benchmarks/stress-ng: Update to 0.09.59.1 Changes: \ https://kernel.ubuntu.com/git/cking/stress-ng.git/tree/debian/changelog Added: head/benchmarks/stress-ng/files/patch-stress-resources.c (contents, props changed) Modified: head/benchmarks/stress-ng/Makefile head/benchmarks/stress-ng/distinfo Modified: head/benchmarks/stress-ng/Makefile ============================================================================== --- head/benchmarks/stress-ng/Makefile Fri Jun 21 10:59:28 2019 (r504782) +++ head/benchmarks/stress-ng/Makefile Fri Jun 21 11:03:18 2019 (r504783) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= stress-ng -PORTVERSION= 0.09.58 +PORTVERSION= 0.09.59.1 CATEGORIES= benchmarks MASTER_SITES= http://kernel.ubuntu.com/~cking/tarballs/stress-ng/ Modified: head/benchmarks/stress-ng/distinfo ============================================================================== --- head/benchmarks/stress-ng/distinfo Fri Jun 21 10:59:28 2019 (r504782) +++ head/benchmarks/stress-ng/distinfo Fri Jun 21 11:03:18 2019 (r504783) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557220170 -SHA256 (stress-ng-0.09.58.tar.xz) = ea1ba0e96637d7ecc0d2b08c981c4fcb3e7753ca7d64d76210154440b9a194e6 -SIZE (stress-ng-0.09.58.tar.xz) = 388568 +TIMESTAMP = 1561110319 +SHA256 (stress-ng-0.09.59.1.tar.xz) = b4c31434ebf964caf7f55b48dbfc9bacfee98fd79d7ece52259ca29de2346a38 +SIZE (stress-ng-0.09.59.1.tar.xz) = 392788 Added: head/benchmarks/stress-ng/files/patch-stress-resources.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/benchmarks/stress-ng/files/patch-stress-resources.c Fri Jun 21 11:03:18 2019 (r504783) @@ -0,0 +1,12 @@ +--- stress-resources.c.orig 2019-06-21 10:48:56 UTC ++++ stress-resources.c +@@ -178,7 +178,9 @@ static void NORETURN waste_resources( + info[i].m_mmap = MAP_FAILED; + info[i].pipe_ret = -1; + info[i].fd_open = -1; ++#if defined(HAVE_EVENTFD) + info[i].fd_ev = -1; ++#endif + #if defined(HAVE_MEMFD_CREATE) + info[i].fd_memfd = -1; + #endif From owner-svn-ports-all@freebsd.org Fri Jun 21 11:04:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E9B7515D705A; Fri, 21 Jun 2019 11:04:10 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 900248B3FF; Fri, 21 Jun 2019 11:04:10 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6A3772257F; Fri, 21 Jun 2019 11:04:10 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LB4AvP081927; Fri, 21 Jun 2019 11:04:10 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LB4AmI081926; Fri, 21 Jun 2019 11:04:10 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906211104.x5LB4AmI081926@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 21 Jun 2019 11:04:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504784 - head/net/tcpkali X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/net/tcpkali X-SVN-Commit-Revision: 504784 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 900248B3FF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 11:04:11 -0000 Author: linimon Date: Fri Jun 21 11:04:10 2019 New Revision: 504784 URL: https://svnweb.freebsd.org/changeset/ports/504784 Log: Change !x86 from BROKEN_powerpc64 to ONLY_FOR_ARCHS. The upstream has x86 assembler unconditionally hard-coded in src/tcpkali_atomic.h. Approved by: portmgr (tier-2 blanket) Modified: head/net/tcpkali/Makefile Modified: head/net/tcpkali/Makefile ============================================================================== --- head/net/tcpkali/Makefile Fri Jun 21 11:03:18 2019 (r504783) +++ head/net/tcpkali/Makefile Fri Jun 21 11:04:10 2019 (r504784) @@ -11,10 +11,8 @@ COMMENT= High performance load generator for TCP and W LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_mips= invokes x86 assembler -BROKEN_mips64= invokes x86 assembler -BROKEN_sparc64= invokes x86 assembler -BROKEN_powerpc64= invokes x86 assembler +ONLY_FOR_ARCHS= amd64 i386 +ONLY_FOR_ARCHS_REASON= src/tcpkali_atomic.h unconditionally includes x86 assembler GNU_CONFIGURE= yes USES= autoreconf libtool gmake ncurses From owner-svn-ports-all@freebsd.org Fri Jun 21 11:15:09 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A95715D7674; Fri, 21 Jun 2019 11:15:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C42068BA7F; Fri, 21 Jun 2019 11:15:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9810222720; Fri, 21 Jun 2019 11:15:08 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LBF8hj087430; Fri, 21 Jun 2019 11:15:08 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LBF8jI087429; Fri, 21 Jun 2019 11:15:08 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906211115.x5LBF8jI087429@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 21 Jun 2019 11:15:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504785 - head/biology/gmap X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/biology/gmap X-SVN-Commit-Revision: 504785 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C42068BA7F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 11:15:09 -0000 Author: linimon Date: Fri Jun 21 11:15:08 2019 New Revision: 504785 URL: https://svnweb.freebsd.org/changeset/ports/504785 Log: Enable workaround for building on powerpc64. Autoconf reports that HAVE_ASM_BSR is true (1). However, it's a false positive. I do not have enough knowledge of autoconf to fix this problem correctly, so fix src/config.h in post-configure. Patches welcome. A proper fix will most likely also fix the build on other tier-2 archs, but I have not taken the time to test that yet. Approved by: portmgr (tier-2 blanket) Modified: head/biology/gmap/Makefile Modified: head/biology/gmap/Makefile ============================================================================== --- head/biology/gmap/Makefile Fri Jun 21 11:04:10 2019 (r504784) +++ head/biology/gmap/Makefile Fri Jun 21 11:15:08 2019 (r504785) @@ -19,7 +19,6 @@ BROKEN_aarch64= invokes x86 assembler BROKEN_armv6= invokes x86 assembler BROKEN_armv7= invokes x86 assembler BROKEN_mips64= invokes x86 assembler -BROKEN_powerpc64= invokes x86 assembler BROKEN_sparc64= invokes x86 assembler USES= gmake perl5 @@ -31,10 +30,17 @@ OPTIONS_DEFINE= SIMD SIMD_CONFIGURE_OFF= --disable-builtin-popcount --disable-simd +.include + # shebang_fix operates during patch. # These scripts are created during configure. post-configure: ${REINPLACE_CMD} -e 's|/usr/bin/perl|${PERL}|g' \ ${WRKSRC}/Makefile ${WRKSRC}/util/*.pl +.if ${ARCH:Mpowerpc*} +# XXX MCL unknown why this shows up as true. knowledge of autoconf needed. + ${REINPLACE_CMD} -e 's|#define HAVE_ASM_BSR 1||' \ + ${WRKSRC}/src/config.h +.endif -.include +.include From owner-svn-ports-all@freebsd.org Fri Jun 21 11:19:41 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AEECC15D771F; Fri, 21 Jun 2019 11:19:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 521238BBFA; Fri, 21 Jun 2019 11:19:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1A60922722; Fri, 21 Jun 2019 11:19:41 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LBJeD1087712; Fri, 21 Jun 2019 11:19:40 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LBJeTV087711; Fri, 21 Jun 2019 11:19:40 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906211119.x5LBJeTV087711@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 21 Jun 2019 11:19:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504786 - head/net/delegate X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/net/delegate X-SVN-Commit-Revision: 504786 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 521238BBFA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 11:19:41 -0000 Author: linimon Date: Fri Jun 21 11:19:40 2019 New Revision: 504786 URL: https://svnweb.freebsd.org/changeset/ports/504786 Log: Add compiler:c11 to USES to unbreak build on GCC-based powerpc64: gmake[1]: [Makefile:116: mkmake.exe] Error 1 This may also unbreak on mips* (untested). Approved by: portmgr (tier-2 blanket) Modified: head/net/delegate/Makefile Modified: head/net/delegate/Makefile ============================================================================== --- head/net/delegate/Makefile Fri Jun 21 11:15:08 2019 (r504785) +++ head/net/delegate/Makefile Fri Jun 21 11:19:40 2019 (r504786) @@ -12,9 +12,8 @@ COMMENT= General purpose TCP/IP proxy system BROKEN_mips= fails to build: gmake[1]: [Makefile:116: mkmake.exe] Error 1 BROKEN_mips64= fails to build: gmake[1]: [Makefile:116: mkmake.exe] Error 1 -BROKEN_powerpc64= fails to build: gmake[1]: [Makefile:116: mkmake.exe] Error 1 -USES= gmake +USES= compiler:c11 gmake SUB_FILES= pkg-message ADMIN?= admin@example.com From owner-svn-ports-all@freebsd.org Fri Jun 21 11:30:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0DB9115D7AFA; Fri, 21 Jun 2019 11:30:20 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A50888C160; Fri, 21 Jun 2019 11:30:19 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7F17B228C5; Fri, 21 Jun 2019 11:30:19 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LBUJOx093077; Fri, 21 Jun 2019 11:30:19 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LBUJhQ093076; Fri, 21 Jun 2019 11:30:19 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906211130.x5LBUJhQ093076@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Fri, 21 Jun 2019 11:30:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504787 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 504787 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A50888C160 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 11:30:20 -0000 Author: cmt Date: Fri Jun 21 11:30:18 2019 New Revision: 504787 URL: https://svnweb.freebsd.org/changeset/ports/504787 Log: document recent Mozilla advisories MFSA2019-17, MFSA2019-19, MFSA2019-20 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Fri Jun 21 11:19:40 2019 (r504786) +++ head/security/vuxml/vuln.xml Fri Jun 21 11:30:18 2019 (r504787) @@ -58,6 +58,126 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + Mozilla -- multiple vulnerabilities + + + thunderbird + thunderbird-60.7.2 + + + + +

Mozilla Foundation reports:

+
+

CVE-2019-11707: Type confusion in Array.pop

+

A type confusion vulnerability can occur when manipulating + JavaScript objects due to issues in Array.pop. This can allow + for an exploitable crash. We are aware of targeted attacks in + the wild abusing this flaw.

+

CVE-2019-11708: sandbox escape using Prompt:Open

+

Insufficient vetting of parameters passed with the + Prompt:Open IPC message between child and parent processes can + result in the non-sandboxed parent process opening web content + chosen by a compromised child process. When combined with + additional vulnerabilities this could result in executing + arbitrary code on the user's computer.

+
+ +
+ + https://www.mozilla.org/en-US/security/advisories/mfsa2019-20/ + CVE-2019-11707 + CVE-2019-11708 + + + 2019-06-20 + 2019-06-21 + +
+ + + Mozilla -- multiple vulnerabilities + + + firefox + 67.0.4,1 + + + firefox-esr + 60.7.2,1 + + + + +

Mozilla Foundation reports:

+
+

CVE-2019-11708: sandbox escape using Prompt:Open

+

Insufficient vetting of parameters passed with the + Prompt:Open IPC message between child and parent processes + can result in the non-sandboxed parent process opening web + content chosen by a compromised child process. When combined + with additional vulnerabilities this could result in executing + arbitrary code on the user's computer.

+
+ +
+ + https://www.mozilla.org/en-US/security/advisories/mfsa2019-19/ + CVE-2019-11708 + + + 2019-06-20 + 2019-06-21 + +
+ + + Mozilla -- multiple vulnerabilities + + + thunderbird + 60.7.1 + + + + +

Mozilla Foundation reports:

+
+

CVE-2019-11703: Heap buffer overflow in icalparser.c

+

A flaw in Thunderbird's implementation of iCal causes a heap + buffer overflow in parser_get_next_char when processing certain + email messages, resulting in a potentially exploitable crash.

+

CVE-2019-11704: Heap buffer overflow in icalvalue.c

+

A flaw in Thunderbird's implementation of iCal causes a heap + buffer overflow in icalmemory_strdup_and_dequote when processing + certain email messages, resulting in a potentially exploitable + crash.

+

CVE-2019-11705: Stack buffer overflow in icalrecur.c

+

A flaw in Thunderbird's implementation of iCal causes a stack + buffer overflow in icalrecur_add_bydayrules when processing + certain email messages, resulting in a potentially exploitable + crash.

+

CVE-2019-11706: Type confusion in icalproperty.c

+

A flaw in Thunderbird's implementation of iCal causes a type + confusion in icaltimezone_get_vtimezone_properties when + processing certain email messages, resulting in a crash.

+
+ +
+ + https://www.mozilla.org/en-US/security/advisories/mfsa2019-17/ + CVE-2019-11703 + CVE-2019-11704 + CVE-2019-11705 + CVE-2019-11706 + + + 2019-06-13 + 2019-06-21 + +
+ vlc -- Double free in Matroska demuxer From owner-svn-ports-all@freebsd.org Fri Jun 21 11:43:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F1F1C15D8002; Fri, 21 Jun 2019 11:43:10 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 930F88C920; Fri, 21 Jun 2019 11:43:10 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6E87C22C19; Fri, 21 Jun 2019 11:43:10 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LBhAG7003261; Fri, 21 Jun 2019 11:43:10 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LBh9of003258; Fri, 21 Jun 2019 11:43:09 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201906211143.x5LBh9of003258@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Fri, 21 Jun 2019 11:43:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504788 - in head/biology/abyss: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: in head/biology/abyss: . files X-SVN-Commit-Revision: 504788 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 930F88C920 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 11:43:11 -0000 Author: pkubaj Date: Fri Jun 21 11:43:09 2019 New Revision: 504788 URL: https://svnweb.freebsd.org/changeset/ports/504788 Log: biology/abyss: fix build on big-endian architectures Use new GCC from ports on GCC architectures. Merge 25eb9d2a914fb211fdfe04fcda5593f29fd23ff5, fixes build on GCC architectures. Also include sys/endian.h and use bswap32 and bswap64 for byte-swapping (PR at https://github.com/bcgsc/abyss/pull/287 ). PR: 238737 Approved by: yuri (maintainer), mat (mentor) Differential Revision: https://reviews.freebsd.org/D20717 Added: head/biology/abyss/files/patch-Common_city.cc (contents, props changed) Modified: head/biology/abyss/Makefile head/biology/abyss/distinfo Modified: head/biology/abyss/Makefile ============================================================================== --- head/biology/abyss/Makefile Fri Jun 21 11:30:18 2019 (r504787) +++ head/biology/abyss/Makefile Fri Jun 21 11:43:09 2019 (r504788) @@ -6,6 +6,9 @@ PORTREVISION= 2 CATEGORIES= biology MASTER_SITES= http://www.bcgsc.ca/platform/bioinfo/software/${PORTNAME}/releases/${DISTVERSION}/ +PATCH_SITES= https://github.com/bcgsc/${PORTNAME}/commit/ +PATCHFILES= 25eb9d2a914fb211fdfe04fcda5593f29fd23ff5.patch:-p1 + MAINTAINER= yuri@FreeBSD.org COMMENT= Assembly By Short Sequences: parallel, paired-end sequence assembler @@ -21,7 +24,7 @@ LIB_DEPENDS= libffi.so:devel/libffi \ RUN_DEPENDS= bash:shells/bash \ gmake:devel/gmake -USES= gmake iconv:wchar_t localbase:ldflags shebangfix sqlite +USES= compiler:c++11-lang gmake iconv:wchar_t localbase:ldflags shebangfix sqlite SHEBANG_FILES= bin/${PORTNAME}-* SHEBANG_LANG= make make_OLD_CMD= /usr/bin/make Modified: head/biology/abyss/distinfo ============================================================================== --- head/biology/abyss/distinfo Fri Jun 21 11:30:18 2019 (r504787) +++ head/biology/abyss/distinfo Fri Jun 21 11:43:09 2019 (r504788) @@ -1,3 +1,5 @@ -TIMESTAMP = 1551061546 +TIMESTAMP = 1561103807 SHA256 (abyss-2.1.5.tar.gz) = 65bfc8241e6ff5adf7601ae4ae93a75e3db86d6bff5d593c75aaff7f0ef41757 SIZE (abyss-2.1.5.tar.gz) = 1201318 +SHA256 (25eb9d2a914fb211fdfe04fcda5593f29fd23ff5.patch) = 93ad66c42610c4fba8cfbe256a2ab689bf4a76974c3b97a9e1094863614ad934 +SIZE (25eb9d2a914fb211fdfe04fcda5593f29fd23ff5.patch) = 1701 Added: head/biology/abyss/files/patch-Common_city.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/biology/abyss/files/patch-Common_city.cc Fri Jun 21 11:43:09 2019 (r504788) @@ -0,0 +1,13 @@ +--- Common/city.cc.orig 2018-09-21 23:44:14 UTC ++++ Common/city.cc +@@ -65,6 +65,10 @@ static uint32 UNALIGNED_LOAD32(const char *p) { + #define bswap_32(x) OSSwapInt32(x) + #define bswap_64(x) OSSwapInt64(x) + ++#elif defined(__FreeBSD__) ++#include ++#define bswap_32(x) bswap32(x) ++#define bswap_64(x) bswap64(x) + #else + #include + #endif From owner-svn-ports-all@freebsd.org Fri Jun 21 11:44:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3926315D806D; Fri, 21 Jun 2019 11:44:45 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D419A8CA3F; Fri, 21 Jun 2019 11:44:44 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AE89D22C1F; Fri, 21 Jun 2019 11:44:44 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LBiicb003474; Fri, 21 Jun 2019 11:44:44 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LBiiYP003472; Fri, 21 Jun 2019 11:44:44 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201906211144.x5LBiiYP003472@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Fri, 21 Jun 2019 11:44:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504789 - head/mail/dcc-dccd X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/mail/dcc-dccd X-SVN-Commit-Revision: 504789 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D419A8CA3F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.964,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 11:44:45 -0000 Author: pkubaj Date: Fri Jun 21 11:44:43 2019 New Revision: 504789 URL: https://svnweb.freebsd.org/changeset/ports/504789 Log: mail/dcc-dccd: reroll tarball, bump PORTREVISION Upstream has rerolled the tarball: "I discovered that I had made a mistake in including files related to the old licenses in the tarball. They were in pre-2019/LICENSE-rep,v and pre-2019/RESTRICTIONS,v" PR: 238734 Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D20707 Modified: head/mail/dcc-dccd/Makefile head/mail/dcc-dccd/distinfo Modified: head/mail/dcc-dccd/Makefile ============================================================================== --- head/mail/dcc-dccd/Makefile Fri Jun 21 11:43:09 2019 (r504788) +++ head/mail/dcc-dccd/Makefile Fri Jun 21 11:44:43 2019 (r504789) @@ -3,6 +3,7 @@ PORTNAME= dcc-dccd PORTVERSION= 2.3.167 +PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= https://www.dcc-servers.net/dcc/source/old/ DISTNAME= dcc-${PORTVERSION} Modified: head/mail/dcc-dccd/distinfo ============================================================================== --- head/mail/dcc-dccd/distinfo Fri Jun 21 11:43:09 2019 (r504788) +++ head/mail/dcc-dccd/distinfo Fri Jun 21 11:44:43 2019 (r504789) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560932570 -SHA256 (dcc-2.3.167.tar.Z) = 664a0a61ae87ebc9835ddb5197133c67e05911c793e8fa9a80d4f9c502f67858 -SIZE (dcc-2.3.167.tar.Z) = 1610273 +TIMESTAMP = 1561026004 +SHA256 (dcc-2.3.167.tar.Z) = e5da87aca80ddc8bc52fa93869576a2afaf0c1e563e3f97dee6e6531690fbad5 +SIZE (dcc-2.3.167.tar.Z) = 1608415 From owner-svn-ports-all@freebsd.org Fri Jun 21 11:56:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07F8015D82E2; Fri, 21 Jun 2019 11:56:53 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A1BD88CF2E; Fri, 21 Jun 2019 11:56:52 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 864AC22DC5; Fri, 21 Jun 2019 11:56:52 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LBuq4h009095; Fri, 21 Jun 2019 11:56:52 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LBuqJO009094; Fri, 21 Jun 2019 11:56:52 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906211156.x5LBuqJO009094@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 21 Jun 2019 11:56:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504790 - head/math/libxsmm X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/math/libxsmm X-SVN-Commit-Revision: 504790 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A1BD88CF2E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 11:56:53 -0000 Author: linimon Date: Fri Jun 21 11:56:51 2019 New Revision: 504790 URL: https://svnweb.freebsd.org/changeset/ports/504790 Log: Switch to ONLY_FOR_ARCHS=amd64. This port does not build on e.g. powerpc64 due to hardwired assumptions about x86 e.g. in the unconditionally-built src/libxsmm_cpuid_x86.c. Previously it had been marked BROKEN on i386 since it requires 64-bit. So, the easiest thing to do in this case is mark it amd64-only. Approved by: portmgr (tier-2 blanket) Modified: head/math/libxsmm/Makefile Modified: head/math/libxsmm/Makefile ============================================================================== --- head/math/libxsmm/Makefile Fri Jun 21 11:44:43 2019 (r504789) +++ head/math/libxsmm/Makefile Fri Jun 21 11:56:51 2019 (r504790) @@ -11,7 +11,8 @@ COMMENT= Library for dense and sparse matrix operation LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.md -BROKEN_i386= LIBXSMM is only supported on a 64-bit platform! +ONLY_FOR_ARCHS= amd64 +ONLY_FOR_ARCHS_REASON= relies on hard-coded x86 code, and is only supported on 64-bit BUILD_DEPENDS= bash:shells/bash LIB_DEPENDS= libomp.so:devel/openmp From owner-svn-ports-all@freebsd.org Fri Jun 21 11:59:58 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6002715D832D; Fri, 21 Jun 2019 11:59:58 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D41B88D0AD; Fri, 21 Jun 2019 11:59:57 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AB56622DC6; Fri, 21 Jun 2019 11:59:57 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LBxvUl009340; Fri, 21 Jun 2019 11:59:57 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LBxv9K009339; Fri, 21 Jun 2019 11:59:57 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906211159.x5LBxv9K009339@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Fri, 21 Jun 2019 11:59:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504791 - head/mail/thunderbird X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: head/mail/thunderbird X-SVN-Commit-Revision: 504791 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D41B88D0AD X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 11:59:58 -0000 Author: cmt Date: Fri Jun 21 11:59:57 2019 New Revision: 504791 URL: https://svnweb.freebsd.org/changeset/ports/504791 Log: mail/thunderbird: update to 60.7.2 (release) Release notes: https://www.thunderbird.net/en-US/thunderbird/60.7.2/releasenotes/ Approved by: gecko@ (jbeich@, implicit) MFH: 2019Q2 Security: 49beb00f-a6e1-4a42-93df-9cb14b4c2bee Modified: head/mail/thunderbird/Makefile head/mail/thunderbird/distinfo Modified: head/mail/thunderbird/Makefile ============================================================================== --- head/mail/thunderbird/Makefile Fri Jun 21 11:56:51 2019 (r504790) +++ head/mail/thunderbird/Makefile Fri Jun 21 11:59:57 2019 (r504791) @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 60.7.2 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: head/mail/thunderbird/distinfo ============================================================================== --- head/mail/thunderbird/distinfo Fri Jun 21 11:56:51 2019 (r504790) +++ head/mail/thunderbird/distinfo Fri Jun 21 11:59:57 2019 (r504791) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561043121 -SHA256 (thunderbird-60.7.2.source.tar.xz) = 7d82afcc9e51bc79a4c843c93ab58cb6bff5f732c78c0a915dd16538249f55ec -SIZE (thunderbird-60.7.2.source.tar.xz) = 285551844 +TIMESTAMP = 1561056349 +SHA256 (thunderbird-60.7.2.source.tar.xz) = fc89a5f66b17d554fc0b9c153483edcc74b1bacc916dfd6dccead8478060af31 +SIZE (thunderbird-60.7.2.source.tar.xz) = 283874432 From owner-svn-ports-all@freebsd.org Fri Jun 21 12:01:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7DB5C15D89D2; Fri, 21 Jun 2019 12:01:48 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 258108D46F; Fri, 21 Jun 2019 12:01:48 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 028D322F31; Fri, 21 Jun 2019 12:01:48 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LC1l8m013417; Fri, 21 Jun 2019 12:01:47 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LC1lLo013415; Fri, 21 Jun 2019 12:01:47 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906211201.x5LC1lLo013415@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Fri, 21 Jun 2019 12:01:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504792 - branches/2019Q2/mail/thunderbird X-SVN-Group: ports-branches X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: branches/2019Q2/mail/thunderbird X-SVN-Commit-Revision: 504792 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 258108D46F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 12:01:48 -0000 Author: cmt Date: Fri Jun 21 12:01:47 2019 New Revision: 504792 URL: https://svnweb.freebsd.org/changeset/ports/504792 Log: MFH: r504791 mail/thunderbird: update to 60.7.2 (release) Release notes: https://www.thunderbird.net/en-US/thunderbird/60.7.2/releasenotes/ Approved by: gecko@ (jbeich@, implicit) Security: 49beb00f-a6e1-4a42-93df-9cb14b4c2bee Approved by: portmgr (blanket: web browser alike) Modified: branches/2019Q2/mail/thunderbird/Makefile branches/2019Q2/mail/thunderbird/distinfo Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/mail/thunderbird/Makefile ============================================================================== --- branches/2019Q2/mail/thunderbird/Makefile Fri Jun 21 11:59:57 2019 (r504791) +++ branches/2019Q2/mail/thunderbird/Makefile Fri Jun 21 12:01:47 2019 (r504792) @@ -3,6 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 60.7.2 +PORTREVISION= 1 CATEGORIES= mail news net-im ipv6 MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source Modified: branches/2019Q2/mail/thunderbird/distinfo ============================================================================== --- branches/2019Q2/mail/thunderbird/distinfo Fri Jun 21 11:59:57 2019 (r504791) +++ branches/2019Q2/mail/thunderbird/distinfo Fri Jun 21 12:01:47 2019 (r504792) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561043121 -SHA256 (thunderbird-60.7.2.source.tar.xz) = 7d82afcc9e51bc79a4c843c93ab58cb6bff5f732c78c0a915dd16538249f55ec -SIZE (thunderbird-60.7.2.source.tar.xz) = 285551844 +TIMESTAMP = 1561056349 +SHA256 (thunderbird-60.7.2.source.tar.xz) = fc89a5f66b17d554fc0b9c153483edcc74b1bacc916dfd6dccead8478060af31 +SIZE (thunderbird-60.7.2.source.tar.xz) = 283874432 From owner-svn-ports-all@freebsd.org Fri Jun 21 12:18:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0C5C315D904B; Fri, 21 Jun 2019 12:18:13 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 20D298DD62; Fri, 21 Jun 2019 12:18:12 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E8CA72311E; Fri, 21 Jun 2019 12:18:11 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LCIBD6019699; Fri, 21 Jun 2019 12:18:11 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LCIBDi019697; Fri, 21 Jun 2019 12:18:11 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906211218.x5LCIBDi019697@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 21 Jun 2019 12:18:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504793 - in head/math/clblas: . files X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/math/clblas: . files X-SVN-Commit-Revision: 504793 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 20D298DD62 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 12:18:13 -0000 Author: linimon Date: Fri Jun 21 12:18:11 2019 New Revision: 504793 URL: https://svnweb.freebsd.org/changeset/ports/504793 Log: Attempt to fix build on GCC-based systems by removing stray ";" characters. This fix should go upstream. However, at least on powerpc64, the patch is necessary but insufficient: src/library/tools/tune/tune.c:137: error: 'CLOCK_REALTIME' undeclared (first use in this function) After spending some time examining the wrkdir, I can't find its declaration. OTOH the build succeeds on amd64. This may need to be worked on by the upstream. Approved by: portmgr (tier-2 blanket) Added: head/math/clblas/files/patch-src_library_blas_xgemm.cc (contents, props changed) Modified: head/math/clblas/Makefile Modified: head/math/clblas/Makefile ============================================================================== --- head/math/clblas/Makefile Fri Jun 21 12:01:47 2019 (r504792) +++ head/math/clblas/Makefile Fri Jun 21 12:18:11 2019 (r504793) @@ -13,6 +13,8 @@ COMMENT= Software library containing BLAS functions wr LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE +BROKEN_powerpc64= src/library/tools/tune/tune.c:137: error: 'CLOCK_REALTIME' undeclared (first use in this function) + BUILD_DEPENDS= opencl>=0:devel/opencl LIB_DEPENDS= libOpenCL.so:devel/ocl-icd \ libboost_program_options.so:devel/boost-libs Added: head/math/clblas/files/patch-src_library_blas_xgemm.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/clblas/files/patch-src_library_blas_xgemm.cc Fri Jun 21 12:18:11 2019 (r504793) @@ -0,0 +1,35 @@ +--- src/library/blas/xgemm.cc.orig 2016-01-05 17:04:55 UTC ++++ src/library/blas/xgemm.cc +@@ -75,19 +75,19 @@ bool isZero(Precision value); + template<> + bool isZero( float value ) { + return value == 0; +-}; ++} + template<> + bool isZero( double value ) { + return value == 0; +-}; ++} + template<> + bool isZero( FloatComplex value ) { + return CREAL(value) == 0 && CIMAG(value) == 0; +-}; ++} + template<> + bool isZero( DoubleComplex value ) { + return CREAL(value) == 0 && CIMAG(value) == 0; +-}; ++} + + static char *getKernelName(cl_kernel clKernel) + { +@@ -534,7 +534,7 @@ clblasGemm( + if (needRowKernel) makeGemmKernel( rowClKernel, commandQueues[0], rowKernelSource, sourceBuildOptions, &rowKernelBinary, rowKernelBinarySize, binaryBuildOptions); + if (needColKernel) makeGemmKernel( colClKernel, commandQueues[0], colKernelSource, sourceBuildOptions, &colKernelBinary, colKernelBinarySize, binaryBuildOptions); + if (needCornerKernel) makeGemmKernel(cornerClKernel, commandQueues[0], cornerKernelSource, sourceBuildOptions, &cornerKernelBinary, cornerKernelBinarySize, binaryBuildOptions); +- const size_t localWorkSize[2] = { workGroupNumRows, workGroupNumCols }; ++ const size_t localWorkSize[2] = { workGroupNumRows, workGroupNumCols };; + unsigned int numKernelsEnqueued = 0; + + /****************************************************************************** From owner-svn-ports-all@freebsd.org Fri Jun 21 12:36:58 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC72415D95F5; Fri, 21 Jun 2019 12:36:57 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 84F1D8E59B; Fri, 21 Jun 2019 12:36:57 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 64DDD23461; Fri, 21 Jun 2019 12:36:57 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LCavph030269; Fri, 21 Jun 2019 12:36:57 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LCavVd030268; Fri, 21 Jun 2019 12:36:57 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906211236.x5LCavVd030268@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 21 Jun 2019 12:36:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504794 - head/devel/tigcc X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/devel/tigcc X-SVN-Commit-Revision: 504794 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 84F1D8E59B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 12:36:58 -0000 Author: tobik Date: Fri Jun 21 12:36:56 2019 New Revision: 504794 URL: https://svnweb.freebsd.org/changeset/ports/504794 Log: devel/tigcc: Make build and configure discrete steps To avoid reruns of the configure scripts after restarting the build. Modified: head/devel/tigcc/Makefile Modified: head/devel/tigcc/Makefile ============================================================================== --- head/devel/tigcc/Makefile Fri Jun 21 12:18:11 2019 (r504793) +++ head/devel/tigcc/Makefile Fri Jun 21 12:36:56 2019 (r504794) @@ -39,8 +39,8 @@ post-patch: ${WRKSRC}/tigcc/sources/patcher/src/Makefile ${WRKSRC}/tigcc/sources/tigcc/src/Makefile \ ${WRKSRC}/tigcc/sources/tprbuilder/src/Makefile -do-build: - @${ECHO} Building GNU AS +do-configure: + @${ECHO} Configuring GNU AS @${MKDIR} ${WRKSRC}/gnu/binutils_build @cd ${WRKSRC}/gnu/binutils_build; \ ${SETENV} CC="${CC}" CPP="${CPP}" CXX="${CXX}" \ @@ -49,9 +49,7 @@ do-build: ${CONFIGURE_ENV} \ ${WRKSRC}/gnu/binutils-2.16.1/configure --disable-serial-configure --target=m68k-coff --disable-shared \ --enable-static --disable-multilib --disable-nls --disable-win32-registry - @cd ${WRKSRC}/gnu/binutils_build; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} - - @${ECHO} Building the GNU C COMPILER + @${ECHO} Configuring the GNU C COMPILER @${MKDIR} ${WRKSRC}/gnu/gcc_build @cd ${WRKSRC}/gnu/gcc_build; \ ${SETENV} CC="${CC}" CPP="${CPP}" CXX="${CXX}" \ @@ -61,6 +59,12 @@ do-build: ${WRKSRC}/gnu/gcc-4.1-20060728/configure --target=m68k-coff --with-gnu-as --disable-nls --disable-multilib \ --disable-shared --enable-static --disable-threads --disable-win32-registry --disable-checking --disable-werror \ --disable-pch --disable-mudflap --disable-libssp + +do-build: + @${ECHO} Building GNU AS + @cd ${WRKSRC}/gnu/binutils_build; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} + + @${ECHO} Building the GNU C COMPILER @cd ${WRKSRC}/gnu/gcc_build; ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} @${ECHO} Building A68K From owner-svn-ports-all@freebsd.org Fri Jun 21 12:37:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E42EC15D962F; Fri, 21 Jun 2019 12:37:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8783B8E683; Fri, 21 Jun 2019 12:37:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4BC1C23462; Fri, 21 Jun 2019 12:37:52 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LCbqed030405; Fri, 21 Jun 2019 12:37:52 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LCbqC9030404; Fri, 21 Jun 2019 12:37:52 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906211237.x5LCbqC9030404@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Fri, 21 Jun 2019 12:37:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504795 - head/devel/tigcc/files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/devel/tigcc/files X-SVN-Commit-Revision: 504795 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8783B8E683 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 12:37:53 -0000 Author: tobik Date: Fri Jun 21 12:37:51 2019 New Revision: 504795 URL: https://svnweb.freebsd.org/changeset/ports/504795 Log: devel/tigcc: Unbreak build with GCC 9 .../gnu/gcc-4.1-20060728/gcc/c-decl.c: At top level: .../gnu/gcc-4.1-20060728/gcc/c-decl.c:1130:1: error: 'cgraph_node' is not defined as a type 1130 | locate_old_decl (tree decl, void (*diag)(const char *, ...) ATTRIBUTE_GCC_CDIAG(1,2)) | ^~~~~~~~~~~~~~~ http://pb2.nyi.freebsd.org/data/120i386-default-PR238330/2019-06-09_20h27m22s/logs/errors/tigcc-0.96.b8_9.log Workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90677 PR: 238330 Added: head/devel/tigcc/files/patch-gcc9 (contents, props changed) Added: head/devel/tigcc/files/patch-gcc9 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/tigcc/files/patch-gcc9 Fri Jun 21 12:37:51 2019 (r504795) @@ -0,0 +1,42 @@ +Unbreak build with GCC 9 + +.../gnu/gcc-4.1-20060728/gcc/c-decl.c: At top level: +.../gnu/gcc-4.1-20060728/gcc/c-decl.c:1130:1: error: 'cgraph_node' is not defined as a type + 1130 | locate_old_decl (tree decl, void (*diag)(const char *, ...) ATTRIBUTE_GCC_CDIAG(1,2)) + | ^~~~~~~~~~~~~~~ + +Workaround for https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90677 + +--- gnu/gcc-4.1-20060728/gcc/c-tree.h.orig 2019-06-21 11:59:14 UTC ++++ gnu/gcc-4.1-20060728/gcc/c-tree.h +@@ -613,7 +613,7 @@ extern void c_write_global_declarations (void); + /* In order for the format checking to accept the C frontend + diagnostic framework extensions, you must include this file before + toplev.h, not after. */ +-#if GCC_VERSION >= 4001 ++#if GCC_VERSION >= 4001 && GCC_VERSION < 9001 + #define ATTRIBUTE_GCC_CDIAG(m, n) __attribute__ ((__format__ (GCC_DIAG_STYLE, m ,n))) ATTRIBUTE_NONNULL(m) + #else + #define ATTRIBUTE_GCC_CDIAG(m, n) ATTRIBUTE_NONNULL(m) +--- gnu/gcc-4.1-20060728/gcc/pretty-print.h.orig 2019-06-21 11:57:02 UTC ++++ gnu/gcc-4.1-20060728/gcc/pretty-print.h +@@ -301,7 +301,7 @@ extern void pp_base_append_text (pretty_printer *, con + + /* This header may be included before toplev.h, hence the duplicate + definitions to allow for GCC-specific formats. */ +-#if GCC_VERSION >= 3005 ++#if GCC_VERSION >= 3005 && GCC_VERSION < 9001 + #define ATTRIBUTE_GCC_PPDIAG(m, n) __attribute__ ((__format__ (__gcc_diag__, m ,n))) ATTRIBUTE_NONNULL(m) + #else + #define ATTRIBUTE_GCC_PPDIAG(m, n) ATTRIBUTE_NONNULL(m) +--- gnu/gcc-4.1-20060728/gcc/toplev.h.orig 2019-06-21 11:58:27 UTC ++++ gnu/gcc-4.1-20060728/gcc/toplev.h +@@ -49,7 +49,7 @@ extern void _fatal_insn (const char *, rtx, const char + /* None of these functions are suitable for ATTRIBUTE_PRINTF, because + each language front end can extend them with its own set of format + specifiers. We must use custom format checks. */ +-#if GCC_VERSION >= 4001 ++#if GCC_VERSION >= 4001 && GCC_VERSION < 9001 + #define ATTRIBUTE_GCC_DIAG(m, n) __attribute__ ((__format__ (GCC_DIAG_STYLE, m, n))) ATTRIBUTE_NONNULL(m) + #else + #define ATTRIBUTE_GCC_DIAG(m, n) ATTRIBUTE_NONNULL(m) From owner-svn-ports-all@freebsd.org Fri Jun 21 12:42:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D4CB15D98F9; Fri, 21 Jun 2019 12:42:03 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 345878EB02; Fri, 21 Jun 2019 12:42:03 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 05CBA151E6; Fri, 21 Jun 2019 12:42:02 +0000 (UTC) From: Jan Beich To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504793 - in head/math/clblas: . files References: <201906211218.x5LCIBDi019697@repo.freebsd.org> Date: Fri, 21 Jun 2019 14:41:59 +0200 In-Reply-To: <201906211218.x5LCIBDi019697@repo.freebsd.org> (Mark Linimon's message of "Fri, 21 Jun 2019 12:18:11 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 345878EB02 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.82 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.82)[-0.820,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 12:42:03 -0000 Mark Linimon writes: > Author: linimon > Date: Fri Jun 21 12:18:11 2019 > New Revision: 504793 > URL: https://svnweb.freebsd.org/changeset/ports/504793 > > Log: > Attempt to fix build on GCC-based systems by removing stray ";" characters. > This fix should go upstream. [...] > +@@ -534,7 +534,7 @@ clblasGemm( > + if (needRowKernel) makeGemmKernel( rowClKernel, commandQueues[0], rowKernelSource, sourceBuildOptions, &rowKernelBinary, rowKernelBinarySize, binaryBuildOptions); > + if (needColKernel) makeGemmKernel( colClKernel, commandQueues[0], colKernelSource, sourceBuildOptions, &colKernelBinary, colKernelBinarySize, binaryBuildOptions); > + if (needCornerKernel) makeGemmKernel(cornerClKernel, commandQueues[0], cornerKernelSource, sourceBuildOptions, &cornerKernelBinary, cornerKernelBinarySize, binaryBuildOptions); > +- const size_t localWorkSize[2] = { workGroupNumRows, workGroupNumCols }; > ++ const size_t localWorkSize[2] = { workGroupNumRows, workGroupNumCols };; Why did you add extra ";" (semicolon) here? From owner-svn-ports-all@freebsd.org Fri Jun 21 12:53:21 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 01E7215D9BEA; Fri, 21 Jun 2019 12:53:21 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9B6D18F015; Fri, 21 Jun 2019 12:53:20 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 88AD8153B8; Fri, 21 Jun 2019 12:53:20 +0000 (UTC) From: Jan Beich To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504784 - head/net/tcpkali References: <201906211104.x5LB4AmI081926@repo.freebsd.org> Date: Fri, 21 Jun 2019 14:53:16 +0200 In-Reply-To: <201906211104.x5LB4AmI081926@repo.freebsd.org> (Mark Linimon's message of "Fri, 21 Jun 2019 11:04:10 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 9B6D18F015 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.82 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.82)[-0.820,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 12:53:21 -0000 Mark Linimon writes: > Author: linimon > Date: Fri Jun 21 11:04:10 2019 > New Revision: 504784 > URL: https://svnweb.freebsd.org/changeset/ports/504784 > > Log: > Change !x86 from BROKEN_powerpc64 to ONLY_FOR_ARCHS. The upstream has > x86 assembler unconditionally hard-coded in src/tcpkali_atomic.h. [...] > -BROKEN_mips= invokes x86 assembler > -BROKEN_mips64= invokes x86 assembler > -BROKEN_sparc64= invokes x86 assembler > -BROKEN_powerpc64= invokes x86 assembler > +ONLY_FOR_ARCHS= amd64 i386 > +ONLY_FOR_ARCHS_REASON= src/tcpkali_atomic.h unconditionally includes x86 assembler Where? Builds fine on Clang-based non-x86 architectures. http://thunderx1.nyi.freebsd.org/data/head-arm64-default/p504051_s349005/logs/tcpkali-1.1.1.log http://beefy8.nyi.freebsd.org/data/head-armv6-default/p503933_s348887/logs/tcpkali-1.1.1.log http://beefy16.nyi.freebsd.org/data/head-armv7-default/p503933_s348887/logs/tcpkali-1.1.1.log From owner-svn-ports-all@freebsd.org Fri Jun 21 12:59:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0ADB015D9C4A; Fri, 21 Jun 2019 12:59:08 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 983768F144; Fri, 21 Jun 2019 12:59:07 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 8879D154DD; Fri, 21 Jun 2019 12:59:07 +0000 (UTC) From: Jan Beich To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504631 - head/audio/infamous-plugins-lv2 References: <201906201521.x5KFLfZ3045705@repo.freebsd.org> Date: Fri, 21 Jun 2019 14:59:03 +0200 In-Reply-To: <201906201521.x5KFLfZ3045705@repo.freebsd.org> (Mark Linimon's message of "Thu, 20 Jun 2019 15:21:41 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 983768F144 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.82 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_SHORT(-0.82)[-0.820,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 12:59:08 -0000 Mark Linimon writes: > Author: linimon > Date: Thu Jun 20 15:21:40 2019 > New Revision: 504631 > URL: https://svnweb.freebsd.org/changeset/ports/504631 > > Log: > Patch out -Og flag in src/*/CMakeLists.txt to fix build on GCC-based > systems such as powerpc64: > > cc1: invalid option argument '-Og' [...] > +.if ${CHOSEN_COMPILER_TYPE} == gcc > + @${REINPLACE_CMD} -e 's| -Og"|"|' \ > + ${WRKSRC}/src/*/CMakeLists.txt > +.endif -Og is supported by GCC, just not by the ancient one in base. ;) However, removing -Og (and -g) can be done on every architecture because it'd enforce "respect CFLAGS" policy. https://www.freebsd.org/doc/en/books/porters-handbook/dads-cflags.html From owner-svn-ports-all@freebsd.org Fri Jun 21 13:02:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF93B15D9E02; Fri, 21 Jun 2019 13:02:46 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 84B528F4DF; Fri, 21 Jun 2019 13:02:46 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 573CC23957; Fri, 21 Jun 2019 13:02:46 +0000 (UTC) (envelope-from demon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LD2kmm046027; Fri, 21 Jun 2019 13:02:46 GMT (envelope-from demon@FreeBSD.org) Received: (from demon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LD2kVs046026; Fri, 21 Jun 2019 13:02:46 GMT (envelope-from demon@FreeBSD.org) Message-Id: <201906211302.x5LD2kVs046026@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: demon set sender to demon@FreeBSD.org using -f From: Dmitry Sivachenko Date: Fri, 21 Jun 2019 13:02:46 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504796 - head/net/haproxy X-SVN-Group: ports-head X-SVN-Commit-Author: demon X-SVN-Commit-Paths: head/net/haproxy X-SVN-Commit-Revision: 504796 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 84B528F4DF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 13:02:47 -0000 Author: demon Date: Fri Jun 21 13:02:45 2019 New Revision: 504796 URL: https://svnweb.freebsd.org/changeset/ports/504796 Log: Add an option to build with the Prometheus exporter as a service. PR: 238732 Submitted by: Felix Hanley Modified: head/net/haproxy/Makefile Modified: head/net/haproxy/Makefile ============================================================================== --- head/net/haproxy/Makefile Fri Jun 21 12:37:51 2019 (r504795) +++ head/net/haproxy/Makefile Fri Jun 21 13:02:45 2019 (r504796) @@ -21,12 +21,13 @@ MAKE_ARGS= TARGET=freebsd DEFINE=-DFREEBSD_PORTS USE_G USE_ZLIB=1 USE_CPU_AFFINITY=1 USE_ACCEPT4=1 \ CC="${CC}" DEBUG_CFLAGS="" CPU_CFLAGS="${CFLAGS}" -OPTIONS_DEFINE= DOCS EXAMPLES LUA OPENSSL DEVICEATLAS +OPTIONS_DEFINE= DOCS EXAMPLES LUA OPENSSL DEVICEATLAS PROMEX OPTIONS_RADIO= PCRE OPTIONS_RADIO_PCRE= DPCRE SPCRE DPCRE_DESC= Link dynamically SPCRE_DESC= Link statically DEVICEATLAS_DESC= DeviceAtlas Device Detection support +PROMEX_DESC= Enable Prometheus exporter OPTIONS_DEFAULT= SPCRE OPENSSL DPCRE_LIB_DEPENDS= libpcre.so:devel/pcre @@ -35,6 +36,7 @@ SPCRE_LIB_DEPENDS= libpcre.so:devel/pcre SPCRE_MAKE_ARGS= USE_PCRE=1 USE_STATIC_PCRE=1 USE_PCRE_JIT=1 DEVICEATLAS_LIB_DEPENDS= libda.so:net/deviceatlas-enterprise-c DEVICEATLAS_MAKE_ARGS= USE_DEVICEATLAS=1 DEVICEATLAS_LIB=${LOCALBASE}/lib DEVICEATLAS_INC=${LOCALBASE}/include +PROMEX_MAKE_ARGS= EXTRA_OBJS="contrib/prometheus-exporter/service-prometheus.o" OPENSSL_USES= ssl OPENSSL_MAKE_ARGS= USE_OPENSSL=1 SSL_LIB=${OPENSSLLIB} SSL_INC=${OPENSSLINC} LUA_USES= lua:53 From owner-svn-ports-all@freebsd.org Fri Jun 21 13:19:16 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B577815D9FFB; Fri, 21 Jun 2019 13:19:16 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 59FE48F9F1; Fri, 21 Jun 2019 13:19:16 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3302C23AFE; Fri, 21 Jun 2019 13:19:16 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LDJGkD051373; Fri, 21 Jun 2019 13:19:16 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LDJFOV051372; Fri, 21 Jun 2019 13:19:15 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201906211319.x5LDJFOV051372@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Fri, 21 Jun 2019 13:19:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504797 - head/graphics/pdfpc X-SVN-Group: ports-head X-SVN-Commit-Author: bapt X-SVN-Commit-Paths: head/graphics/pdfpc X-SVN-Commit-Revision: 504797 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 59FE48F9F1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 13:19:16 -0000 Author: bapt Date: Fri Jun 21 13:19:15 2019 New Revision: 504797 URL: https://svnweb.freebsd.org/changeset/ports/504797 Log: Update to 4.3.4 Modified: head/graphics/pdfpc/Makefile head/graphics/pdfpc/distinfo Modified: head/graphics/pdfpc/Makefile ============================================================================== --- head/graphics/pdfpc/Makefile Fri Jun 21 13:02:45 2019 (r504796) +++ head/graphics/pdfpc/Makefile Fri Jun 21 13:19:15 2019 (r504797) @@ -1,10 +1,9 @@ # $FreeBSD$ PORTNAME= pdfpc -DISTVERSION= 4.3.2 +DISTVERSION= 4.3.4 CATEGORIES= graphics DISTVERSIONPREFIX= v -PORTREVISION= 2 MAINTAINER= bapt@FreeBSD.org COMMENT= Keynote-like multi-monitor presentation viewer Modified: head/graphics/pdfpc/distinfo ============================================================================== --- head/graphics/pdfpc/distinfo Fri Jun 21 13:02:45 2019 (r504796) +++ head/graphics/pdfpc/distinfo Fri Jun 21 13:19:15 2019 (r504797) @@ -1,3 +1,3 @@ -TIMESTAMP = 1549359422 -SHA256 (pdfpc-pdfpc-v4.3.2_GH0.tar.gz) = 44b487ea207bac88364e136570d4d4baaec08cfd1388e3477fb52a36b6c57f29 -SIZE (pdfpc-pdfpc-v4.3.2_GH0.tar.gz) = 107504 +TIMESTAMP = 1561123005 +SHA256 (pdfpc-pdfpc-v4.3.4_GH0.tar.gz) = cc3ccd7a23990b76dd6083e774d28f63d726a86db3a7f180b1c90596b735d5ed +SIZE (pdfpc-pdfpc-v4.3.4_GH0.tar.gz) = 107458 From owner-svn-ports-all@freebsd.org Fri Jun 21 13:44:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE57015A69B9; Fri, 21 Jun 2019 13:44:23 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5542869C72; Fri, 21 Jun 2019 13:44:23 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2834224008; Fri, 21 Jun 2019 13:44:23 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LDiNdR066994; Fri, 21 Jun 2019 13:44:23 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LDiMEs066992; Fri, 21 Jun 2019 13:44:22 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201906211344.x5LDiMEs066992@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Fri, 21 Jun 2019 13:44:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504798 - in head: . www www/rubygem-lograge-rails50 X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head: . www www/rubygem-lograge-rails50 X-SVN-Commit-Revision: 504798 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5542869C72 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 13:44:23 -0000 Author: mfechner Date: Fri Jun 21 13:44:22 2019 New Revision: 504798 URL: https://svnweb.freebsd.org/changeset/ports/504798 Log: Removed www/rubygem-lograge-rails50 as it is obsolete by gitlab-ce upgrade. Deleted: head/www/rubygem-lograge-rails50/ Modified: head/MOVED head/www/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Fri Jun 21 13:19:15 2019 (r504797) +++ head/MOVED Fri Jun 21 13:44:22 2019 (r504798) @@ -12805,3 +12805,4 @@ databases/postgis22|databases/postgis23|2019-06-16|Has games/freeciv-sounds||2019-06-16|Unused and already part of games/freeciv security/py-bro-pkg|security/py-zkg|2019-06-17|Renamed to match upstream changes devel/py-pydocumentdb|devel/py-azure-cosmos|2019-06-20|Renamed upstream +www/rubygem-lograge-rails50|www/rubygem-lograge-rails5|2019-06-21|Obsolete by gitlab-ce upgrade, use www/rubygem-lograge-rails5 instead Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Jun 21 13:19:15 2019 (r504797) +++ head/www/Makefile Fri Jun 21 13:44:22 2019 (r504798) @@ -2060,7 +2060,6 @@ SUBDIR += rubygem-link_header SUBDIR += rubygem-lograge SUBDIR += rubygem-lograge-rails5 - SUBDIR += rubygem-lograge-rails50 SUBDIR += rubygem-maruku SUBDIR += rubygem-mechanize SUBDIR += rubygem-merb-assets From owner-svn-ports-all@freebsd.org Fri Jun 21 13:47:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0608F15A6A21; Fri, 21 Jun 2019 13:47:04 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A036569DFE; Fri, 21 Jun 2019 13:47:03 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 79E7D2400B; Fri, 21 Jun 2019 13:47:03 +0000 (UTC) (envelope-from mfechner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LDl3Oj067263; Fri, 21 Jun 2019 13:47:03 GMT (envelope-from mfechner@FreeBSD.org) Received: (from mfechner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LDl3AJ067261; Fri, 21 Jun 2019 13:47:03 GMT (envelope-from mfechner@FreeBSD.org) Message-Id: <201906211347.x5LDl3AJ067261@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mfechner set sender to mfechner@FreeBSD.org using -f From: Matthias Fechner Date: Fri, 21 Jun 2019 13:47:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504799 - in head: . devel devel/rubygem-batch-loader12 X-SVN-Group: ports-head X-SVN-Commit-Author: mfechner X-SVN-Commit-Paths: in head: . devel devel/rubygem-batch-loader12 X-SVN-Commit-Revision: 504799 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A036569DFE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 13:47:04 -0000 Author: mfechner Date: Fri Jun 21 13:47:02 2019 New Revision: 504799 URL: https://svnweb.freebsd.org/changeset/ports/504799 Log: Obsolete by gitlab-ce upgrade, use devel/rubygem-batch-loader instead. Deleted: head/devel/rubygem-batch-loader12/ Modified: head/MOVED head/devel/Makefile Modified: head/MOVED ============================================================================== --- head/MOVED Fri Jun 21 13:44:22 2019 (r504798) +++ head/MOVED Fri Jun 21 13:47:02 2019 (r504799) @@ -12806,3 +12806,4 @@ games/freeciv-sounds||2019-06-16|Unused and already pa security/py-bro-pkg|security/py-zkg|2019-06-17|Renamed to match upstream changes devel/py-pydocumentdb|devel/py-azure-cosmos|2019-06-20|Renamed upstream www/rubygem-lograge-rails50|www/rubygem-lograge-rails5|2019-06-21|Obsolete by gitlab-ce upgrade, use www/rubygem-lograge-rails5 instead +devel/rubygem-batch-loader12|devel/rubygem-batch-loader|2019-06-21|Obsolete by gitlab-ce upgrade, use devel/rubygem-batch-loader instead Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jun 21 13:44:22 2019 (r504798) +++ head/devel/Makefile Fri Jun 21 13:47:02 2019 (r504799) @@ -5367,7 +5367,6 @@ SUBDIR += rubygem-bacon SUBDIR += rubygem-baf SUBDIR += rubygem-batch-loader - SUBDIR += rubygem-batch-loader12 SUBDIR += rubygem-benelux SUBDIR += rubygem-bin_utils SUBDIR += rubygem-bindata From owner-svn-ports-all@freebsd.org Fri Jun 21 13:52:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 417C315A6CBA; Fri, 21 Jun 2019 13:52:03 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E65536A1CA; Fri, 21 Jun 2019 13:52:02 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C1A2A24187; Fri, 21 Jun 2019 13:52:02 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LDq2tY071362; Fri, 21 Jun 2019 13:52:02 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LDq1E6071357; Fri, 21 Jun 2019 13:52:01 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906211352.x5LDq1E6071357@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Fri, 21 Jun 2019 13:52:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504800 - in head/cad: . kicad-doc X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: in head/cad: . kicad-doc X-SVN-Commit-Revision: 504800 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E65536A1CA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.99)[-0.985,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 13:52:03 -0000 Author: cmt Date: Fri Jun 21 13:52:01 2019 New Revision: 504800 URL: https://svnweb.freebsd.org/changeset/ports/504800 Log: cad/kicad-doc: online help files and documentation for cad/kicad PR: 238678 Reported by: bob at eager dot cx Added: head/cad/kicad-doc/ head/cad/kicad-doc/Makefile (contents, props changed) head/cad/kicad-doc/distinfo (contents, props changed) head/cad/kicad-doc/pkg-descr (contents, props changed) head/cad/kicad-doc/pkg-plist (contents, props changed) Modified: head/cad/Makefile Modified: head/cad/Makefile ============================================================================== --- head/cad/Makefile Fri Jun 21 13:47:02 2019 (r504799) +++ head/cad/Makefile Fri Jun 21 13:52:01 2019 (r504800) @@ -45,6 +45,7 @@ SUBDIR += k40-whisperer SUBDIR += kicad SUBDIR += kicad-devel + SUBDIR += kicad-doc SUBDIR += kicad-library-footprints SUBDIR += kicad-library-footprints-devel SUBDIR += kicad-library-packages3d Added: head/cad/kicad-doc/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/kicad-doc/Makefile Fri Jun 21 13:52:01 2019 (r504800) @@ -0,0 +1,41 @@ +# Created by: Christoph Moench-Tegeder +# $FreeBSD$ + +PORTNAME= kicad +PORTVERSION= 5.1.2 +CATEGORIES= cad +PKGNAMESUFFIX= -doc + +MAINTAINER= cmt@FreeBSD.org +COMMENT= KiCad Online Documentation/Help Files + +LICENSE= GPLv3+ CC-BY-3.0 +LICENSE_COMB= dual +LICENSE_FILE= ${WRKSRC}/LICENSE.adoc + +BUILD_DEPENDS= ja-font-vlgothic>0:japanese/font-vlgothic \ + tex-xetex>0:print/tex-xetex \ + asciidoc:textproc/asciidoc \ + dblatex:textproc/dblatex \ + po4a:textproc/po4a \ + source-highlight:textproc/source-highlight \ + freefont-ttf>0:x11-fonts/freefont-ttf +RUN_DEPENDS= kicad:cad/kicad + +USES= cmake gettext-tools + +USE_GITHUB= yes +GH_ACCOUNT= KiCad +GH_PROJECT= kicad-doc + +CONFLICTS= kicad-devel-r2* + +CMAKE_ARGS= -DLOCALBASE="${LOCALBASE}" \ + -DLANGUAGES="ca;de;en;es;fr;id;it;ja;nl;ru" +INSTALL_TARGET= install + +PLIST_SUB= PORTDOCS="" + +NO_ARCH= yes + +.include Added: head/cad/kicad-doc/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/kicad-doc/distinfo Fri Jun 21 13:52:01 2019 (r504800) @@ -0,0 +1,3 @@ +TIMESTAMP = 1560964820 +SHA256 (KiCad-kicad-doc-5.1.2_GH0.tar.gz) = db6756f5d10888b3c59ad808f522b3211a128207f7f725795ff941d401e61698 +SIZE (KiCad-kicad-doc-5.1.2_GH0.tar.gz) = 75313181 Added: head/cad/kicad-doc/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/kicad-doc/pkg-descr Fri Jun 21 13:52:01 2019 (r504800) @@ -0,0 +1,3 @@ +This port installs the official KiCad schematic symbol libraries. + +WWW: https://github.com/KiCad/kicad-symbols Added: head/cad/kicad-doc/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/cad/kicad-doc/pkg-plist Fri Jun 21 13:52:01 2019 (r504800) @@ -0,0 +1,5750 @@ +%%PORTDOCS%%%%DOCSDIR%%/help/ca/getting_started_in_kicad.epub +%%PORTDOCS%%%%DOCSDIR%%/help/ca/getting_started_in_kicad.html +%%PORTDOCS%%%%DOCSDIR%%/help/ca/getting_started_in_kicad.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/choose_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/component_history.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/configure_path_dlg.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/custom_tracks_width.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/design_rules.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/edit_component_dropdown.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/kicad_flowchart.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/kicad_main_window.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/main_window.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/menu_file.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/pad_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/pcbnew_select_track_width.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/pin_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/place_a_via.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/preferences_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/select_top_copper.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/template_selected.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/template_selector.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/template_tree.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/template_tree_meta.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_accelerator_keys.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_bus_connection.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_high_number_pins.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_hotkeys.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_myconn3_l.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_myconn3_quicklib.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_myconn3_s.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_010.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_020.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_030.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_040.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_050.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_060.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_070.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_080.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_090.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_100.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_bus.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_bus2bus.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_dashed_line.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_line.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_line2bus.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_line_label.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_polygon.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_power.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_rectangle.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_tracks.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_zone.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/annotate.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/bom.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/cvpcb.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/datasheet.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/drc.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/edit_comp_footprint.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/edit_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/edit_module.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/eeschema.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/erc.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/export.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/general_ratsnest.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/gerber_file.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/hidden_pin.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/import.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/import_cmp_from_lib.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/libedit.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/library.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/module_filtered_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/module_library_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/module_pin_filtered_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/net_highlight.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/netlist.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/new_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/new_footprint.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/new_library.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/new_project.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/new_project_with_template.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/noconn.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/open_document.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/open_library.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/open_project.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/pad.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/part_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/pcbnew.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/pin.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/plot.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/reload.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/save.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/save_library.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/save_part_in_mem.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/save_project.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/sheetset.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/show_footprint.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/text.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/zip.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/launch_pane.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/logo.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/main_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/pcbnew_3d_viewer.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/project_tree.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/resistor_value.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/select_edge_cuts.png +%%PORTDOCS%%%%DOCSDIR%%/help/ca/kicad.epub +%%PORTDOCS%%%%DOCSDIR%%/help/ca/kicad.html +%%PORTDOCS%%%%DOCSDIR%%/help/ca/kicad.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/de/cvpcb.epub +%%PORTDOCS%%%%DOCSDIR%%/help/de/cvpcb.html +%%PORTDOCS%%%%DOCSDIR%%/help/de/cvpcb.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/de/eeschema.epub +%%PORTDOCS%%%%DOCSDIR%%/help/de/eeschema.html +%%PORTDOCS%%%%DOCSDIR%%/help/de/eeschema.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/de/gerbview.epub +%%PORTDOCS%%%%DOCSDIR%%/help/de/gerbview.html +%%PORTDOCS%%%%DOCSDIR%%/help/de/gerbview.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/de/getting_started_in_kicad.epub +%%PORTDOCS%%%%DOCSDIR%%/help/de/getting_started_in_kicad.html +%%PORTDOCS%%%%DOCSDIR%%/help/de/getting_started_in_kicad.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/de/gui_translation_howto.epub +%%PORTDOCS%%%%DOCSDIR%%/help/de/gui_translation_howto.html +%%PORTDOCS%%%%DOCSDIR%%/help/de/gui_translation_howto.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/de/idf_exporter.epub +%%PORTDOCS%%%%DOCSDIR%%/help/de/idf_exporter.html +%%PORTDOCS%%%%DOCSDIR%%/help/de/idf_exporter.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Footprint_library_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Footprint_tables_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Library_list_menu_item.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Library_tables_menu_item.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_3D_file_browser.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_alias_path_config.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_context_menu_graphics.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_context_menu_module_parameters.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_context_menu_pads.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_footprint_level_pad_settings.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_footprint_text_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_internal_path_config.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_main_window.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_3d_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_attributes.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_autoplace_settings.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_properties_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_properties_documentation_fields.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_pad_delta_example.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_pad_level_pad_settings.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_pad_offset_example.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_pad_properties_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_top_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_DRC_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_action_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_add_cutout_menu_item.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_advanced_tracing_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_archive_footprints_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_array_dialog_circular.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_array_dialog_grid.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_array_grid_offsets.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_array_grid_stagger_cols_3.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_array_grid_stagger_rows_2.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_bad_tracks_deletion_option.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_board_outline_imported_from_a_DXF.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_board_outline_with_dogpile.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_board_outline_with_globally_placed_modules.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_change_modules_button.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_circuit_after_placement.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_context_module_mode_module_under_cursor.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_context_module_mode_no_module_under_cursor.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_coordinate_status_display.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_copper_layers_contrast_high.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_copper_layers_contrast_normal.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_creating_new_track.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_design_rules_dropdown.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_design_rules_editor_global_tab.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_design_rules_editor_netclass_tab.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_design_rules_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_design_rules_top_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_dimensions_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_dr_example_rustic.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_dr_example_standard.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_drill_file_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_drill_origin_setting.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_edit_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_example_library.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_exchange_module_option.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_extra_footprints_deletion_option.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_file_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_fill_refill_all_zones.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_final_preparation_example_board.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_footprint_exchange_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_general_options_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_grid_size_dropdown.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_import_spread_footprints.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_inspect_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_keepout_area_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_colour_key.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_manager_pane.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_pair_indicator.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_selection_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_selection_dropdown.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_selection_popup.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_setup_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_setup_dialog_layer_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_left_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_legacy_block_selection_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_library_wizard.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_measurement_tool.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_module_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_module_selection_option.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_move_all_modules.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_move_exact_cartesian.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_move_exact_polar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_new_track_completed.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_new_track_in_progress.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_pad_mask_clearance_menu_item.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_pad_mask_settings_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_place_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_plot_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_plot_fine_scale_setting.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_plot_options_gerber.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_plot_options_other_formats.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_plot_postscript_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_footprint_mode.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_footprint_mode_footprint.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_footprint_mode_track.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_normal_mode.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_normal_mode_footprint.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_normal_mode_track.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_track_mode.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_track_mode_footprint.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_track_mode_track.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_preferences_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_ratsnest_during_move.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_right_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_route_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_routing_posture.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_setting_pcb_origin.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_setup_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_simple_board_outline.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_specific_size_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_stacked_footprints.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_technical_layer_zone_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_technical_layers_contrast_high.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_technical_layers_contrast_normal.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_thermal_relief_parameters.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_thermal_relief_settings.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_toolbar_layer_select_dropdown.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_tools_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_top_menu_bar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_top_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_context_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_global_edit_context_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_global_edit_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_in_progres_context.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_thickness_dropdown.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_grid_size_selection.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_track_width_selection.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_track_width_selection_in_use.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_via_size_selection.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_via_size_selection_in_use.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_zoom_selection.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_unlock_footprint_option.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_unstacked_footprints.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_via_layer_pair_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_via_layer_pair_popup.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_via_size_dropdown.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_view_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_add_similar_after.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_add_similar_during.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_context_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_corner_move_after.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_corner_move_during.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_exclude_pads.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_filled_with_cutout.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_filling_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_filling_result.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_include_pads.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_limit_example.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_modification_menu_items.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_priority_example.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_priority_example_after_filling.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_priority_level_setting.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_properties_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_thermal_relief.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_unfilled_cutout_outline.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zoom_factor_dropdown.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Right-click_legacy_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Sample_3D_board.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/bom_extra_option_windows.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/bus_junction.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste11.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste12.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste13.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste21.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste22.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste23.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste31.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste32.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste33.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste41.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste42.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste43.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste51.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste52.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste53.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/cvpcb_main_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/3d_window.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/annotate-dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/block_constraints.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/bom-netlist-tab.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/choose_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/color_settings.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/commands_overview.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/component_during_placement.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/component_history.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/configure_path_dlg.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/constraint_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/context_createnew.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/context_createnew2.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/context_line_move.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/context_line_move_end.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/context_line_move_start.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/custom_tracks_width.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/cvpcb_main_window.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/cvpcb_preference_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/default_hot_key_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/design_rules.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dev-chain.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_bom.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_choose_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_component_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_erc.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_erc_opts.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_newline.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_newtext.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_select_element.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/display_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/edit_component_dropdown.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_component_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_cvpcb_with_filtering.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_cvpcb_without_filtering.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_file_menu_plot.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_filter.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_hierarchical_pin.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_alias.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_anchor.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_context_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_description.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_disable_common.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_field_context_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_field_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_footprint.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_new.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_not_interchangeable.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_pin_context_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_pin_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_pin_properties_style.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_polyline_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_power_symbol.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_select_unit.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_netlist_dialog_add_plugin.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_netlist_dialog_padspcb.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_netlist_dialog_pcbnew.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_netlist_dialog_spice.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_plot_dxf.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_plot_hpgl.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_plot_pdf.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_plot_postscript.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_plot_svg.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_popup_edit_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_popup_edit_label.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_popup_without_element.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_properties_for_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_uncheck_pin_name_inside.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_viewlib_choose.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_viewlib_select_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_viewlib_select_library.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/erc_pointers.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/erc_pointers_info.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/erc_pointers_message.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/file_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/filter_comp.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/filter_comp_and_pincount.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/filter_library.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/filter_none.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/filter_pincount.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/find_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/footprint_view.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_chooseflt.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_githubselection.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_locallibselection.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_locallibstartpage.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_startpage_github.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_validate.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_file_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_layer_manager.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_layer_select_1.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_layer_select_2.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_left_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_main_screen.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_misc_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_preferences_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_top_dcode.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_top_info.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_top_layer.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_top_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gsik_accelerator_keys.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gsik_hotkeys.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/hierarchy_navigator_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/hsheet_properties_1.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/idf_export.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/idf_select.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/insert_newline_code.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/insert_slashnewline_code.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/kicad_flowchart.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/kicad_main_window.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/lib_table.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/libedit_main_window.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/libsettings.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/main_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/main_window.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/main_window_popup.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/menu_bar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/menu_file.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/menu_path_hotkey_editor.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/module_params.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/multi_line.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/multi_line_2.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/multi_line_3.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/netlist_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/options-1.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/options-2.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/options.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/options_multi_line.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/pad_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/page_settings.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/pcbnew_select_track_width.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/pin_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/pl_status_bar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/place_a_via.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/preferences_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/print_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_bitmap.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_line.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_main.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_none.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_polyline.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_text.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/select_top_copper.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/set_base_corner.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/set_current_page.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/shortcuts_editor.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/status_bar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/template_field_names.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/template_selected.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/template_selector.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/template_tree.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/template_tree_meta.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/title_block.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/toolbar_libedit.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/toolbar_libedit_alias.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/toolbar_libedit_part.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/toolbar_viewlib.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/drag_element.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/edit_line.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/edit_line_end.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/edit_line_start.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_choice_free.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_choice_x100.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_choice_x1000.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_order_none.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_order_x.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_order_y.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_complex_hierarchy.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_erc_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_flat_hierarchy.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_flat_hierarchy_1.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_flat_hierarchy_2.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_flat_hierarchy_3.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_hierarchical_label.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_libedit_pins_per_part.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_libedit_unit1.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_libedit_unit2.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_libedit_unit3.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_netlist_schematic.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_plugin_add_plugin.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_plugin_padspcb.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_power_pins_and_flags.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_properties_for_symbol.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_pspice_netlist.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_symbol_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gerbview_mode_raw_stack.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gerbview_mode_transparency.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gerbview_x2_attribute.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gerbview_x2_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gerbview_x2_net.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_bus_connection.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_high_number_pins.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_myconn3_l.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_myconn3_quicklib.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_myconn3_s.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_010.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_020.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_030.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_040.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_050.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_060.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_070.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_080.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_090.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_100.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/hierarchical_label_root.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/hierarchical_label_sub.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/i18n-tree.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_arc.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_bus.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_bus2bus.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_circle.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_corner.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_dashed_line.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_dimension.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_glabel.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_hierar_pin.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_hierarchical_label.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_hierarchical_subsheet.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_junction.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_keepout_area.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_line.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_line2bus.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_line_label.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_pcb_target.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_polygon.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_power.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_rectangle.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_tracks.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_zone.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_zone_cutout.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/anchor.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/annotate.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/annotate_down_right.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/annotate_right_down.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/array.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/auto_associe.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/auto_delete_track.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/auto_track_width.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_back.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_bottom.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_front.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_left.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_right.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_top.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/bom.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/book.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/break_bus.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/break_line.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/browse_files.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/cancel.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/change_entry_orient.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/checked_ok.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/component_select_alternate_shape.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/component_select_unit.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/config.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/contrast_mode.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/copper_layers_setup.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/copy.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/copy_library.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/copy_symbol.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/copycomponent.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/create_cmp_file.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/cursor.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/cursor_shape.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/cvpcb.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/dashline.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/datasheet.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/delete.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/delete_association.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/delete_gerber.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/directory.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/display_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/down.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/drc.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/drc_off.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/duplicate.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edges_sketch.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_comp_footprint.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_comp_ref.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_comp_value.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_module.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_part.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_text.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/editor.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/eeschema.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/enter_sheet.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/erc.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/erc_green.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/ercerr.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/ercwarn.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/exit.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/export.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/export_dsn.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/export_footprint_names.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/export_idf.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/export_module.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/fabrication.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/file_footprint.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/fill_zone.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/find.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/find_replace.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/flag.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/fonts.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/footprint_text.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gbr_select_mode0.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gbr_select_mode1.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gbr_select_mode2.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/general_deletions.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/general_ratsnest.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gerber_file.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gerbview_clear_layers.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gerbview_drill_file.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gerbview_show_negative_objects.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gl_change.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/glabel2label.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/glabel2text.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/green.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/grid.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/grid_select.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/grid_select_axis.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/hammer.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/help.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/hidden_pin.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/hierarchy_nav.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/hotkeys.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/image.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import3d.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import_cmp_from_lib.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import_footprint_names.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import_hierarchical_label.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import_module.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/info.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/insert_module_board.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/invisible_text.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/kicad_icon_small.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/label.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/label2glabel.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/label2text.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_bg.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_catalan.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_chinese.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_cs.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_de.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_def.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_en.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_es.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_fi.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_fr.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_gr.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_hu.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_it.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_jp.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_ko.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_nl.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_pl.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_pt.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_ru.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_sl.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/language.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/layers_manager.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/leave_sheet.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/left.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lib_next.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lib_previous.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/libedit.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/library.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/library_browse.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lines90.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/load_gerber.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/load_module_board.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/load_module_lib.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/local_ratsnest.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/locked.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/measurement.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mode_module.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mode_track.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/modratsnest.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_check.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_editor.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_filtered_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_full_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_library_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_pin_filtered_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_ratsnest.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_wizard.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/modview_icon.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/morgan1.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/morgan2.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/move.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_add_gap.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_add_line.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_add_shape.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_add_stub.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_add_stub_arc.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/net_highlight.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/net_highlight_schematic.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/net_locked.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/net_unlocked.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/netlist.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_board.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_component.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_document.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_footprint.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_library.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_page_layout.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_project.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_project_with_template.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_symbol.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/noconn.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/normal.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/online_help.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/open_brd_file.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/open_document.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/open_library.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/open_page_layout.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/open_project.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/opt_show_polygon.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/options_pad.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/orient.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/ortho.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pad.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pad_dimensions.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pad_sketch.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pads_mask_layers.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pagelayout_normal_view_mode.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pagelayout_special_view_mode.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/palette.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/part_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/paste.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pcb_offset.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pcbnew.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin2pin.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin_name_to.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin_number_to.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin_size_to.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin_table.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin_to.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot_dxf.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot_hpg.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot_pdf.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot_ps.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot_svg.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/polar_coord.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/post_compo.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/post_drill.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/post_module.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/preference.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/print_button.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/ps_router.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/py_script.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/ratsnest.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/read_setup.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/red.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/redo.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/reload.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/reload2.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/reset_text.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/resize_sheet.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/right.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_neg_x.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_neg_y.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_neg_z.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_pos_x.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_pos_y.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_pos_z.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save_as.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save_library.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save_part_in_mem.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save_project.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save_setup.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/select_grid.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/select_layer_pair.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/select_w_layer.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/shape_3d.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/sheetset.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_dcodenumber.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_footprint.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_mod_edge.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_zone.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_zone_disable.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_zone_outline_only.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/showtrack.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/spreadsheet.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/svg_file.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/swap_layer.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/text.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/text_sketch.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/three_d.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/tool_ratsnest.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/tools.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/track_locked.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/track_sketch.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/track_unlocked.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/transistor.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/undelete.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/undo.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/unit_inch.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/unit_mm.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/unknown.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/unlocked.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/unzip.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/up.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/update_module_board.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/use_3D_copper_thickness.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/via.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/via_sketch.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/warning.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/web_support.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/width_net.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/width_segment.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/width_track.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/width_track_via.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/width_vias.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zip.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zip_tool.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zone_duplicate.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zone_unfill.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_area.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_center_on_screen.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_fit_in_page.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_in.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_out.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_redraw.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_selection.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/kicad-settings-language.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/launch_pane.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/logo.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/main_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/opamp_symbol.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/pcbnew_3d_viewer.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/poedit-settings-dict.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/poedit-settings-fr.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/poedit-settings-keywords.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/poedit-settings-paths.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/poedit-settings.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/project_tree.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/resistor_value.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/route_icon.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sch_with_buses.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/schematic-sample.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/select_edge_cuts.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_main_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_main_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_model_passive.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_model_source.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_model_subckt.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_settings.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/test_idf_blobs.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/toolbar_schedit.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/toolbar_schedit_rightside.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/toolbar_schedit_standalone.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/toolbar_viewlib_part.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/images/wires_labels.png +%%PORTDOCS%%%%DOCSDIR%%/help/de/kicad.epub +%%PORTDOCS%%%%DOCSDIR%%/help/de/kicad.html +%%PORTDOCS%%%%DOCSDIR%%/help/de/kicad.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/de/pcbnew.epub +%%PORTDOCS%%%%DOCSDIR%%/help/de/pcbnew.html +%%PORTDOCS%%%%DOCSDIR%%/help/de/pcbnew.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/de/pl_editor.epub +%%PORTDOCS%%%%DOCSDIR%%/help/de/pl_editor.html +%%PORTDOCS%%%%DOCSDIR%%/help/de/pl_editor.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/en/cvpcb.epub +%%PORTDOCS%%%%DOCSDIR%%/help/en/cvpcb.html +%%PORTDOCS%%%%DOCSDIR%%/help/en/cvpcb.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/en/eeschema.epub +%%PORTDOCS%%%%DOCSDIR%%/help/en/eeschema.html +%%PORTDOCS%%%%DOCSDIR%%/help/en/eeschema.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/en/gerbview.epub +%%PORTDOCS%%%%DOCSDIR%%/help/en/gerbview.html +%%PORTDOCS%%%%DOCSDIR%%/help/en/gerbview.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/en/getting_started_in_kicad.epub +%%PORTDOCS%%%%DOCSDIR%%/help/en/getting_started_in_kicad.html +%%PORTDOCS%%%%DOCSDIR%%/help/en/getting_started_in_kicad.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/en/gui_translation_howto.epub +%%PORTDOCS%%%%DOCSDIR%%/help/en/gui_translation_howto.html +%%PORTDOCS%%%%DOCSDIR%%/help/en/gui_translation_howto.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/en/idf_exporter.epub +%%PORTDOCS%%%%DOCSDIR%%/help/en/idf_exporter.html +%%PORTDOCS%%%%DOCSDIR%%/help/en/idf_exporter.pdf +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Calculation1.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Calculation2.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Footprint_library_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Footprint_tables_list.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Library_list_menu_item.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Library_tables_menu_item.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_3D_file_browser.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_alias_path_config.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_context_menu_graphics.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_context_menu_module_parameters.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_context_menu_pads.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_footprint_level_pad_settings.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_footprint_text_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_internal_path_config.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_main_window.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_3d_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_attributes.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_autoplace_settings.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_properties.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_properties_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_properties_documentation_fields.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_pad_delta_example.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_pad_level_pad_settings.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_pad_offset_example.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_pad_properties_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_top_toolbar.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_DRC_dialog.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_action_menu.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_add_cutout_menu_item.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_advanced_tracing_options.png +%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_archive_footprints_menu.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Fri Jun 21 14:06:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0A5A515AF092; Fri, 21 Jun 2019 14:06:45 +0000 (UTC) (envelope-from mfechner@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9032C6AA40; Fri, 21 Jun 2019 14:06:44 +0000 (UTC) (envelope-from mfechner@freebsd.org) Received: from [IPv6:2a01:5c0:e092:86b1:c5e8:8646:8fe4:e821] (unknown [IPv6:2a01:5c0:e092:86b1:c5e8:8646:8fe4:e821]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: mfechner) by smtp.freebsd.org (Postfix) with ESMTPSA id D706C6BF1; Fri, 21 Jun 2019 14:06:43 +0000 (UTC) (envelope-from mfechner@freebsd.org) Subject: Re: svn commit: r504575 - head/textproc/rubygem-asciidoctor-plantuml To: Po-Chuan Hsieh Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org References: <201906191654.x5JGsAMB035683@repo.freebsd.org> From: Matthias Fechner Openpgp: preference=signencrypt Autocrypt: addr=mfechner@freebsd.org; prefer-encrypt=mutual; keydata= mQINBFqca1YBEADM9mF2+ifk8HILTlf5wtAzV6SYVR4RvNOo/8Kucw4sCZT76zS1fjZe4Zy1 3C0IZ07Wi+3PnoGIgOCsXp3PrTc2nuHQWkwVBYXy8UaR9DHBWA/mIvRGG1ZscKQYA6oUdCvd K8Mu26zO60yTt+ONzFtK6G1myH4EHXZ8dpmdCFf+W3rzTU+aCQ5S3OfwCLGgYgOaVREGkdOc 5SVCpFb4n+2B8+CqeWsRHhnT+4h7/YhgDMGp4GiI3yrB2nBVSUUvcosD2nRtJQgGQHcAFtMq 3hJaKPOR/mHc6KVrp0xmGNmdtazvXloHmGIl9O1UpmMmrYu9Kugl0JkGi2fAcno02XgVlkyX 7xDLTteP5cNqRxor4yVDaRWUQnOfK9XgcrKGrAzb65BkCSkjT+Aw3S/A8Qd6NvjL9qy1d+Ct dzatOVF/Y7jaW28CMr3jvwPS13OxV7PnJzIZzdik20eVxfOXuYfxZD+PwBaGgFF0qj6zKACC aKLalE0ZpY0zNn/iPyQX/Cf9KoDyFpOHSsEswiJ5rCWwppVcsFyogHOemVmeaXlvyDPEipnV ZUkpGP/CCqPu3eD0uDzP7UJ0pt/l/JfW0Xw/4p9mjB024xiRlxLa6vSRfGl//EdtAIbKKa8x 5wsKTQEbYJDmXE3tH/A54DCqRXhcopTlu2iJlTdnIMltn9afVwARAQABtCdNYXR0aGlhcyBG ZWNobmVyIDxtZmVjaG5lckBmcmVlYnNkLm9yZz6JAlQEEwEKAD4WIQRpYHriYKnzThg62q62 i3Xcn9dH4QUCXDNH/AIbAwUJCWYBgAULCQgHAwUVCgkICwUWAwIBAAIeAQIXgAAKCRC2i3Xc n9dH4W2ED/9rovvF0wEHCSuxn8W5s5qhe9RbvCeBEDuyHsEDMDg6Rg+1T3l/I27AJYIrVGz2 cLvLOWuDZXqZ0Pl5YGK2rOoFx5PMVU4PqP+zmpy4OFjC8fgukYD4L4rsgzTlpC0Aw9kP5/zJ 3clVtr+NY3ETRSsx5NaOOs5WqAM9SvYLzlqnTMxag3N3RvKoGYBm8ykjYc0aJ2qDH4adzeRS ZuS2h5lHPw9sQ/PjZsfaVx2sM52oy6ZmymFqefACGvWmjGAppTSP5ZrKkwDOchpoLEiqk4EO IgR0Uj+e82722mNK33owZ2PFA7HXPa7/JxU+b4liIv/L/zkEKhg55HjeWU+ZysmFcO9Tbym8 qtxN1Iw1zov/nWDZZtwJ4ZlNK+pO1taY+cxpyrrZrlQimoZbkli7WoLyNt1f3bU6OikNyPn7 YNJL0NTRe80DeU+v+MDNJUjcWlq29mAgePN6bSS3IJMB60etWU7bsDt8864FGsabR/QxuX63 +IaPEKJV+DNIA1BV8BAKB48PI0iwS/exVKLL5yGFhZi0H3UPwHwYpH4vd6tUJo6HhbDlpZvX azsD4qF/DGlxbxHaEzdXT8Tmoc/TztEMbb0ypHdnNjuxl4N20YpCu/8YxIESYBL6jX8bo5rF PeHRLa3ryVXbaqebLuenhFS9OSLIke67qUK8iqrQkycrjrkCDQRanGtWARAA3e4IsdkX7VWB yvNiPAvXAAnCNhvtSccq81h1oEqBbSfQ1N9pMIsfEdg87w2VXX6U1y1J5ct6JamYTWUIMer/ 77ncQnfg6xF3+fbjo9218h+W0wvve2yarpL3NPJ7bO/suyYTuOBQFpqxu/SpItLJs5S+RHGP fEG4r1iaD9ldoQ06HHAhDqhCg0uDd6uz23leXg1UrqDPNnY51Mae5RWFCaLits/ThHQYkWEC 0YsBhQLGVdVmF08CziplqgAQ/mdb+7YzLNJoii7BwQh220CI9l2smv5rg4YrPzxKfrOopJq7 JQAOBf4by0pQ42Blt/PhJJG+WKc6DJTZHLJ81L3vuv9h9ocf6gDGDfXJRY+0P+vJ9XDr1sa8 rxFCtn35zW/JYEAGhA6Hn4kdb8AT1ePl1Bq0R9aYY7f78VGjZMiGplBdeXw9b6O0SOSGA4c5 RfkRHNKbqcJw8jD4tSQQg1wtz1vDh+/V45Yh0G4JyQYzitZeQthuqF1LN1Z4KwLS2JCTzHs7 XNdEk4oXishMl3+pffbYQfb0FH5P1XUfDssNJF77djG2heFE5lFeMXxCeIQd4pU1FQKiavqt Yaa4eOw1NDu3C3CcbzFI58KRgCn0atvMGQhhf5UW8VAupUz4i3dECWB79vClk++SvdsWwmTg lL4QC6AEis/TF30Ew6HoSPkAEQEAAYkCPAQYAQoAJhYhBGlgeuJgqfNOGDrarraLddyf10fh BQJanGtWAhsMBQkJZgGAAAoJELaLddyf10fhlmwQAKhAjXT2G2mFV7YBCEnvC4+jykitIUDQ xvSl+Jtf+xjDxlnP/Hdy1MjcCOrZtpJqh5si5TJ3qg8jtwDOAvizbMeJncKEfZ0PEmU49+Q5 qIrXbgMkw+paJa7F7f22Crbe2w+HBy8X4ML5KQmgtYoJg0LTp9LdsuS1nSziVUTm2p8vnDAy /GDEH7r6xYfBlZK/UjAH+B6i/rOQSFV2ReqsY8TnYvIt9TQAIyaKFyXT+emwIxlKWzS6uB4K w8y4c9CeZwzYRFt6t7yL050pAPMYGtNtaX0PE1F/ij5wBiKsQkzcpz5kPZITfhtNK+DeR1BB lBuP6j4FFyxHQtoZs5GQ1oxmWnk65e14vqcbuxsA+fRuNRSW6nwIkRcNcQ0boskbX+hVYWqb c60/KvlSgxAC6G4bHT86boBcqv+aT6966gpYxeSqWXTjn9tgTttfYDSCTIYTkN2NqIc+ZL02 xa4oN4TEuVdk4vUZf48qNYsAPCW/TtccHwd/pTT+Wl/f+aCBG2ofIpse3SJGphowL3mBV0yt u6DGHrVT/PEhrB5TtWiUPlxGuW3Go+nmzM7APPDjYljBulixcUlc2S4IYKYrUsdxKF8SCC19 XeD8krO81FCfqnV/R+ummX95nlS9ZUqs0REnNxmCQ55zHCIr8v8mgakZ9Y6pYaxPF78CdBxf GPwP Message-ID: <5f44d223-936b-d229-0f52-7402ac8db233@freebsd.org> Date: Fri, 21 Jun 2019 16:06:37 +0200 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.7.1 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="iD40zbEROUBD5ok5aiqPTk4gh0jZjIM18" X-Rspamd-Queue-Id: 9032C6AA40 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.95 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.96)[-0.956,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 14:06:45 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --iD40zbEROUBD5ok5aiqPTk4gh0jZjIM18 Content-Type: multipart/mixed; boundary="1N2y4SQRTliQiACo0SnYft6RLuRh4yA58"; protected-headers="v1" From: Matthias Fechner To: Po-Chuan Hsieh Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Message-ID: <5f44d223-936b-d229-0f52-7402ac8db233@freebsd.org> Subject: Re: svn commit: r504575 - head/textproc/rubygem-asciidoctor-plantuml References: <201906191654.x5JGsAMB035683@repo.freebsd.org> In-Reply-To: --1N2y4SQRTliQiACo0SnYft6RLuRh4yA58 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Content-Language: de-DE Am 20.06.2019 um 18:47 schrieb Po-Chuan Hsieh: > It should be fixed in r504646. Thanks! Thanks a lot Sunpoet! Gru=C3=9F Matthias --=20 "Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the universe trying to produce bigger and better idiots. So far, the universe is winning." -- Rich Cook --1N2y4SQRTliQiACo0SnYft6RLuRh4yA58-- --iD40zbEROUBD5ok5aiqPTk4gh0jZjIM18 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAEBCAAGBQJdDORwAAoJELaLddyf10fhB84P/RzRjH2Vl6ubAXljNjdb1+Oc JE3Tr9hAmCSH3geOgOuU9BbQ5acum4DRZs2FHB5ILg5FbV4kqlqGmsmD7nqv+GFH GYpAXW3yWWGhwalbnJra6NwCqyxdpaBzo74I+x7jnDR1VFYyVFb+at/erB91aHZ6 Lwg0T4LPk65WmghPJr9Hn0lqTmI7XZhyjUazNtnUYWgE2F1+XybbjS4cj2+fAU+p CsloMnPlGp8vLJyCSHFD5lYUQ35Q2YS6yxUpT8stA7QUIQldWWMaKOkbLNx6nNNe cNpvy25Wnz5EsO8/UMZOSrQ5ay5g6ZAYQa3p5DdLqgkZ1EcQLPCn44EOW8tja1V8 RYxIvXIbc+RLFc7ZGrKHa9TKrxsbblp9E1RXewccWEvbxGrsAoi6TSGuHNatTBhE EsHMTXwDZ6ZId9PqEz18J7iZftzcvPUN5dkUDgK0aOREmOiywB2L7I4FMkoFMlmP uJWxP3V+iczn5D8rc0YVMIHCIvlsMblW6wa1cRHitCWwmV/sqBw14ozor26TvCWW MED5XFKzvSBI997aSa/VzVrV1nGwr++8Se2zhLX8t5TTV8/SUwHn/PCxPgc2XBHa BDSZmHN0KLi2ruw36U1QbKWpussyPgNvM/M71OBBD8ZZiNXQg01gd8ZcuNJpWVa0 HWIAcBM/QN60cn4pV854 =ChzW -----END PGP SIGNATURE----- --iD40zbEROUBD5ok5aiqPTk4gh0jZjIM18-- From owner-svn-ports-all@freebsd.org Fri Jun 21 14:49:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9458415B332F; Fri, 21 Jun 2019 14:49:31 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3529A6C1D6; Fri, 21 Jun 2019 14:49:31 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0D0E024A12; Fri, 21 Jun 2019 14:49:31 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LEnUaF098675; Fri, 21 Jun 2019 14:49:30 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LEnU3u098674; Fri, 21 Jun 2019 14:49:30 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906211449.x5LEnU3u098674@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 21 Jun 2019 14:49:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504801 - head/audio/guitarix-lv2 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/audio/guitarix-lv2 X-SVN-Commit-Revision: 504801 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3529A6C1D6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.948,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 14:49:31 -0000 Author: jbeich Date: Fri Jun 21 14:49:30 2019 New Revision: 504801 URL: https://svnweb.freebsd.org/changeset/ports/504801 Log: audio/guitarix-lv2: builds fine on arm* SSE-related error was probably a drive-by from powerpc64 but confirming is hard as I can't find package cluster logs from just a year ago. Even 0.37.1 builds fine on armv6 using current dependencies. Looking at pkg-fallout@ archive only BROKEN_aarch64 made sense: /usr/bin/ld: error: ../src/gx_head/guitarix.lds:2: ; expected, but got +SIZEOF /usr/bin/ld: error: ../src/gx_head/guitarix.lds:2: __rt_text__end = ADDR(.rt.text)+SIZEOF(.rt.text); /usr/bin/ld: error: ../src/gx_head/guitarix.lds:2: ^ c++: error: linker command failed with exit code 1 (use -v to see invocation) Modified: head/audio/guitarix-lv2/Makefile (contents, props changed) Modified: head/audio/guitarix-lv2/Makefile ============================================================================== --- head/audio/guitarix-lv2/Makefile Fri Jun 21 13:52:01 2019 (r504800) +++ head/audio/guitarix-lv2/Makefile Fri Jun 21 14:49:30 2019 (r504801) @@ -14,9 +14,6 @@ COMMENT= Virtual versatile amplification for Jack and LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_armv6= fails to compile: unknown FP unit 'sse' -BROKEN_armv7= fails to compile: unknown FP unit 'sse' - BUILD_DEPENDS= lv2>0:audio/lv2 \ ${LOCALBASE}/include/fftw3.h:math/fftw3 \ roboto-fonts-ttf>0:x11-fonts/roboto-fonts-ttf \ From owner-svn-ports-all@freebsd.org Fri Jun 21 14:54:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF17215B357B; Fri, 21 Jun 2019 14:54:05 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 810216C59A; Fri, 21 Jun 2019 14:54:05 +0000 (UTC) (envelope-from danfe@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1033) id 5653516FC1; Fri, 21 Jun 2019 14:54:05 +0000 (UTC) Date: Fri, 21 Jun 2019 14:54:05 +0000 From: Alexey Dokuchaev To: Christoph Moench-Tegeder Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504800 - in head/cad: . kicad-doc Message-ID: <20190621145405.GA390@FreeBSD.org> References: <201906211352.x5LDq1E6071357@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201906211352.x5LDq1E6071357@repo.freebsd.org> User-Agent: Mutt/1.11.4 (2019-03-13) X-Rspamd-Queue-Id: 810216C59A X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.94 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.94)[-0.942,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 14:54:06 -0000 On Fri, Jun 21, 2019 at 01:52:01PM +0000, Christoph Moench-Tegeder wrote: > New Revision: 504800 > URL: https://svnweb.freebsd.org/changeset/ports/504800 > > Log: > cad/kicad-doc: online help files and documentation for cad/kicad Sorry, but I'm afraid it was badly reviewed. > +MAINTAINER= cmt@FreeBSD.org > +COMMENT= KiCad Online Documentation/Help Files Comment is confusing ("online" typically means one does not have to install anything locally, that makes it "offline")... > +++ head/cad/kicad-doc/pkg-descr Fri Jun 21 13:52:01 2019 > @@ -0,0 +1,3 @@ > +This port installs the official KiCad schematic symbol libraries. ... and does not align well with the port description. The latter is also expected to be more elaborate. Your current pkg-descr is what the COMMENT line should be. > +PLIST_SUB= PORTDOCS="" Why not simply remove %%PORTDOCS%% from the pkg-plist if you're setting it to an empty value unconditionally? > +NO_ARCH= yes This knob should appear earlier. ./danfe From owner-svn-ports-all@freebsd.org Fri Jun 21 15:07:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BCB0515B3862; Fri, 21 Jun 2019 15:07:18 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6115B6CAD6; Fri, 21 Jun 2019 15:07:18 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 4FCAF1722D; Fri, 21 Jun 2019 15:07:18 +0000 (UTC) From: Jan Beich To: ports-committers@freebsd.org Cc: svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504801 - head/audio/guitarix-lv2 References: <201906211449.x5LEnU3u098674@repo.freebsd.org> Date: Fri, 21 Jun 2019 17:07:15 +0200 In-Reply-To: <201906211449.x5LEnU3u098674@repo.freebsd.org> (Jan Beich's message of "Fri, 21 Jun 2019 14:49:30 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 6115B6CAD6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 15:07:18 -0000 Jan Beich writes: > Author: jbeich > Date: Fri Jun 21 14:49:30 2019 > New Revision: 504801 > URL: https://svnweb.freebsd.org/changeset/ports/504801 > > Log: > audio/guitarix-lv2: builds fine on arm* > > SSE-related error was probably a drive-by from powerpc64 but > confirming is hard as I can't find package cluster logs from just a > year ago. Even 0.37.1 builds fine on armv6 using current dependencies. armv6 was blocked by a dependency but armv7 built fine. Enough to get a pointy hat for misplaced BROKEN_armv7. http://beefy8.nyi.freebsd.org/data/head-armv6-default/p473110_s335573/logs/errors/sratom-0.6.0.log http://beefy16.nyi.freebsd.org/data/head-armv7-default/p472108_s334906/logs/guitarix-lv2-0.37.1_1.log From owner-svn-ports-all@freebsd.org Fri Jun 21 15:34:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3F33415B402D; Fri, 21 Jun 2019 15:34:51 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D3B376D8A4; Fri, 21 Jun 2019 15:34:50 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id ACA9317705; Fri, 21 Jun 2019 15:34:50 +0000 (UTC) From: Jan Beich To: Sunpoet Po-Chuan Hsieh Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r501392 - head/sysutils/freeipmi References: <201905121634.x4CGYPdA009374@repo.freebsd.org> Date: Fri, 21 Jun 2019 17:34:44 +0200 In-Reply-To: <201905121634.x4CGYPdA009374@repo.freebsd.org> (Sunpoet Po-Chuan Hsieh's message of "Sun, 12 May 2019 16:34:25 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: D3B376D8A4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.92 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.92)[-0.921,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 15:34:51 -0000 Sunpoet Po-Chuan Hsieh writes: > Author: sunpoet > Date: Sun May 12 16:34:25 2019 > New Revision: 501392 > URL: https://svnweb.freebsd.org/changeset/ports/501392 > > Log: > Use ONLY_FOR_ARCHS [...] > -BROKEN_armv6= invokes x86 assembler > -BROKEN_armv7= invokes x86 assembler > -BROKEN_mips= invokes x86 assembler > -BROKEN_mips64= invokes x86 assembler > -BROKEN_sparc64= invokes x86 assembler > +ONLY_FOR_ARCHS= amd64 i386 > +ONLY_FOR_ARCHS_REASON= invokes x86 assembler Please, back out. 11.2 aarch64 - https://reviews.freebsd.org/P272 (built fine) 11.2 armv6 - https://reviews.freebsd.org/P274 (failed) 12.0 armv7 - https://reviews.freebsd.org/P273 (built fine) 13.0 powerpc64 - http://pylon.nyi.freebsd.org/data/head-powerpc64-default/p500946_s347214/logs/freeipmi-1.6.3.log (built fine) From owner-svn-ports-all@freebsd.org Fri Jun 21 15:57:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A7FE115B4BBF; Fri, 21 Jun 2019 15:57:30 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 535546E681; Fri, 21 Jun 2019 15:57:30 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1A7F7255AD; Fri, 21 Jun 2019 15:57:30 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LFvTLP035346; Fri, 21 Jun 2019 15:57:29 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LFvSSQ035342; Fri, 21 Jun 2019 15:57:28 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906211557.x5LFvSSQ035342@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Fri, 21 Jun 2019 15:57:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504802 - in head/games/netradiant: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/games/netradiant: . files X-SVN-Commit-Revision: 504802 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 535546E681 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.969,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 15:57:31 -0000 Author: danfe Date: Fri Jun 21 15:57:28 2019 New Revision: 504802 URL: https://svnweb.freebsd.org/changeset/ports/504802 Log: - Update to version 20150621 and unbreak - Remove judgemental wording from COMMENT - Fix the code to avoid using `sys/dir.h' - Install more popular games' gamepacks - Fix some Makefile QA warnings while here Modified: head/games/netradiant/Makefile head/games/netradiant/distinfo head/games/netradiant/files/patch-more-clang-fixes head/games/netradiant/pkg-plist Modified: head/games/netradiant/Makefile ============================================================================== --- head/games/netradiant/Makefile Fri Jun 21 14:49:30 2019 (r504801) +++ head/games/netradiant/Makefile Fri Jun 21 15:57:28 2019 (r504802) @@ -2,55 +2,75 @@ # $FreeBSD$ PORTNAME= netradiant -PORTVERSION= 20130630 -PORTREVISION= 8 +PORTVERSION= 20150621 CATEGORIES= games cad -MASTER_SITES= http://ingar.satgnu.net/gtkradiant/files/ \ - http://freebsd.nsu.ru/distfiles/ +MASTER_SITES= http://ingar.intranifty.net/gtkradiant/files/ LOCAL/danfe \ + http://ingar.intranifty.net/gtkradiant/files/gamepacks/:gp DISTNAME= ${PORTNAME}-${PORTVERSION}-src DISTFILES= ${DISTNAME}${EXTRACT_SUFX} q3map2.6 -EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} +EXTRACT_ONLY= ${_DISTFILES:Nq3map2.6} MAINTAINER= danfe@FreeBSD.org -COMMENT= Fork of the well-known GtkRadiant 1.5 FPS games map editor +COMMENT= Fork of GtkRadiant v1.5 FPS games map editor LICENSE= GPLv2 -LIB_DEPENDS= libgtkglext-x11-1.0.so:x11-toolkits/gtkglext \ - libwebp.so:graphics/webp +LIB_DEPENDS= libpng.so:graphics/png \ + libwebp.so:graphics/webp \ + libfreetype.so:print/freetype2 \ + libfontconfig.so:x11-fonts/fontconfig \ + libgtkglext-x11-1.0.so:x11-toolkits/gtkglext -BROKEN= No more public distfiles and uses sys/dir.h - BROKEN_aarch64= fails to link: ldd: install/modules/archivepak.so: not a FreeBSD ELF shared object BROKEN_armv6= fails to build: h2data.armv6: No such file or directory BROKEN_armv7= fails to build: h2data.armv7: No such file or directory USES= compiler:c++11-lang gl gmake gnome jpeg localbase:ldflags \ - pkgconfig tar:bzip2 -USE_GL= glu -MAKE_ENV= BUILD=release DOWNLOAD_GAMEPACKS=no LIBS_DL="" \ + pkgconfig tar:xz +USE_GL= gl glu +USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 libxml2 pango pangox-compat +USE_XORG= x11 +MAKE_ENV= BUILD=release DOWNLOAD_GAMEPACKS=no EXE=${ARCH} \ RADIANT_ABOUTMSG="For ${OPSYS} ${OSREL} (${ARCH})" SUB_FILES= ${PORTNAME} SUB_LIST= ARCH=${ARCH:S/powerpc64/powerpc/} PLIST_SUB:= ${SUB_LIST} +OPTIONS_DEFINE= GAMEPACK +OPTIONS_DEFAULT= GAMEPACK +GAMEPACK_DESC= Install gamepacks for some popular games +OPTIONS_SUB= yes + +GAMES= DarkPlaces Doom3 ET Neverball Nexuiz OpenArena Osirion Quake1 \ + Quake2 Quake2World Quake3 Quake4 Quake Quetoo Tremulous UFOAI \ + Unvanquished Warsow Xonotic +GAMEPACK_DISTFILES= ${GAMES:S/$/Pack.zip:gp/} + post-patch: + @${REINPLACE_CMD} -e '/#include/s, Modified: head/games/netradiant/distinfo ============================================================================== --- head/games/netradiant/distinfo Fri Jun 21 14:49:30 2019 (r504801) +++ head/games/netradiant/distinfo Fri Jun 21 15:57:28 2019 (r504802) @@ -1,4 +1,43 @@ -SHA256 (netradiant-20130630-src.tar.bz2) = 798877df6d5aeb9c9f18dc15d91d31d0c08f18bc1baf1aa2b4d959afd89ef2be -SIZE (netradiant-20130630-src.tar.bz2) = 2639725 +TIMESTAMP = 1434888414 +SHA256 (netradiant-20150621-src.tar.xz) = 4bfe3188f65f9283d0f394949868abf142b5e0966a06ac81dd6f2b815d7fce95 +SIZE (netradiant-20150621-src.tar.xz) = 2025200 SHA256 (q3map2.6) = 104e5180547f1c55997b744559f66d860d4693a79e1ad0ab70c17346636b5a99 SIZE (q3map2.6) = 17143 +SHA256 (DarkPlacesPack.zip) = c72c01af13474cfce9c3c09910ae84ea8aba927d77081401fd84158d2221fa85 +SIZE (DarkPlacesPack.zip) = 17386 +SHA256 (Doom3Pack.zip) = 3744f53bddf4fa7fabf1a00543d664dc7d2b090222ead4ec123053f51eec4c2b +SIZE (Doom3Pack.zip) = 1938 +SHA256 (ETPack.zip) = 5f63cd4fc6c95ed10bf3f94eb62ce9a535c4c73971bd38b8390f16751ebc8e79 +SIZE (ETPack.zip) = 192922 +SHA256 (NeverballPack.zip) = 712e991b2937f6e612e73789eaeb839023d7af9a268b2a2ca81a8216c9ddcfd9 +SIZE (NeverballPack.zip) = 5458 +SHA256 (NexuizPack.zip) = 38ff583b46bd2bf7de6e8724f20869ec43cd839c930c0dd6dfae08893f8168a7 +SIZE (NexuizPack.zip) = 36874 +SHA256 (OpenArenaPack.zip) = 2a4e87743e268e8ba7dc66e4e9304f743b2242f7ad04ef01fddfd2f1261cf3ce +SIZE (OpenArenaPack.zip) = 46745 +SHA256 (OsirionPack.zip) = b8abe7b7a17616b0102adac3d87e71b57f6893d5a1ecf7133982a8ed610655e9 +SIZE (OsirionPack.zip) = 3780 +SHA256 (Quake1Pack.zip) = 10865d21acb8d1e3b7c1f389254d2e2bc0a46a732e0523ce0531f2addf6c7473 +SIZE (Quake1Pack.zip) = 16463 +SHA256 (Quake2Pack.zip) = 4361d6fa1bc6024486ad9d89fa19cf22b68993327108b75525932cba48eacc08 +SIZE (Quake2Pack.zip) = 10878 +SHA256 (Quake2WorldPack.zip) = d2b3c924bcb42aed47694e0b7031b7b6e5a78d3e8bca4cead2efa0fb86a797e1 +SIZE (Quake2WorldPack.zip) = 7404 +SHA256 (Quake3Pack.zip) = 6c1bd7ced5d6b39e33479fd5fd507afd21b6dce375c071cc424bd471168b76b6 +SIZE (Quake3Pack.zip) = 26081 +SHA256 (Quake4Pack.zip) = 40f3ac4d76d9fda432fa127d85c94afa358e5e0aade78836ce315511ad03b1c0 +SIZE (Quake4Pack.zip) = 1649 +SHA256 (QuakePack.zip) = f45d7b6a1094c44f4fe6cb1bb9586599096f5401047fa8aae14c10d452d9ecb2 +SIZE (QuakePack.zip) = 16447 +SHA256 (QuetooPack.zip) = 6a68ff3c3d84c0d082597185dd479d186fad4bfcfeee7193d7e6658581fd65ac +SIZE (QuetooPack.zip) = 9912 +SHA256 (TremulousPack.zip) = 099a50ba2b30fb61289e64ef435f581cdb4bd28a7f0e1f80388b33254d36e375 +SIZE (TremulousPack.zip) = 17153 +SHA256 (UFOAIPack.zip) = abce5185d995a68419b80df64d928c40a52acabd2a6e4b0d85852a26e914a373 +SIZE (UFOAIPack.zip) = 4291 +SHA256 (UnvanquishedPack.zip) = 91bfcc4f2f1ccbcc2877988f69c5a178b5f8339498dfa50e4e7794996fd24aae +SIZE (UnvanquishedPack.zip) = 32989 +SHA256 (WarsowPack.zip) = 3ffa5c482f0c49ab7d8b9c1844d51cfcfc87e0180f8551a920bdc0dd91730c51 +SIZE (WarsowPack.zip) = 17855 +SHA256 (XonoticPack.zip) = 03429db4590b709aee909306586ddf36542166e33b1a67539dbf2aa53c8fdec8 +SIZE (XonoticPack.zip) = 45309 Modified: head/games/netradiant/files/patch-more-clang-fixes ============================================================================== --- head/games/netradiant/files/patch-more-clang-fixes Fri Jun 21 14:49:30 2019 (r504801) +++ head/games/netradiant/files/patch-more-clang-fixes Fri Jun 21 15:57:28 2019 (r504802) @@ -30,17 +30,6 @@ #include #include "gtkutil/pointer.h" ---- contrib/bobtoolz/misc.cpp.orig 2013-06-30 14:04:35 UTC -+++ contrib/bobtoolz/misc.cpp -@@ -31,7 +31,7 @@ - - #include "funchandlers.h" - --#ifdef __linux__ -+#if defined (__linux__) || defined(__FreeBSD__) - #include - #include - #endif --- contrib/bobtoolz/shapes.cpp.orig 2013-06-30 14:04:35 UTC +++ contrib/bobtoolz/shapes.cpp @@ -40,6 +40,7 @@ Modified: head/games/netradiant/pkg-plist ============================================================================== --- head/games/netradiant/pkg-plist Fri Jun 21 14:49:30 2019 (r504801) +++ head/games/netradiant/pkg-plist Fri Jun 21 15:57:28 2019 (r504802) @@ -72,17 +72,38 @@ man/man6/q3map2.6.gz %%DATADIR%%/bitmaps/window2.png %%DATADIR%%/bitmaps/window3.png %%DATADIR%%/bitmaps/window4.png -%%DATADIR%%/darkplaces.game/default_build_menu.xml -%%DATADIR%%/darkplaces.game/game.xlink -%%DATADIR%%/darkplaces.game/id1/default_shaderlist.txt -%%DATADIR%%/darkplaces.game/id1/entities.ent +%%GAMEPACK%%%%DATADIR%%/darkplaces.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/darkplaces.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/darkplaces.game/id1/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/darkplaces.game/id1/entities.ent %%DATADIR%%/docs/index.html -%%DATADIR%%/games/darkplaces.game -%%DATADIR%%/games/nexuiz.game -%%DATADIR%%/games/osirion.game -%%DATADIR%%/games/q1.game -%%DATADIR%%/games/warsow.game -%%DATADIR%%/games/xonotic.game +%%GAMEPACK%%%%DATADIR%%/doom3.game/base/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/doom3.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/et.game/bitmaps/splash.bmp +%%GAMEPACK%%%%DATADIR%%/et.game/default_build_menu.txt +%%GAMEPACK%%%%DATADIR%%/et.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/et.game/etmain/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/et.game/etmain/et_entities.ent +%%GAMEPACK%%%%DATADIR%%/et.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/et.game/shadertags.xml +%%GAMEPACK%%%%DATADIR%%/games/darkplaces.game +%%GAMEPACK%%%%DATADIR%%/games/doom3.game +%%GAMEPACK%%%%DATADIR%%/games/et.game +%%GAMEPACK%%%%DATADIR%%/games/neverball.game +%%GAMEPACK%%%%DATADIR%%/games/nexuiz.game +%%GAMEPACK%%%%DATADIR%%/games/oa.game +%%GAMEPACK%%%%DATADIR%%/games/osirion.game +%%GAMEPACK%%%%DATADIR%%/games/q1.game +%%GAMEPACK%%%%DATADIR%%/games/q2.game +%%GAMEPACK%%%%DATADIR%%/games/q2w.game +%%GAMEPACK%%%%DATADIR%%/games/q3.game +%%GAMEPACK%%%%DATADIR%%/games/q4.game +%%GAMEPACK%%%%DATADIR%%/games/quetoo.game +%%GAMEPACK%%%%DATADIR%%/games/trem.game +%%GAMEPACK%%%%DATADIR%%/games/ufoai.game +%%GAMEPACK%%%%DATADIR%%/games/unvanquished.game +%%GAMEPACK%%%%DATADIR%%/games/warsow.game +%%GAMEPACK%%%%DATADIR%%/games/xonotic.game %%DATADIR%%/gl/lighting_DBS_XY_Z_arbfp1.cg %%DATADIR%%/gl/lighting_DBS_XY_Z_arbvp1.cg %%DATADIR%%/gl/lighting_DBS_omni_fp.glp @@ -113,14 +134,25 @@ man/man6/q3map2.6.gz %%DATADIR%%/modules/model.so %%DATADIR%%/modules/shaders.so %%DATADIR%%/modules/vfspk3.so -%%DATADIR%%/nexuiz.game/data/default_shaderlist.txt -%%DATADIR%%/nexuiz.game/data/entities.def -%%DATADIR%%/nexuiz.game/data/turrets.def -%%DATADIR%%/nexuiz.game/default_build_menu.xml -%%DATADIR%%/nexuiz.game/game.xlink -%%DATADIR%%/osirion.game/base/entities.def -%%DATADIR%%/osirion.game/default_build_menu.xml -%%DATADIR%%/osirion.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/neverball.game/data/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/neverball.game/data/entities.ent +%%GAMEPACK%%%%DATADIR%%/neverball.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/neverball.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/nexuiz.game/data/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/nexuiz.game/data/entities.def +%%GAMEPACK%%%%DATADIR%%/nexuiz.game/data/turrets.def +%%GAMEPACK%%%%DATADIR%%/nexuiz.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/nexuiz.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/oa.game/baseoa/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/oa.game/baseoa/entities-ta.def +%%GAMEPACK%%%%DATADIR%%/oa.game/baseoa/entities-ta.ent +%%GAMEPACK%%%%DATADIR%%/oa.game/baseoa/entities.def +%%GAMEPACK%%%%DATADIR%%/oa.game/baseoa/entities.ent +%%GAMEPACK%%%%DATADIR%%/oa.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/oa.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/osirion.game/base/entities.def +%%GAMEPACK%%%%DATADIR%%/osirion.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/osirion.game/game.xlink %%DATADIR%%/plugins/bitmaps/bobtoolz_caulk.png %%DATADIR%%/plugins/bitmaps/bobtoolz_cleanup.png %%DATADIR%%/plugins/bitmaps/bobtoolz_dropent.png @@ -155,19 +187,50 @@ man/man6/q3map2.6.gz %%DATADIR%%/plugins/shaderplug.so %%DATADIR%%/plugins/sunplug.so %%DATADIR%%/plugins/ufoaiplug.so -%%DATADIR%%/q1.game/default_build_menu.xml -%%DATADIR%%/q1.game/id1/entities.ent +%%GAMEPACK%%%%DATADIR%%/q1.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/q1.game/id1/entities.ent +%%GAMEPACK%%%%DATADIR%%/q2.game/baseq2/entities.def +%%GAMEPACK%%%%DATADIR%%/q2.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/q2.game/game.xlink %%DATADIR%%/q2map.%%ARCH%% +%%GAMEPACK%%%%DATADIR%%/q2w.game/default/entities.def +%%GAMEPACK%%%%DATADIR%%/q2w.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/q2w.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/q3.game/baseq3/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/q3.game/baseq3/entities.ent +%%GAMEPACK%%%%DATADIR%%/q3.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/q3.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/q3.game/missionpack/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/q3.game/missionpack/entities-ta.ent %%DATADIR%%/q3data.%%ARCH%% %%DATADIR%%/q3data.qdt %%DATADIR%%/q3map2.%%ARCH%% +%%GAMEPACK%%%%DATADIR%%/q4.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/q4.game/q4base/default_shaderlist.txt %%DATADIR%%/qdata3.%%ARCH%% +%%GAMEPACK%%%%DATADIR%%/quetoo.game/default/common.shader +%%GAMEPACK%%%%DATADIR%%/quetoo.game/default/entities.def +%%GAMEPACK%%%%DATADIR%%/quetoo.game/default/shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/quetoo.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/quetoo.game/game.xlink %%DATADIR%%/radiant.%%ARCH%% -%%DATADIR%%/warsow.game/basewsw/default_shaderlist.txt -%%DATADIR%%/warsow.game/basewsw/entities.def -%%DATADIR%%/warsow.game/default_build_menu.xml -%%DATADIR%%/warsow.game/game.xlink -%%DATADIR%%/xonotic.game/data/default_shaderlist.txt -%%DATADIR%%/xonotic.game/data/entities.ent -%%DATADIR%%/xonotic.game/default_build_menu.xml -%%DATADIR%%/xonotic.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/trem.game/base/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/trem.game/base/entities.def +%%GAMEPACK%%%%DATADIR%%/trem.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/trem.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/ufoai.game/base/entities.def +%%GAMEPACK%%%%DATADIR%%/ufoai.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/ufoai.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/unvanquished.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/unvanquished.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/unvanquished.game/main/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/unvanquished.game/main/entities.def +%%GAMEPACK%%%%DATADIR%%/unvanquished.game/pkg/entities.def +%%GAMEPACK%%%%DATADIR%%/warsow.game/basewsw/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/warsow.game/basewsw/entities.def +%%GAMEPACK%%%%DATADIR%%/warsow.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/warsow.game/game.xlink +%%GAMEPACK%%%%DATADIR%%/xonotic.game/data/default_shaderlist.txt +%%GAMEPACK%%%%DATADIR%%/xonotic.game/data/entities.ent +%%GAMEPACK%%%%DATADIR%%/xonotic.game/default_build_menu.xml +%%GAMEPACK%%%%DATADIR%%/xonotic.game/game.xlink From owner-svn-ports-all@freebsd.org Fri Jun 21 16:13:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45A1815B523A; Fri, 21 Jun 2019 16:13:27 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D7EEB6F04F; Fri, 21 Jun 2019 16:13:26 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A5B23258F4; Fri, 21 Jun 2019 16:13:26 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LGDQnq045803; Fri, 21 Jun 2019 16:13:26 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LGDQ2V045802; Fri, 21 Jun 2019 16:13:26 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906211613.x5LGDQ2V045802@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 21 Jun 2019 16:13:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504803 - head/games/brikx X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/brikx X-SVN-Commit-Revision: 504803 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D7EEB6F04F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.968,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 16:13:27 -0000 Author: amdmi3 Date: Fri Jun 21 16:13:26 2019 New Revision: 504803 URL: https://svnweb.freebsd.org/changeset/ports/504803 Log: - Switch to more correct way of avoiding C++11 related build errors, by specifying older c++ standard Modified: head/games/brikx/Makefile Modified: head/games/brikx/Makefile ============================================================================== --- head/games/brikx/Makefile Fri Jun 21 15:57:28 2019 (r504802) +++ head/games/brikx/Makefile Fri Jun 21 16:13:26 2019 (r504803) @@ -12,13 +12,12 @@ DISTNAME= ${PORTNAME}-${PORTVERSION}-src MAINTAINER= amdmi3@FreeBSD.org COMMENT= Puzzle game - remove all tiles from the table -USES= compiler:c++11-lang tar:bzip2 +USES= tar:bzip2 GNU_CONFIGURE= yes USE_SDL= sdl mixer image ttf +USE_CXXSTD= c++98 WRKSRC= ${WRKDIR}/${PORTNAME} - -CXXFLAGS+= -Wno-reserved-user-defined-literal PLIST_FILES= bin/${PORTNAME} PORTDATA= * From owner-svn-ports-all@freebsd.org Fri Jun 21 16:56:40 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA06215B5F39; Fri, 21 Jun 2019 16:56:39 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 750E870468; Fri, 21 Jun 2019 16:56:39 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4830A25FF7; Fri, 21 Jun 2019 16:56:39 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LGudAj066753; Fri, 21 Jun 2019 16:56:39 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LGudvX066752; Fri, 21 Jun 2019 16:56:39 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906211656.x5LGudvX066752@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Fri, 21 Jun 2019 16:56:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504804 - head/math/scilab/files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/math/scilab/files X-SVN-Commit-Revision: 504804 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 750E870468 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 16:56:40 -0000 Author: danfe Date: Fri Jun 21 16:56:38 2019 New Revision: 504804 URL: https://svnweb.freebsd.org/changeset/ports/504804 Log: Unbreak the build against both current and future versions of OCaml. Obtained from: http://gitweb.scilab.org/?p=scilab.git;a=commit;h=25f52e9 Added: head/math/scilab/files/patch-modules_scicos_Makefile.in (contents, props changed) Added: head/math/scilab/files/patch-modules_scicos_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/scilab/files/patch-modules_scicos_Makefile.in Fri Jun 21 16:56:38 2019 (r504804) @@ -0,0 +1,478 @@ +--- modules/scicos/Makefile.in.orig 2015-03-31 09:31:38 UTC ++++ modules/scicos/Makefile.in +@@ -438,7 +438,7 @@ libscisundials_la_OBJECTS = $(am_libscisundials_la_OBJ + @OCAML_TRUE@@XCOS_TRUE@ modelicat$(EXEEXT) + PROGRAMS = $(bin_PROGRAMS) + am__XML2Modelica_SOURCES_DIST = $(srcdir)/src/xml2modelica/xMLTree.ml \ +- $(srcdir)/src/xml2modelica/linenum.mll \ ++ $(srcdir)/src/modelica_compiler/linenum.mll \ + $(srcdir)/src/xml2modelica/stringParser.ml \ + $(srcdir)/src/xml2modelica/stringLexer.ml \ + $(srcdir)/src/xml2modelica/xMLParser.ml \ +@@ -1146,7 +1146,7 @@ HELP_CHAPTERLANG = en_US fr_FR pt_BR + ### XML2Modelica + @OCAML_TRUE@@XCOS_TRUE@XML2Modelica_SOURCES = \ + @OCAML_TRUE@@XCOS_TRUE@ $(srcdir)/src/xml2modelica/xMLTree.ml \ +-@OCAML_TRUE@@XCOS_TRUE@ $(srcdir)/src/xml2modelica/linenum.mll \ ++@OCAML_TRUE@@XCOS_TRUE@ $(srcdir)/src/modelica_compiler/linenum.mll \ + @OCAML_TRUE@@XCOS_TRUE@ $(srcdir)/src/xml2modelica/stringParser.ml \ + @OCAML_TRUE@@XCOS_TRUE@ $(srcdir)/src/xml2modelica/stringLexer.ml \ + @OCAML_TRUE@@XCOS_TRUE@ $(srcdir)/src/xml2modelica/xMLParser.ml \ +@@ -3392,35 +3392,10 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ $(OCAMLDEP) -all $(INCLUDE) $(MLS_XML2Modelica) $(MLIS_XML2Modelica) > .depend + @OCAML_TRUE@@XCOS_TRUE@ $(OCAMLDEP) -all $(INCLUDE_modelicat) $(MLS_modelicat) $(MLIS_modelicat) >> .depend + @OCAML_TRUE@@XCOS_TRUE@ $(OCAMLDEP) -all $(INCLUDE) $(MLS_modelicac) $(MLIS_modelicac) >> .depend +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLTree.cmo ./src/xml2modelica/xMLTree.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLTree.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLTree.cmx ./src/xml2modelica/xMLTree.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLTree.cmi : ./src/xml2modelica/xMLTree.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/linenum.cmo ./src/xml2modelica/linenum.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/linenum.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/linenum.cmx ./src/xml2modelica/linenum.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/linenum.cmi : ./src/xml2modelica/linenum.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/stringParser.cmo ./src/xml2modelica/stringParser.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringParser.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/stringParser.cmx ./src/xml2modelica/stringParser.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringParser.cmi : ./src/xml2modelica/stringParser.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/stringLexer.cmo ./src/xml2modelica/stringLexer.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringParser.cmi ./src/xml2modelica/stringLexer.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/stringLexer.cmx ./src/xml2modelica/stringLexer.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringLexer.cmi : ./src/xml2modelica/stringParser.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringParser.cmx ./src/xml2modelica/stringLexer.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLParser.cmo ./src/xml2modelica/xMLParser.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLTree.cmi ./src/modelica_compiler/linenum.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLParser.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLParser.cmx ./src/xml2modelica/xMLParser.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLParser.cmi : ./src/xml2modelica/xMLTree.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLTree.cmx ./src/modelica_compiler/linenum.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/linenum.cmx ./src/xml2modelica/xMLParser.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLLexer.cmo ./src/xml2modelica/xMLLexer.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLParser.cmi ./src/xml2modelica/xMLLexer.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLLexer.cmx ./src/xml2modelica/xMLLexer.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLLexer.cmi : ./src/xml2modelica/xMLParser.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLParser.cmx ./src/xml2modelica/xMLLexer.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/linenum.cmo ./src/modelica_compiler/linenum.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/linenum.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/linenum.cmx ./src/modelica_compiler/linenum.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/linenum.cmi : ./src/modelica_compiler/linenum.ml + @OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/modelicaCodeGenerator.cmo \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/modelicaCodeGenerator.cmi : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLTree.cmi ./src/xml2modelica/stringParser.cmi \ +@@ -3433,6 +3408,15 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringParser.cmi ./src/xml2modelica/stringParser.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringLexer.cmi ./src/xml2modelica/stringLexer.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/modelicaCodeGenerator.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/stringLexer.cmo ./src/xml2modelica/stringLexer.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringParser.cmi ./src/xml2modelica/stringLexer.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/stringLexer.cmx ./src/xml2modelica/stringLexer.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringLexer.cmi : ./src/xml2modelica/stringParser.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringParser.cmx ./src/xml2modelica/stringLexer.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/stringParser.cmo ./src/xml2modelica/stringParser.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringParser.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/stringParser.cmx ./src/xml2modelica/stringParser.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/stringParser.cmi : ./src/xml2modelica/stringParser.ml + @OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xML2Modelica.cmo ./src/xml2modelica/xML2Modelica.cmi : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLParser.cmi ./src/xml2modelica/xMLLexer.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/modelicaCodeGenerator.cmi \ +@@ -3444,31 +3428,22 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/modelicaCodeGenerator.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/modelicaCodeGenerator.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xML2Modelica.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/syntax.cmo ./src/translator/parsing/syntax.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/syntax.cmx ./src/translator/parsing/syntax.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.cmi : ./src/translator/parsing/syntax.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/parser.cmo ./src/translator/parsing/parser.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.cmi ./src/translator/parsing/parser.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/parser.cmx ./src/translator/parsing/parser.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmi : ./src/translator/parsing/syntax.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.cmx ./src/translator/parsing/parser.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/lexer.cmo ./src/translator/parsing/lexer.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmi ./src/translator/parsing/lexer.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/lexer.cmx ./src/translator/parsing/lexer.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/lexer.cmi : ./src/translator/parsing/parser.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmx ./src/translator/parsing/lexer.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/linenum.cmo ./src/translator/parsing/linenum.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/linenum.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/linenum.cmx ./src/translator/parsing/linenum.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/linenum.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/linenum.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/compilation/types.cmo \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/compilation/types.cmx ./src/translator/compilation/types.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLLexer.cmo ./src/xml2modelica/xMLLexer.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLParser.cmi ./src/xml2modelica/xMLLexer.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLLexer.cmx ./src/xml2modelica/xMLLexer.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLLexer.cmi : ./src/xml2modelica/xMLParser.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLParser.cmx ./src/xml2modelica/xMLLexer.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLParser.cmo ./src/xml2modelica/xMLParser.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLTree.cmi ./src/modelica_compiler/linenum.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLParser.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLParser.cmx ./src/xml2modelica/xMLParser.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLParser.cmi : ./src/xml2modelica/xMLTree.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLTree.cmx ./src/modelica_compiler/linenum.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/linenum.cmx ./src/xml2modelica/xMLParser.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLTree.cmo ./src/xml2modelica/xMLTree.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLTree.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/xml2modelica/xMLTree.cmx ./src/xml2modelica/xMLTree.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/xml2modelica/xMLTree.cmi : ./src/xml2modelica/xMLTree.ml + @OCAML_TRUE@@XCOS_TRUE@./src/translator/compilation/nameResolve.cmo \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/nameResolve.cmi : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmi \ +@@ -3482,29 +3457,12 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.cmi ./src/translator/parsing/syntax.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmi ./src/translator/parsing/parser.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/nameResolve.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/instantiation/instantiation.cmo \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/instantiation/instantiation.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.cmi ./src/translator/parsing/parser.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/nameResolve.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/instantiation/instantiation.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/instantiation/instantiation.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/instantiation/instantiation.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/instantiation/instantiation.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.cmi ./src/translator/parsing/syntax.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmi ./src/translator/parsing/parser.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/nameResolve.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/nameResolve.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/instantiation/instantiation.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/exceptionHandling/msgDico.cmo \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/msgDico.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/msgDico.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/exceptionHandling/msgDico.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/msgDico.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/msgDico.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/msgDico.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/compilation/types.cmo \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/compilation/types.cmx ./src/translator/compilation/types.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.ml + @OCAML_TRUE@@XCOS_TRUE@./src/translator/exceptionHandling/errorDico.cmo \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/errorDico.cmi : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmi \ +@@ -3543,19 +3501,48 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/errorDico.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/errorDico.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/exceptHandler.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/translation/libraryManager.cmo \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/libraryManager.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmi ./src/translator/parsing/lexer.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/exceptHandler.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/libraryManager.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/translation/libraryManager.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/libraryManager.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/libraryManager.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/exceptionHandling/msgDico.cmo \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/msgDico.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/msgDico.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/exceptionHandling/msgDico.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/msgDico.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/msgDico.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/msgDico.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/instantiation/instantiation.cmo \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/instantiation/instantiation.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.cmi ./src/translator/parsing/parser.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/nameResolve.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/instantiation/instantiation.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/instantiation/instantiation.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/instantiation/instantiation.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/instantiation/instantiation.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.cmi ./src/translator/parsing/syntax.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmi ./src/translator/parsing/parser.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/lexer.cmi ./src/translator/parsing/lexer.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/exceptHandler.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/exceptHandler.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/libraryManager.ml ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/nameResolve.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/nameResolve.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/instantiation/instantiation.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/lexer.cmo ./src/translator/parsing/lexer.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmi ./src/translator/parsing/lexer.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/lexer.cmx ./src/translator/parsing/lexer.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/lexer.cmi : ./src/translator/parsing/parser.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmx ./src/translator/parsing/lexer.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/linenum.cmo ./src/translator/parsing/linenum.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/linenum.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/linenum.cmx ./src/translator/parsing/linenum.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/linenum.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/linenum.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/parser.cmo ./src/translator/parsing/parser.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.cmi ./src/translator/parsing/parser.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/parser.cmx ./src/translator/parsing/parser.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmi : ./src/translator/parsing/syntax.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.cmx ./src/translator/parsing/parser.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/syntax.cmo ./src/translator/parsing/syntax.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/parsing/syntax.cmx ./src/translator/parsing/syntax.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/syntax.cmi : ./src/translator/parsing/syntax.ml + @OCAML_TRUE@@XCOS_TRUE@./src/translator/translation/codeGeneration.cmo \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/codeGeneration.cmi : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/compilation/types.cmi \ +@@ -3575,13 +3562,19 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/errorDico.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/errorDico.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/codeGeneration.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/translation/versiondate.cmo \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/versiondate.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/versiondate.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/translator/translation/versiondate.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/versiondate.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/versiondate.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/versiondate.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/translation/libraryManager.cmo \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/libraryManager.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmi ./src/translator/parsing/lexer.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/exceptHandler.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/libraryManager.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/translation/libraryManager.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/libraryManager.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/libraryManager.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/parser.cmi ./src/translator/parsing/parser.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/parsing/lexer.cmi ./src/translator/parsing/lexer.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/exceptHandler.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/exceptionHandling/exceptHandler.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/libraryManager.ml + @OCAML_TRUE@@XCOS_TRUE@./src/translator/translation/translator.cmo \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/translator.cmi : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/versiondate.cmi \ +@@ -3607,39 +3600,27 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/codeGeneration.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/codeGeneration.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/translator.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/parseTree.cmo : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/parseTree.cmx ./src/modelica_compiler/parseTree.o : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/linenum.cmo ./src/modelica_compiler/linenum.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/linenum.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/linenum.cmx ./src/modelica_compiler/linenum.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/linenum.cmi : ./src/modelica_compiler/linenum.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/parser.cmo ./src/modelica_compiler/parser.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi ./src/modelica_compiler/linenum.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parser.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/parser.cmx ./src/modelica_compiler/parser.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parser.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmx ./src/modelica_compiler/linenum.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/linenum.cmx ./src/modelica_compiler/parser.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/lexer.cmo ./src/modelica_compiler/lexer.cmi : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parser.cmi ./src/modelica_compiler/lexer.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/lexer.cmx ./src/modelica_compiler/lexer.o \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/lexer.cmi : ./src/modelica_compiler/parser.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parser.cmx ./src/modelica_compiler/lexer.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/precompilation.cmo : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/precompilation.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.o : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/translation/versiondate.cmo \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/versiondate.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/versiondate.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/translator/translation/versiondate.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/versiondate.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/versiondate.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/translator/translation/versiondate.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/bipartiteGraph.cmo : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/bipartiteGraph.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/bipartiteGraph.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/bipartiteGraph.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/bipartiteGraph.o : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/bipartiteGraph.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/bipartiteGraph.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/causalityGraph.cmo : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/causalityGraph.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/causalityGraph.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/causalityGraph.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/causalityGraph.o : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/causalityGraph.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/causalityGraph.ml + @OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/compilation.cmo : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi \ +@@ -3653,16 +3634,6 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/compilation.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/compilation.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/instantiation.cmo : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/compilation.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/instantiation.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/instantiation.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/instantiation.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/instantiation.o : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/compilation.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/compilation.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/instantiation.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/instantiation.ml + @OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/graphNodeSet.cmo : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/graphNodeSet.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/graphNodeSet.ml +@@ -3670,30 +3641,6 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/graphNodeSet.o : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/graphNodeSet.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/graphNodeSet.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/symbolicExpression.cmo : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/graphNodeSet.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/symbolicExpression.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.o : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/graphNodeSet.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/graphNodeSet.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/squareSparseMatrix.cmo : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/squareSparseMatrix.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/squareSparseMatrix.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/squareSparseMatrix.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/squareSparseMatrix.o : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/squareSparseMatrix.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/squareSparseMatrix.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/bipartiteGraph.cmo : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/bipartiteGraph.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/bipartiteGraph.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/bipartiteGraph.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/bipartiteGraph.o : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/bipartiteGraph.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/bipartiteGraph.ml + @OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/hungarianMethod.cmo : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/hungarianMethod.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/hungarianMethod.ml +@@ -3701,13 +3648,25 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/hungarianMethod.o : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/hungarianMethod.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/hungarianMethod.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/causalityGraph.cmo : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/causalityGraph.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/causalityGraph.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/causalityGraph.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/causalityGraph.o : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/causalityGraph.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/causalityGraph.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/instantiation.cmo : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/compilation.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/instantiation.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/instantiation.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/instantiation.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/instantiation.o : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/compilation.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/compilation.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/instantiation.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/instantiation.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/lexer.cmo ./src/modelica_compiler/lexer.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parser.cmi ./src/modelica_compiler/lexer.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/lexer.cmx ./src/modelica_compiler/lexer.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/lexer.cmi : ./src/modelica_compiler/parser.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parser.cmx ./src/modelica_compiler/lexer.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/linenum.cmo ./src/modelica_compiler/linenum.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/linenum.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/linenum.cmx ./src/modelica_compiler/linenum.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/linenum.cmi : ./src/modelica_compiler/linenum.ml + @OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/optimization.cmo : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/squareSparseMatrix.cmi \ +@@ -3736,19 +3695,6 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/bipartiteGraph.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimization.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimization.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/xMLCodeGeneration.cmo : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimization.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/xMLCodeGeneration.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/xMLCodeGeneration.ml +-@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/xMLCodeGeneration.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/xMLCodeGeneration.o : \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimization.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimization.cmx \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/xMLCodeGeneration.cmi \ +-@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/xMLCodeGeneration.ml + @OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/optimizingCompiler.cmo : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/xMLCodeGeneration.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.cmi \ +@@ -3775,6 +3721,30 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/compilation.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimizingCompiler.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimizingCompiler.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/parseTree.cmo : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/parseTree.cmx ./src/modelica_compiler/parseTree.o : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/parser.cmo ./src/modelica_compiler/parser.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi ./src/modelica_compiler/linenum.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parser.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/parser.cmx ./src/modelica_compiler/parser.o \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parser.cmi : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmx ./src/modelica_compiler/linenum.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/linenum.cmx ./src/modelica_compiler/parser.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/precompilation.cmo : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/precompilation.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.o : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/parseTree.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/precompilation.ml + @OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/scicosCodeGeneration.cmo : \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimization.cmi \ +@@ -3804,6 +3774,36 @@ distclean-local: + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimizingCompiler.cmi \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimizingCompiler.cmx \ + @OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/scicosOptimizingCompiler.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/squareSparseMatrix.cmo : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/squareSparseMatrix.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/squareSparseMatrix.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/squareSparseMatrix.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/squareSparseMatrix.o : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/squareSparseMatrix.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/squareSparseMatrix.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/symbolicExpression.cmo : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/graphNodeSet.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/symbolicExpression.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.o : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/graphNodeSet.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/graphNodeSet.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/xMLCodeGeneration.cmo : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimization.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/xMLCodeGeneration.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/xMLCodeGeneration.ml ++@OCAML_TRUE@@XCOS_TRUE@./src/modelica_compiler/xMLCodeGeneration.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/xMLCodeGeneration.o : \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/symbolicExpression.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimization.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/optimization.cmx \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/xMLCodeGeneration.cmi \ ++@OCAML_TRUE@@XCOS_TRUE@ ./src/modelica_compiler/xMLCodeGeneration.ml + + # Build modelica stuff + From owner-svn-ports-all@freebsd.org Fri Jun 21 17:11:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8D72C15B86CE; Fri, 21 Jun 2019 17:11:23 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3479D70C0B; Fri, 21 Jun 2019 17:11:23 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 10393261E4; Fri, 21 Jun 2019 17:11:23 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LHBMMX073058; Fri, 21 Jun 2019 17:11:22 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LHBMRu073057; Fri, 21 Jun 2019 17:11:22 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201906211711.x5LHBMRu073057@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Fri, 21 Jun 2019 17:11:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504805 - head/sysutils/py-salt X-SVN-Group: ports-head X-SVN-Commit-Author: krion X-SVN-Commit-Paths: head/sysutils/py-salt X-SVN-Commit-Revision: 504805 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3479D70C0B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 17:11:23 -0000 Author: krion Date: Fri Jun 21 17:11:22 2019 New Revision: 504805 URL: https://svnweb.freebsd.org/changeset/ports/504805 Log: Add pyinotify to enable (limited) beacons/reactor support. PR: 238681 Approved by: maintainer Modified: head/sysutils/py-salt/Makefile Modified: head/sysutils/py-salt/Makefile ============================================================================== --- head/sysutils/py-salt/Makefile Fri Jun 21 16:56:38 2019 (r504804) +++ head/sysutils/py-salt/Makefile Fri Jun 21 17:11:22 2019 (r504805) @@ -3,7 +3,7 @@ PORTNAME= salt PORTVERSION= 2019.2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -24,7 +24,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Jinja2>0:devel/py- ${PYTHON_PKGNAMEPREFIX}psutil>=0.3.0:sysutils/py-psutil@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=1.0.0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}tornado4>=4.2.1:www/py-tornado4@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}yaml>0:devel/py-yaml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyinotify>0:devel/py-pyinotify@${PY_FLAVOR} USES= cpe python From owner-svn-ports-all@freebsd.org Fri Jun 21 19:10:52 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6AC5E15BC0F7; Fri, 21 Jun 2019 19:10:52 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0DDA3747A5; Fri, 21 Jun 2019 19:10:52 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DAE6427596; Fri, 21 Jun 2019 19:10:51 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LJAp2n035169; Fri, 21 Jun 2019 19:10:51 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LJApW3035166; Fri, 21 Jun 2019 19:10:51 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906211910.x5LJApW3035166@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 21 Jun 2019 19:10:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504806 - in head/www: . py-dj22-django-cacheops py-django-cacheops X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/www: . py-dj22-django-cacheops py-django-cacheops X-SVN-Commit-Revision: 504806 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0DDA3747A5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 19:10:52 -0000 Author: kai Date: Fri Jun 21 19:10:50 2019 New Revision: 504806 URL: https://svnweb.freebsd.org/changeset/ports/504806 Log: New port: www/py-dj22-django-cacheops Repocopy www/py-django-cacheops and assign it to Django 2.2. That port will be required for the upcoming update of net-mgmt/netbox to 2.6. Also limit the port to Python 3.5+ as Django 2.2 requires it as minimum dependency and add the related CONFLICTS_INSTALL entries. Added: head/www/py-dj22-django-cacheops/ - copied from r504805, head/www/py-django-cacheops/ Modified: head/www/Makefile head/www/py-dj22-django-cacheops/Makefile head/www/py-django-cacheops/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Jun 21 17:11:22 2019 (r504805) +++ head/www/Makefile Fri Jun 21 19:10:50 2019 (r504806) @@ -1486,6 +1486,7 @@ SUBDIR += py-dj21-djangorestframework SUBDIR += py-dj21-drf-yasg SUBDIR += py-dj22-django-auth-ldap + SUBDIR += py-dj22-django-cacheops SUBDIR += py-dj22-django-cors-headers SUBDIR += py-dj22-django-debug-toolbar SUBDIR += py-dj22-django-filter Modified: head/www/py-dj22-django-cacheops/Makefile ============================================================================== --- head/www/py-django-cacheops/Makefile Fri Jun 21 17:11:22 2019 (r504805) +++ head/www/py-dj22-django-cacheops/Makefile Fri Jun 21 19:10:50 2019 (r504806) @@ -4,7 +4,7 @@ PORTNAME= django-cacheops PORTVERSION= 4.1 CATEGORIES= www python MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj22- MAINTAINER= kai@FreeBSD.org COMMENT= Slick ORM cache with automatic granular event-driven invalidation @@ -12,13 +12,15 @@ COMMENT= Slick ORM cache with automatic granular event LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.8:www/py-django111@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django22>=1.8:www/py-django22@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}redis>=2.9.1:databases/py-redis@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}funcy>=1.8:devel/py-funcy@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}six>=1.4.0:devel/py-six@${PY_FLAVOR} -USES= python +USES= python:3.5+ USE_PYTHON= autoplist distutils + +CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}django-cacheops NO_ARCH= yes Modified: head/www/py-django-cacheops/Makefile ============================================================================== --- head/www/py-django-cacheops/Makefile Fri Jun 21 17:11:22 2019 (r504805) +++ head/www/py-django-cacheops/Makefile Fri Jun 21 19:10:50 2019 (r504806) @@ -20,6 +20,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.8:www USES= python USE_PYTHON= autoplist distutils +CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}dj22-django-cacheops + NO_ARCH= yes .include From owner-svn-ports-all@freebsd.org Fri Jun 21 19:12:45 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ECA4515BC29F; Fri, 21 Jun 2019 19:12:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8F2AE74AE8; Fri, 21 Jun 2019 19:12:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 671A327725; Fri, 21 Jun 2019 19:12:44 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LJCikU039930; Fri, 21 Jun 2019 19:12:44 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LJCinM039929; Fri, 21 Jun 2019 19:12:44 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906211912.x5LJCinM039929@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Fri, 21 Jun 2019 19:12:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504807 - head/games/allacrost X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/games/allacrost X-SVN-Commit-Revision: 504807 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8F2AE74AE8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 19:12:45 -0000 Author: amdmi3 Date: Fri Jun 21 19:12:43 2019 New Revision: 504807 URL: https://svnweb.freebsd.org/changeset/ports/504807 Log: - Switch to more correct way of avoiding C++11 related build errors, by specifying older c++ standard Modified: head/games/allacrost/Makefile Modified: head/games/allacrost/Makefile ============================================================================== --- head/games/allacrost/Makefile Fri Jun 21 19:10:50 2019 (r504806) +++ head/games/allacrost/Makefile Fri Jun 21 19:12:43 2019 (r504807) @@ -20,15 +20,15 @@ LIB_DEPENDS= libpng.so:graphics/png \ libboost_thread.so:devel/boost-libs GNU_CONFIGURE= yes -USES= compiler:c++11-lang gettext gmake iconv jpeg lua:51 openal:al +USES= gettext gmake iconv jpeg localbase lua:51 openal:al USE_SDL= sdl ttf net USE_GL= gl glu USE_XORG= x11 +USE_CXXSTD= c++98 CONFIGURE_ARGS= --datadir=${DATADIR} --enable-editor=no -CPPFLAGS+= -I${LOCALBASE}/include -I${LUA_INCDIR} -LDFLAGS+= -L${LOCALBASE}/lib -L${LUA_LIBDIR} -CXXFLAGS+= -Wno-c++11-narrowing +CPPFLAGS+= -isystem${LUA_INCDIR} +LDFLAGS+= -L${LUA_LIBDIR} LLD_UNSAFE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} From owner-svn-ports-all@freebsd.org Fri Jun 21 19:25:40 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DECD515BC785; Fri, 21 Jun 2019 19:25:39 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 84A2474FC7; Fri, 21 Jun 2019 19:25:39 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5AD61278E0; Fri, 21 Jun 2019 19:25:39 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LJPdbV045412; Fri, 21 Jun 2019 19:25:39 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LJPca9045409; Fri, 21 Jun 2019 19:25:38 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906211925.x5LJPca9045409@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Fri, 21 Jun 2019 19:25:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504808 - in head/www: . py-dj22-django-prometheus py-django-prometheus X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: in head/www: . py-dj22-django-prometheus py-django-prometheus X-SVN-Commit-Revision: 504808 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 84A2474FC7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 19:25:40 -0000 Author: kai Date: Fri Jun 21 19:25:38 2019 New Revision: 504808 URL: https://svnweb.freebsd.org/changeset/ports/504808 Log: New port: www/py-dj22-django-prometheus Repocopy www/py-django-prometheus and assign it to Django 2.2. That port will be required for the upcoming update of net-mgmt/netbox to 2.6. Also limit the port to Python 3.5+ as Django 2.2 requires it as minimum dependency and add the related CONFLICTS_INSTALL entries. Added: head/www/py-dj22-django-prometheus/ - copied from r504806, head/www/py-django-prometheus/ Modified: head/www/Makefile head/www/py-dj22-django-prometheus/Makefile head/www/py-django-prometheus/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Fri Jun 21 19:12:43 2019 (r504807) +++ head/www/Makefile Fri Jun 21 19:25:38 2019 (r504808) @@ -1492,6 +1492,7 @@ SUBDIR += py-dj22-django-filter SUBDIR += py-dj22-django-js-asset SUBDIR += py-dj22-django-mptt + SUBDIR += py-dj22-django-prometheus SUBDIR += py-dj22-django-tables2 SUBDIR += py-dj22-django-taggit SUBDIR += py-dj22-django-taggit-serializer Modified: head/www/py-dj22-django-prometheus/Makefile ============================================================================== --- head/www/py-django-prometheus/Makefile Fri Jun 21 19:10:50 2019 (r504806) +++ head/www/py-dj22-django-prometheus/Makefile Fri Jun 21 19:25:38 2019 (r504808) @@ -4,18 +4,20 @@ PORTNAME= django-prometheus PORTVERSION= 1.0.15 CATEGORIES= www python MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}dj22- MAINTAINER= kai@FreeBSD.org COMMENT= Export Django monitoring metrics for Prometheus.io LICENSE= APACHE20 -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.8:www/py-django111@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django22>=1.8:www/py-django22@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}prometheus-client>=0.0.21:net-mgmt/py-prometheus-client@${PY_FLAVOR} -USES= python +USES= python:3.5+ USE_PYTHON= autoplist distutils + +CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}django-prometheus NO_ARCH= yes Modified: head/www/py-django-prometheus/Makefile ============================================================================== --- head/www/py-django-prometheus/Makefile Fri Jun 21 19:12:43 2019 (r504807) +++ head/www/py-django-prometheus/Makefile Fri Jun 21 19:25:38 2019 (r504808) @@ -17,6 +17,8 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.8:www USES= python USE_PYTHON= autoplist distutils +CONFLICTS_INSTALL= ${PYTHON_PKGNAMEPREFIX}dj22-django-prometheus + NO_ARCH= yes OPTIONS_GROUP= DATABASE CACHE From owner-svn-ports-all@freebsd.org Fri Jun 21 19:54:06 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7EF2715BD3F0; Fri, 21 Jun 2019 19:54:06 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 277D276163; Fri, 21 Jun 2019 19:54:06 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F2CB527E20; Fri, 21 Jun 2019 19:54:05 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LJs5J8061072; Fri, 21 Jun 2019 19:54:05 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LJs4n8061061; Fri, 21 Jun 2019 19:54:04 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201906211954.x5LJs4n8061061@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Fri, 21 Jun 2019 19:54:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504809 - in head/misc/freebsd-release-manifests: . files/MANIFESTS X-SVN-Group: ports-head X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: in head/misc/freebsd-release-manifests: . files/MANIFESTS X-SVN-Commit-Revision: 504809 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 277D276163 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 19:54:06 -0000 Author: gjb Date: Fri Jun 21 19:54:03 2019 New Revision: 504809 URL: https://svnweb.freebsd.org/changeset/ports/504809 Log: Add MANIFESTS for 11.3-RC2. Remove MANIFESTS for 11.3-RC1. Approved by: bdrewery (maintainer, implicit, re blanket) MFH: 2019Q2 Sponsored by: The FreeBSD Foundation Added: head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.3-RC2 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.3-RC2 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.3-RC2 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.3-RC2 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.3-RC2 (contents, props changed) head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.3-RC2 (contents, props changed) Deleted: head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.3-RC1 head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.3-RC1 head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.3-RC1 head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.3-RC1 head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.3-RC1 head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.3-RC1 Modified: head/misc/freebsd-release-manifests/Makefile head/misc/freebsd-release-manifests/pkg-plist Modified: head/misc/freebsd-release-manifests/Makefile ============================================================================== --- head/misc/freebsd-release-manifests/Makefile Fri Jun 21 19:25:38 2019 (r504808) +++ head/misc/freebsd-release-manifests/Makefile Fri Jun 21 19:54:03 2019 (r504809) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= freebsd-release-manifests -DISTVERSION= 20190614 +DISTVERSION= 20190621 PORTREVISION= 0 CATEGORIES= misc MASTER_SITES= # Added: head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.3-RC2 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.3-RC2 Fri Jun 21 19:54:03 2019 (r504809) @@ -0,0 +1,10 @@ +base-dbg.txz 52f4f9eaa496d7a308aaa9ed229a7ee0c6771df0ca09dfc80ff8578a4e8e0154 1494 base_dbg "Base system (Debugging)" off +base.txz dd5a7917c9ab80a17416171109ee0f4cb375fab8be15d02a182db8d4c89898dd 23341 base "Base system (MANDATORY)" on +doc.txz a64b33fead5e8a655a0bbe340214299a6d2b4b0cf7d23b2036ae92951f8d0dea 120 doc "Additional Documentation" off +kernel-dbg.txz c3c8d6b311dc7b0cb47c0f6a58f9e40922e366aafd80c8ba8512c6ffd0ba9cad 877 kernel_dbg "Kernel (Debugging)" off +kernel.txz 7025770fb6e034cb40561c22da21e4cf9c3c453ac88c7c61a65058acfdfed310 886 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz f3ae8bde56e8e0620539febb4daa2b93144f561d7c24bddd6096a4ba88d702eb 229 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz 498e95167b7065f5393f0a2fa9405420647f9e611e53d458bd09574c4eebb8f1 968 lib32 "32-bit compatibility libraries" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz 2b7dd66fe13e0b337039df24cf8d117e7fa3469ccc6bfb77c0df8e12a2b8e709 4146 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.3-RC2 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.3-RC2 Fri Jun 21 19:54:03 2019 (r504809) @@ -0,0 +1,8 @@ +base-dbg.txz d3834a928202eb59ab33bf4e5b05fb4e094d27df0920adc38a32c7da9bfba060 1437 base_dbg "Base system (Debugging)" off +base.txz f924666ba775db8cd7e9226d15bf575f8b24f0665e7a98c127123b3c960ee568 22639 base "Base system (MANDATORY)" on +doc.txz 66bb8d02dc0b5695e7fd91917a25dacf6caffdfb24fc5ddb7b8e1750508a6708 120 doc "Additional Documentation" off +kernel-dbg.txz 289c44931f924a1649048559a4a72d169e7713497e5cffedd2641475131068e3 588 kernel_dbg "Kernel (Debugging)" off +kernel.txz 81926a1359e8b0122c9afaa486ffb0b9167243b7864ca09afdc6a8163a561509 596 kernel "Kernel (MANDATORY)" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz 6afa29b24825ce5adc928f9cbd67c855c08ac9f5883a17cb9561e80f814b5a3d 4143 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.3-RC2 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.3-RC2 Fri Jun 21 19:54:03 2019 (r504809) @@ -0,0 +1,8 @@ +base-dbg.txz d6a620e971deadd665a4c8fd6a4565072a7397eeda723b0d7f0bf64b22196919 1469 base_dbg "Base system (Debugging)" off +base.txz 1e6dbb9bdd22be5e8922769fad4e511db53596f53d51505d166ef4c327aef363 23025 base "Base system (MANDATORY)" on +doc.txz 88174ecef5ecfd6351169c43c0490346e9a0b4d91d040244144087721dee5ba5 120 doc "Additional Documentation" off +kernel-dbg.txz 3b2d3c6235a6f21f78e96ec435d13da4f68e054743805ebe06b3fe3b75296011 884 kernel_dbg "Kernel (Debugging)" off +kernel.txz 0a1941e6e14f1fd574b1dd98857bc4080367a20ebf7654e7723b9ba6309882a1 893 kernel "Kernel (MANDATORY)" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz bc1484115592f6ecb25ba4733316cf9463a118d04f4a667b635c18ee5b181209 4146 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.3-RC2 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.3-RC2 Fri Jun 21 19:54:03 2019 (r504809) @@ -0,0 +1,8 @@ +base-dbg.txz 38be2d123f8ac9e06224b454cbcd0c952147c165260dda2c2c11ad9227f93508 1438 base_dbg "Base system (Debugging)" off +base.txz 5915f4fa433569001231751711793befde6c6731112ae9995e105e2888766b0f 22797 base "Base system (MANDATORY)" on +doc.txz 52af60dcfdd0bd476d05dd0f471beefdb217356c09aea33cb351f7471c7e6010 120 doc "Additional Documentation" off +kernel-dbg.txz 4924748b7d69f8e2c3ec88d3885dcdaa9505bdada6771392c457517b440f95d0 598 kernel_dbg "Kernel (Debugging)" off +kernel.txz 8075762ef30f7e2a285871bfec2902b95bf7086bc50893fae2756c266540a7fc 606 kernel "Kernel (MANDATORY)" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz 78aa5c1d5d0a0028e6dc14be7bf56ee98a713ad9309b4112b2eafb7bf2f82c8d 4142 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.3-RC2 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.3-RC2 Fri Jun 21 19:54:03 2019 (r504809) @@ -0,0 +1,10 @@ +base-dbg.txz b2d7eecc606530501fd93b9f413be34aa6d906db2e2be197a0d1fa1785d815e3 1440 base_dbg "Base system (Debugging)" off +base.txz ce13fec91de60cf22c6ce1c766a9a470ac545f6bfd85285e4e6df0a30ddb8441 22816 base "Base system (MANDATORY)" on +doc.txz efea9f121f403e59b6be2ee0ff12b98aed8b668528a54db221841c70f58b668b 120 doc "Additional Documentation" off +kernel-dbg.txz 731d03a1a81972e866ed767d3051da23277369ec142e27914632e0ed3716dfe8 692 kernel_dbg "Kernel (Debugging)" off +kernel.txz 635abd539fc0ed2c89898567af2b372ca12380f624ea27b842d6d413179adb82 700 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz dc15265e3f881b38e6f95df6c9f206e78a10dd2f90f723d9d0a8f8dbf3656f62 209 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz ca8620f99706b2df3e71ff2d21d2177ff7064a670113126541c07a7efb9bfb17 735 lib32 "32-bit compatibility libraries" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz 22cbd46fbb98bee669926d4dc0fef30bee283311b681464cc0be41f708827d6c 4142 tests "Test suite" off Added: head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.3-RC2 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.3-RC2 Fri Jun 21 19:54:03 2019 (r504809) @@ -0,0 +1,8 @@ +base-dbg.txz 6fc1a0dea87e4f2d144743586c47d32a0d1e5698e8cc4a3d5cf4f1c7e14d489c 1436 base_dbg "Base system (Debugging)" off +base.txz 17ec6529b45eb159daaf9ba6631d698d74bcab70a85a067df761cc9ef85dbc6b 22732 base "Base system (MANDATORY)" on +doc.txz ac13ee60b9f7a935624c684bb39ce27af0be298455ff9d768e7b44cd7300fda2 120 doc "Additional Documentation" off +kernel-dbg.txz b0c8c502a5ab1ec4534bb0b595a74587d21e4bada8802a84e43a32139da33fd2 582 kernel_dbg "Kernel (Debugging)" off +kernel.txz 4f3a9c3938e55f7e91619f585f273701d121ef95c6d98c9d9ca8f39cbd1d07f3 590 kernel "Kernel (MANDATORY)" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz b4ef7b4de67d7e3f482e22c3a92016796e2b6351b9debef6c1013b5c9ceea0ca 4138 tests "Test suite" off Modified: head/misc/freebsd-release-manifests/pkg-plist ============================================================================== --- head/misc/freebsd-release-manifests/pkg-plist Fri Jun 21 19:25:38 2019 (r504808) +++ head/misc/freebsd-release-manifests/pkg-plist Fri Jun 21 19:54:03 2019 (r504809) @@ -75,9 +75,9 @@ %%DATADIR%%/MANIFESTS/powerpc-powerpc64-12.0-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpcspe-12.0-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-12.0-RELEASE -%%DATADIR%%/MANIFESTS/amd64-amd64-11.3-RC1 -%%DATADIR%%/MANIFESTS/arm64-aarch64-11.3-RC1 -%%DATADIR%%/MANIFESTS/i386-i386-11.3-RC1 -%%DATADIR%%/MANIFESTS/powerpc-powerpc-11.3-RC1 -%%DATADIR%%/MANIFESTS/powerpc-powerpc64-11.3-RC1 -%%DATADIR%%/MANIFESTS/sparc64-sparc64-11.3-RC1 +%%DATADIR%%/MANIFESTS/amd64-amd64-11.3-RC2 +%%DATADIR%%/MANIFESTS/arm64-aarch64-11.3-RC2 +%%DATADIR%%/MANIFESTS/i386-i386-11.3-RC2 +%%DATADIR%%/MANIFESTS/powerpc-powerpc-11.3-RC2 +%%DATADIR%%/MANIFESTS/powerpc-powerpc64-11.3-RC2 +%%DATADIR%%/MANIFESTS/sparc64-sparc64-11.3-RC2 From owner-svn-ports-all@freebsd.org Fri Jun 21 19:55:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3961A15BD4D6; Fri, 21 Jun 2019 19:55:01 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D0A52762BA; Fri, 21 Jun 2019 19:55:00 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ABC2427E22; Fri, 21 Jun 2019 19:55:00 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LJt0gZ061433; Fri, 21 Jun 2019 19:55:00 GMT (envelope-from gjb@FreeBSD.org) Received: (from gjb@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LJsxZj061390; Fri, 21 Jun 2019 19:54:59 GMT (envelope-from gjb@FreeBSD.org) Message-Id: <201906211954.x5LJsxZj061390@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gjb set sender to gjb@FreeBSD.org using -f From: Glen Barber Date: Fri, 21 Jun 2019 19:54:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504810 - in branches/2019Q2/misc/freebsd-release-manifests: . files/MANIFESTS X-SVN-Group: ports-branches X-SVN-Commit-Author: gjb X-SVN-Commit-Paths: in branches/2019Q2/misc/freebsd-release-manifests: . files/MANIFESTS X-SVN-Commit-Revision: 504810 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D0A52762BA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.979,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 19:55:01 -0000 Author: gjb Date: Fri Jun 21 19:54:58 2019 New Revision: 504810 URL: https://svnweb.freebsd.org/changeset/ports/504810 Log: MFH: r504809 Add MANIFESTS for 11.3-RC2. Remove MANIFESTS for 11.3-RC1. Approved by: portmgr (implicit, re blanket) Approved by: bdrewery (maintainer, implicit, re blanket) Sponsored by: The FreeBSD Foundation Added: branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.3-RC2 - copied unchanged from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.3-RC2 branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.3-RC2 - copied unchanged from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.3-RC2 branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.3-RC2 - copied unchanged from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.3-RC2 branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.3-RC2 - copied unchanged from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.3-RC2 branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.3-RC2 - copied unchanged from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.3-RC2 branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.3-RC2 - copied unchanged from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.3-RC2 Deleted: branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.3-RC1 branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.3-RC1 branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.3-RC1 branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.3-RC1 branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.3-RC1 branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.3-RC1 Modified: branches/2019Q2/misc/freebsd-release-manifests/Makefile branches/2019Q2/misc/freebsd-release-manifests/pkg-plist Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/misc/freebsd-release-manifests/Makefile ============================================================================== --- branches/2019Q2/misc/freebsd-release-manifests/Makefile Fri Jun 21 19:54:03 2019 (r504809) +++ branches/2019Q2/misc/freebsd-release-manifests/Makefile Fri Jun 21 19:54:58 2019 (r504810) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= freebsd-release-manifests -DISTVERSION= 20190614 +DISTVERSION= 20190621 PORTREVISION= 0 CATEGORIES= misc MASTER_SITES= # Copied: branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.3-RC2 (from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.3-RC2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.3-RC2 Fri Jun 21 19:54:58 2019 (r504810, copy of r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/amd64-amd64-11.3-RC2) @@ -0,0 +1,10 @@ +base-dbg.txz 52f4f9eaa496d7a308aaa9ed229a7ee0c6771df0ca09dfc80ff8578a4e8e0154 1494 base_dbg "Base system (Debugging)" off +base.txz dd5a7917c9ab80a17416171109ee0f4cb375fab8be15d02a182db8d4c89898dd 23341 base "Base system (MANDATORY)" on +doc.txz a64b33fead5e8a655a0bbe340214299a6d2b4b0cf7d23b2036ae92951f8d0dea 120 doc "Additional Documentation" off +kernel-dbg.txz c3c8d6b311dc7b0cb47c0f6a58f9e40922e366aafd80c8ba8512c6ffd0ba9cad 877 kernel_dbg "Kernel (Debugging)" off +kernel.txz 7025770fb6e034cb40561c22da21e4cf9c3c453ac88c7c61a65058acfdfed310 886 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz f3ae8bde56e8e0620539febb4daa2b93144f561d7c24bddd6096a4ba88d702eb 229 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz 498e95167b7065f5393f0a2fa9405420647f9e611e53d458bd09574c4eebb8f1 968 lib32 "32-bit compatibility libraries" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz 2b7dd66fe13e0b337039df24cf8d117e7fa3469ccc6bfb77c0df8e12a2b8e709 4146 tests "Test suite" off Copied: branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.3-RC2 (from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.3-RC2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.3-RC2 Fri Jun 21 19:54:58 2019 (r504810, copy of r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/arm64-aarch64-11.3-RC2) @@ -0,0 +1,8 @@ +base-dbg.txz d3834a928202eb59ab33bf4e5b05fb4e094d27df0920adc38a32c7da9bfba060 1437 base_dbg "Base system (Debugging)" off +base.txz f924666ba775db8cd7e9226d15bf575f8b24f0665e7a98c127123b3c960ee568 22639 base "Base system (MANDATORY)" on +doc.txz 66bb8d02dc0b5695e7fd91917a25dacf6caffdfb24fc5ddb7b8e1750508a6708 120 doc "Additional Documentation" off +kernel-dbg.txz 289c44931f924a1649048559a4a72d169e7713497e5cffedd2641475131068e3 588 kernel_dbg "Kernel (Debugging)" off +kernel.txz 81926a1359e8b0122c9afaa486ffb0b9167243b7864ca09afdc6a8163a561509 596 kernel "Kernel (MANDATORY)" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz 6afa29b24825ce5adc928f9cbd67c855c08ac9f5883a17cb9561e80f814b5a3d 4143 tests "Test suite" off Copied: branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.3-RC2 (from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.3-RC2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.3-RC2 Fri Jun 21 19:54:58 2019 (r504810, copy of r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/i386-i386-11.3-RC2) @@ -0,0 +1,8 @@ +base-dbg.txz d6a620e971deadd665a4c8fd6a4565072a7397eeda723b0d7f0bf64b22196919 1469 base_dbg "Base system (Debugging)" off +base.txz 1e6dbb9bdd22be5e8922769fad4e511db53596f53d51505d166ef4c327aef363 23025 base "Base system (MANDATORY)" on +doc.txz 88174ecef5ecfd6351169c43c0490346e9a0b4d91d040244144087721dee5ba5 120 doc "Additional Documentation" off +kernel-dbg.txz 3b2d3c6235a6f21f78e96ec435d13da4f68e054743805ebe06b3fe3b75296011 884 kernel_dbg "Kernel (Debugging)" off +kernel.txz 0a1941e6e14f1fd574b1dd98857bc4080367a20ebf7654e7723b9ba6309882a1 893 kernel "Kernel (MANDATORY)" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz bc1484115592f6ecb25ba4733316cf9463a118d04f4a667b635c18ee5b181209 4146 tests "Test suite" off Copied: branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.3-RC2 (from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.3-RC2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.3-RC2 Fri Jun 21 19:54:58 2019 (r504810, copy of r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc-11.3-RC2) @@ -0,0 +1,8 @@ +base-dbg.txz 38be2d123f8ac9e06224b454cbcd0c952147c165260dda2c2c11ad9227f93508 1438 base_dbg "Base system (Debugging)" off +base.txz 5915f4fa433569001231751711793befde6c6731112ae9995e105e2888766b0f 22797 base "Base system (MANDATORY)" on +doc.txz 52af60dcfdd0bd476d05dd0f471beefdb217356c09aea33cb351f7471c7e6010 120 doc "Additional Documentation" off +kernel-dbg.txz 4924748b7d69f8e2c3ec88d3885dcdaa9505bdada6771392c457517b440f95d0 598 kernel_dbg "Kernel (Debugging)" off +kernel.txz 8075762ef30f7e2a285871bfec2902b95bf7086bc50893fae2756c266540a7fc 606 kernel "Kernel (MANDATORY)" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz 78aa5c1d5d0a0028e6dc14be7bf56ee98a713ad9309b4112b2eafb7bf2f82c8d 4142 tests "Test suite" off Copied: branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.3-RC2 (from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.3-RC2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.3-RC2 Fri Jun 21 19:54:58 2019 (r504810, copy of r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/powerpc-powerpc64-11.3-RC2) @@ -0,0 +1,10 @@ +base-dbg.txz b2d7eecc606530501fd93b9f413be34aa6d906db2e2be197a0d1fa1785d815e3 1440 base_dbg "Base system (Debugging)" off +base.txz ce13fec91de60cf22c6ce1c766a9a470ac545f6bfd85285e4e6df0a30ddb8441 22816 base "Base system (MANDATORY)" on +doc.txz efea9f121f403e59b6be2ee0ff12b98aed8b668528a54db221841c70f58b668b 120 doc "Additional Documentation" off +kernel-dbg.txz 731d03a1a81972e866ed767d3051da23277369ec142e27914632e0ed3716dfe8 692 kernel_dbg "Kernel (Debugging)" off +kernel.txz 635abd539fc0ed2c89898567af2b372ca12380f624ea27b842d6d413179adb82 700 kernel "Kernel (MANDATORY)" on +lib32-dbg.txz dc15265e3f881b38e6f95df6c9f206e78a10dd2f90f723d9d0a8f8dbf3656f62 209 lib32_dbg "32-bit compatibility libraries (Debugging)" off +lib32.txz ca8620f99706b2df3e71ff2d21d2177ff7064a670113126541c07a7efb9bfb17 735 lib32 "32-bit compatibility libraries" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz 22cbd46fbb98bee669926d4dc0fef30bee283311b681464cc0be41f708827d6c 4142 tests "Test suite" off Copied: branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.3-RC2 (from r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.3-RC2) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2019Q2/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.3-RC2 Fri Jun 21 19:54:58 2019 (r504810, copy of r504809, head/misc/freebsd-release-manifests/files/MANIFESTS/sparc64-sparc64-11.3-RC2) @@ -0,0 +1,8 @@ +base-dbg.txz 6fc1a0dea87e4f2d144743586c47d32a0d1e5698e8cc4a3d5cf4f1c7e14d489c 1436 base_dbg "Base system (Debugging)" off +base.txz 17ec6529b45eb159daaf9ba6631d698d74bcab70a85a067df761cc9ef85dbc6b 22732 base "Base system (MANDATORY)" on +doc.txz ac13ee60b9f7a935624c684bb39ce27af0be298455ff9d768e7b44cd7300fda2 120 doc "Additional Documentation" off +kernel-dbg.txz b0c8c502a5ab1ec4534bb0b595a74587d21e4bada8802a84e43a32139da33fd2 582 kernel_dbg "Kernel (Debugging)" off +kernel.txz 4f3a9c3938e55f7e91619f585f273701d121ef95c6d98c9d9ca8f39cbd1d07f3 590 kernel "Kernel (MANDATORY)" on +ports.txz 54f67ca69a33f6f0b301616c6478897e45cf29cca79a2f95f4c07aea8929e757 175298 ports "Ports tree" on +src.txz d9af29416618a3ac6100376dccfd54172e5bec90ffd96e78e9c383bedd7f4f42 81510 src "System source tree" off +tests.txz b4ef7b4de67d7e3f482e22c3a92016796e2b6351b9debef6c1013b5c9ceea0ca 4138 tests "Test suite" off Modified: branches/2019Q2/misc/freebsd-release-manifests/pkg-plist ============================================================================== --- branches/2019Q2/misc/freebsd-release-manifests/pkg-plist Fri Jun 21 19:54:03 2019 (r504809) +++ branches/2019Q2/misc/freebsd-release-manifests/pkg-plist Fri Jun 21 19:54:58 2019 (r504810) @@ -75,9 +75,9 @@ %%DATADIR%%/MANIFESTS/powerpc-powerpc64-12.0-RELEASE %%DATADIR%%/MANIFESTS/powerpc-powerpcspe-12.0-RELEASE %%DATADIR%%/MANIFESTS/sparc64-sparc64-12.0-RELEASE -%%DATADIR%%/MANIFESTS/amd64-amd64-11.3-RC1 -%%DATADIR%%/MANIFESTS/arm64-aarch64-11.3-RC1 -%%DATADIR%%/MANIFESTS/i386-i386-11.3-RC1 -%%DATADIR%%/MANIFESTS/powerpc-powerpc-11.3-RC1 -%%DATADIR%%/MANIFESTS/powerpc-powerpc64-11.3-RC1 -%%DATADIR%%/MANIFESTS/sparc64-sparc64-11.3-RC1 +%%DATADIR%%/MANIFESTS/amd64-amd64-11.3-RC2 +%%DATADIR%%/MANIFESTS/arm64-aarch64-11.3-RC2 +%%DATADIR%%/MANIFESTS/i386-i386-11.3-RC2 +%%DATADIR%%/MANIFESTS/powerpc-powerpc-11.3-RC2 +%%DATADIR%%/MANIFESTS/powerpc-powerpc64-11.3-RC2 +%%DATADIR%%/MANIFESTS/sparc64-sparc64-11.3-RC2 From owner-svn-ports-all@freebsd.org Fri Jun 21 20:06:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC89115BDDFA; Fri, 21 Jun 2019 20:06:18 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8256876E26; Fri, 21 Jun 2019 20:06:18 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 58C7F37; Fri, 21 Jun 2019 20:06:18 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LK6IrL066844; Fri, 21 Jun 2019 20:06:18 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LK6ITT066843; Fri, 21 Jun 2019 20:06:18 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906212006.x5LK6ITT066843@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 21 Jun 2019 20:06:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504811 - head/net/tcpkali X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/net/tcpkali X-SVN-Commit-Revision: 504811 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8256876E26 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 20:06:19 -0000 Author: linimon Date: Fri Jun 21 20:06:17 2019 New Revision: 504811 URL: https://svnweb.freebsd.org/changeset/ports/504811 Log: Change from ONLY_FOR_ARCHS to BROKEN based on CHOSEN_COMPILER_TYPE. Reported by: jbeich Approved by: portmgr (tier-2 blanket) Modified: head/net/tcpkali/Makefile Modified: head/net/tcpkali/Makefile ============================================================================== --- head/net/tcpkali/Makefile Fri Jun 21 19:54:58 2019 (r504810) +++ head/net/tcpkali/Makefile Fri Jun 21 20:06:17 2019 (r504811) @@ -11,11 +11,8 @@ COMMENT= High performance load generator for TCP and W LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -ONLY_FOR_ARCHS= amd64 i386 -ONLY_FOR_ARCHS_REASON= src/tcpkali_atomic.h unconditionally includes x86 assembler - GNU_CONFIGURE= yes -USES= autoreconf libtool gmake ncurses +USES= autoreconf compiler libtool gmake ncurses USE_GITHUB= yes GH_ACCOUNT= machinezone @@ -27,4 +24,10 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 -.include +.include + +.if ${CHOSEN_COMPILER_TYPE} == gcc +BROKEN= src/tcpkali_atomic.h unconditionally includes x86 assembler +.endif + +.include From owner-svn-ports-all@freebsd.org Fri Jun 21 20:10:38 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5EC5115BDFD1; Fri, 21 Jun 2019 20:10:38 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0F5A47721B; Fri, 21 Jun 2019 20:10:38 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DE8F53E; Fri, 21 Jun 2019 20:10:37 +0000 (UTC) (envelope-from philip@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LKAbI5067602; Fri, 21 Jun 2019 20:10:37 GMT (envelope-from philip@FreeBSD.org) Received: (from philip@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LKAa6J067592; Fri, 21 Jun 2019 20:10:36 GMT (envelope-from philip@FreeBSD.org) Message-Id: <201906212010.x5LKAa6J067592@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: philip set sender to philip@FreeBSD.org using -f From: Philip Paeps Date: Fri, 21 Jun 2019 20:10:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504812 - in head/www/cliqz: . files X-SVN-Group: ports-head X-SVN-Commit-Author: philip X-SVN-Commit-Paths: in head/www/cliqz: . files X-SVN-Commit-Revision: 504812 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 0F5A47721B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 20:10:38 -0000 Author: philip Date: Fri Jun 21 20:10:36 2019 New Revision: 504812 URL: https://svnweb.freebsd.org/changeset/ports/504812 Log: www/cliqz: update to 1.27.3 PR: 238410 Submitted by: Santhosh Raju (maintainer) Added: head/www/cliqz/files/patch-bug1559213 (contents, props changed) Deleted: head/www/cliqz/files/patch-bug1513605 head/www/cliqz/files/patch-magic__build__and__package.sh Modified: head/www/cliqz/Makefile head/www/cliqz/distinfo head/www/cliqz/files/patch-bug1530098 head/www/cliqz/files/patch-cliqz__env.sh head/www/cliqz/files/patch-mozilla-release_browser_config_cliqz.mozconfig head/www/cliqz/files/patch-mozilla-release_config_rules.mk Modified: head/www/cliqz/Makefile ============================================================================== --- head/www/cliqz/Makefile Fri Jun 21 20:06:17 2019 (r504811) +++ head/www/cliqz/Makefile Fri Jun 21 20:10:36 2019 (r504812) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= cliqz -DISTVERSION= 1.26.5 -PORTREVISION= 1 +DISTVERSION= 1.27.3 CATEGORIES= www MASTER_SITES= https://s3.amazonaws.com/cdn.cliqz.com/browser-f/APT/:amazon \ http://repository.cliqz.com/dist/${CLIQZ_CHANNEL}/${DISTVERSION}/${CLIQZ_LAST_BUILD_ID}/:cliqz @@ -38,6 +37,7 @@ BUILD_DEPENDS= autoconf-2.13:devel/autoconf213 \ libvpx>=1.5.0:multimedia/libvpx \ ${LOCALBASE}/libdata/pkgconfig/xt.pc:x11-toolkits/libXt \ llvm${LLVM_DEFAULT}>=0:devel/llvm${LLVM_DEFAULT} \ + nasm:devel/nasm \ node:www/node \ nspr>=4.19:devel/nspr \ nss>=3.39:security/nss \ @@ -52,7 +52,7 @@ BUILD_DEPENDS= autoconf-2.13:devel/autoconf213 \ zip:archivers/zip USES= tar:xz gmake pkgconfig gnome python desktop-file-utils \ - compiler:c11 + compiler:c11 shebangfix USE_GNOME= gconf2 gtk20 gtk30 cairo gdkpixbuf2 @@ -65,16 +65,21 @@ GH_PROJECT= browser-f USE_LDCONFIG= yes +bash_OLD_CMD= "/bin/bash" +bash_CMD= ${LOCALBASE}/bin/bash +SHEBANG_FILES= magic_build_and_package.sh + CLIQZ_CHANNEL= release # If the DISTVERSION is updated, make sure to update the last build id from # fetch -qo - https://repository.cliqz.com/dist/${CLIQZ_CHANNEL}/${DISTVERSION}/lastbuildid -CLIQZ_LAST_BUILD_ID= 20190507112044 +CLIQZ_LAST_BUILD_ID= 20190619154110 CLIQZ_ICON= ${PORTNAME}.png CLIQZ_ICON_SRC= ${WRKSRC}/mozilla-release/browser/branding/${PORTNAME}/default48.png MOZ_DESKTOP= ${WRKSRC}/mozilla-release/toolkit/mozapps/installer/linux/rpm/mozilla.desktop CLIQZ_DESKTOP= ${WRKSRC}/mozilla-release/toolkit/mozapps/installer/linux/rpm/cliqz.desktop MAKE_ENV+= LLVM_CONFIG=llvm-config${LLVM_DEFAULT} +MAKE_ENV+= LLVM_OBJDUMP=${LOCALBASE}/llvm${LLVM_DEFAULT}/bin/llvm-objdump MAKE_ENV+= CQZ_RELEASE_CHANNEL=${CLIQZ_CHANNEL} MAKE_ENV+= CQZ_BUILD_ID=${CLIQZ_LAST_BUILD_ID} MAKE_ENV+= MOZBUILD_STATE_PATH=${WRKDIR} Modified: head/www/cliqz/distinfo ============================================================================== --- head/www/cliqz/distinfo Fri Jun 21 20:06:17 2019 (r504811) +++ head/www/cliqz/distinfo Fri Jun 21 20:10:36 2019 (r504812) @@ -1,11 +1,11 @@ -TIMESTAMP = 1557741342 +TIMESTAMP = 1561117153 SHA256 (adult-domains.bin) = 3d018d6ffa75107fdfbf39658e4adaa092d9b8a90c7865b21376855f7c382b65 SIZE (adult-domains.bin) = 528392 -SHA256 (cliqz@cliqz.com.xpi) = a1851a71d377c3a5b96b0bc4c40534c5b5a8de48b8d2736a269b7a9e0f1f9d6c -SIZE (cliqz@cliqz.com.xpi) = 5945491 +SHA256 (cliqz@cliqz.com.xpi) = 4f26c79891666ff3e4ff73a88cec7dbbdb12edfa0ae7fccdf9bfde1dbb65da85 +SIZE (cliqz@cliqz.com.xpi) = 6032238 SHA256 (https-everywhere@cliqz.com.xpi) = 92d43d3c7313bd890cb8ded3229aa1814ca3ebaec1b74bb317154a823b35355b SIZE (https-everywhere@cliqz.com.xpi) = 1765469 SHA256 (gdprtool@cliqz.com.xpi) = 1b07623b967694ca0bf45a2f88c52317f90bda1436633800cf4d02b3de54fb76 SIZE (gdprtool@cliqz.com.xpi) = 222806 -SHA256 (cliqz-oss-browser-f-1.26.5_GH0.tar.gz) = 934c24e74bd601a3a276e82a2e4bcd8faecde34997fc4f1b160dd3a0efb0cea2 -SIZE (cliqz-oss-browser-f-1.26.5_GH0.tar.gz) = 424892305 +SHA256 (cliqz-oss-browser-f-1.27.3_GH0.tar.gz) = 8c27ddc2f2d449562795aff47cf07bb1b0ded6dcb1a3bd22d58a2597e8178b7c +SIZE (cliqz-oss-browser-f-1.27.3_GH0.tar.gz) = 428383027 Modified: head/www/cliqz/files/patch-bug1530098 ============================================================================== --- head/www/cliqz/files/patch-bug1530098 Fri Jun 21 20:06:17 2019 (r504811) +++ head/www/cliqz/files/patch-bug1530098 Fri Jun 21 20:10:36 2019 (r504812) @@ -3,50 +3,41 @@ https://github.com/rust-lang/libc/commit/e628de2d7d40 https://github.com/rust-lang/libc/commit/6c1e2dec8f2b https://github.com/rust-lang/libc/commit/69c9c541f76c -diff --git third_party/rust/libc/.cargo-checksum.json third_party/rust/libc/.cargo-checksum.json -index 587d7582bc89..7cdb11ee2d6b 100644 ---- mozilla-release/third_party/rust/libc/.cargo-checksum.json +--- mozilla-release/third_party/rust/libc/.cargo-checksum.json.orig 2019-05-29 12:52:42 UTC +++ mozilla-release/third_party/rust/libc/.cargo-checksum.json @@ -1 +1 @@ -{"files":{"Cargo.toml":"74e837a30336b387d94fc92db3d1ece407b47318ca1362a2b8f37dfb28064e54","LICENSE-APACHE":"a60eea817514531668d7e00765731449fe14d059d3249e0bc93b36de45f759f2","LICENSE-MIT":"6485b8ed310d3f0340bf1ad1f47645069ce4069dcc6bb46c7d5c6faf41de1fdb","README.md":"a550fd6c92b62c70925cc6a75dd1d40ae93f9a77e3c4e9baacdf014fa0cae550","appveyor.yml":"216f7ac4561aa5810dc84ce5a9950897a8c0496e0615d0211d62348b1c8dc720","ci/README.md":"2e3d7ad13f8c3202e57d2af73aeeebde306221dce7c0907e462e25767a692d6b","ci/android-install-ndk.sh":"725db9025c5905849916bf7c910f98ff0e753484397c2a1f836d48a576d10890","ci/android-install-sdk.sh":"5c3fbe402ac611239ac7715a61f247d1c55fa012f33a5be0b0127dfc196965cf","ci/android-sysimage.sh":"901415631752827454c827e8c51906ba4260612e4021eda98eb7fff771c7d0e8","ci/docker/aarch64-linux-android/Dockerfile":"e17945fba1786dfe766006f50e79baf3f4151ca0c0c14ae96f91483bf345afd7","ci/docker/aarch64-unknown-linux-gnu/Dockerfile":"5f430271941e1eecdf9d1a5fb701dd5622e2c4b9da03140fd829bf 216e55529d","ci/docker/aarch64-unknown-linux-musl/Dockerfile":"1e8c66067bcbd718119db5eb6e69390c4f0ea72c1543e09b6846a36ef66cd21b","ci/docker/arm-linux-androideabi/Dockerfile":"4e0bdc13254f99bd0db195f91331c634050426e3e4a0fcc63ef25ab795fe2d46","ci/docker/arm-unknown-linux-gnueabihf/Dockerfile":"dbb025b53b27e406893184290836a50133ecae8295711d5e05b4e41fac9bd262","ci/docker/arm-unknown-linux-musleabihf/Dockerfile":"12b50abdc5605e3a39eff6bb0d0fccb0885896933c5bfbb3d0cbde9068492a0f","ci/docker/asmjs-unknown-emscripten/Dockerfile":"0d9aea5119c2cd136cc2c0a578105d91210e45901ac49b17c5e45f458b1c7551","ci/docker/i686-linux-android/Dockerfile":"4e8377ec0bd9ad2df23bf2c5373200a12750dc9f28c4f10bc83a0150fe1623ee","ci/docker/i686-unknown-linux-gnu/Dockerfile":"f22ac412525ef15b33ab8ccd8193d97346faf421c17f6ddeffc25b651aba83b7","ci/docker/i686-unknown-linux-musl/Dockerfile":"f95cd8b514f48686d774b85e4dffccce1a5acd68749d8ff59b204419d448d575","ci/docker/mips-unknown-linux-gnu/Dockerfile":"6d2a9daa299003497c1d4 41d07b69f730ad75ee49f34520f959b5158e60072e0"! ,"ci/docker/mips-unknown-linux-musl/Dockerfile":"4773b2656a7dd6a3b106fcb737428436652edf3d1f48181de3f62c16bf5bd49d","ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile":"7c4d26232f1c1553a6612d9b0b3faac9887e139eaffa025f70d34113dcee812f","ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile":"edb4144c07ade1a8bd65272ec1d3672ad794e9e6b7d01197896e159a70175b58","ci/docker/mipsel-unknown-linux-musl/Dockerfile":"0ca9c12b5618c6d2df04ff820d56fb28e05b43e45eaa506480126b03c5072d48","ci/docker/powerpc-unknown-linux-gnu/Dockerfile":"4b247dcc399395815ec9153c1247cc03d764896c484eddcb196d0bf8650d6311","ci/docker/powerpc64-unknown-linux-gnu/Dockerfile":"e949717a8ba5e123940729ff47ce1c45989c8b8247c576f1488f698b534e0283","ci/docker/powerpc64le-unknown-linux-gnu/Dockerfile":"018591017f499414a9f79477e1c39baa6a47f71fce6812fb1868fb0fcdfb8cea","ci/docker/s390x-unknown-linux-gnu/Dockerfile":"9860f478c5b2dc3bcf76d2cda7f71922a2a2ef54898cc2ed6ea9b9eff094a5c0","ci/docker/sparc64-unknown-linux-gnu/Dockerfile":"1471a6 94817758331ecdbb23857537563ad7ae56aa3a88e49bf9cd421addcafe","ci/docker/wasm32-unknown-emscripten/Dockerfile":"bd072d6ae91a9160693e402dd77462d3c9dd0716711e719a62af330ae479eb4e","ci/docker/wasm32-unknown-emscripten/node-wrapper.sh":"0eef37c3c4fb16dbc083148b7e7af45f2ae60bd9a1b3a77e1d43da79efbd30c6","ci/docker/x86_64-linux-android/Dockerfile":"aeeaa540189ca712369c564c9a14cbace63217dadcfaf879a2cb40fbdeb08199","ci/docker/x86_64-rumprun-netbsd/Dockerfile":"e8f9287b267c6058eec42d1bca0007cb9a78a1d244dd8e11088368cb61fb17d6","ci/docker/x86_64-rumprun-netbsd/runtest.rs":"53302e9ed39293c1ec68ab56287593907d4aaf5bac9c1c2857b29f754a71d62b","ci/docker/x86_64-unknown-freebsd/Dockerfile":"ab1f14c65c29f3721c7c091bdec2e865fb1abf45fdcdc867201d087966e396c4","ci/docker/x86_64-unknown-linux-gnu/Dockerfile":"ab3fa45765802b8155996796fcad9fb82096360ac587e38e6faa3ec345268796","ci/docker/x86_64-unknown-linux-gnux32/Dockerfile":"f22ac412525ef15b33ab8ccd8193d97346faf421c17f6ddeffc25b651aba83b7","ci/docker/x86_64-u nknown-linux-musl/Dockerfile":"0c31058e39d9f! 25c6f4f9b! 7fe78c7c8d135f32bfe52199e9b2e7fa10d5dc3940","ci/dox.sh":"d77171a9da467bb01fc702a28fc3b5099f82a485a627f3d5593a9830c3e1a77c","ci/emscripten-entry.sh":"c97bbec520b57af9b1ae264ca991560e99c3852c99b00a2f673c614d1ba17498","ci/emscripten.sh":"6f66c7b5c3d34a41afc59ceb0a8c3b0880cd6fd9a6344b874ae80bac0639ccb2","ci/ios/deploy_and_run_on_ios_simulator.rs":"be6d2ccfe78df5d77a2c4ee40ffbd22b1bb2ac0a0cf6b2a108f21406f22ce1a8","ci/landing-page-footer.html":"b70b3112c2147f5c967e7481061ef38bc2d79a28dd55a16fb916d9c9426da2c4","ci/landing-page-head.html":"ad69663fac7924f27d0209bc519d55838e86edfc4133713a6fd08caadac1b142","ci/linux-s390x.sh":"d6b732d7795b4ba131326aff893bca6228a7d2eb0e9402f135705413dbbe0dce","ci/linux-sparc64.sh":"c92966838b1ab7ad3b7a344833ee726aba6b647cf5952e56f0ad1ba420b13325","ci/run-docker.sh":"be83bc5a8b5ef913a7c9941ffca24734716028650c9a876123c4c160672c18de","ci/run-qemu.sh":"bb859421170871ef23a8940c5e150efec0c01b95e32d2ce2d37b79a45d9d346c","ci/run.sh":"86b7d1ce555ed5eeeac6b44fd0e9563166 ff38ba38e56a82d70800ace3b65946","ci/runtest-android.rs":"a07ddbdd276aedda7876c7e676774178a60d9aeab95df01275a4ee95f59e3044","ci/style.rs":"940c06a676cff1dfc1555b887e46867c6aacc473956cd6aaafaed71824facdb2","ci/test-runner-linux":"cb3713d9e4fa1d9a7c039dfd077af0939921c1f2bf969c9e680ee66e87dc30a4","src/cloudabi/aarch64.rs":"b8550bf1fd7344972aa4db29441486f39f31482d0327534981dbb75959c29114","src/cloudabi/arm.rs":"c197e2781c2839808bd6fcef219a29705b27b992d3ef920e9cf6ac96e2022bbf","src/cloudabi/mod.rs":"1c2dc787a1b3438970ccd04153c93538719b1a27445707913b90b6f0cdcdde77","src/cloudabi/x86.rs":"33eb97f272d2201f3838ae74d444583c7de8f67856852ca375293b20bbd05636","src/cloudabi/x86_64.rs":"400d85d4fe39e26cf2e6ece9ee31c75fe9e88c4bcf4d836ca9f765c05c9c5be3","src/dox.rs":"8f6037887281b828d8541ce8a549dacaed5d29c05fd9cf78b169838476b82741","src/fuchsia/aarch64.rs":"8366ac6f51e494aad9266ccab2b3a95c5ed7aa3a9f77ea672413283440919743","src/fuchsia/mod.rs":"e5b7e6ff40e670200c52919b53474627931b4def18d452323999de201 953cf21","src/fuchsia/powerpc64.rs":"390e8db! 54271a1d5! f512d54a21b328091a792378bf9b42b49b6c1a72388da4ec","src/fuchsia/x86_64.rs":"b4a3eff94dcf1ffe41e6500468ca2cff0e97ddbcc75fe079b6ac7adb1e493f56","src/lib.rs":"bbad6abf79078649e76c2379c3c3fcbc4198430736e726a01d96a8f1439e8cb1","src/macros.rs":"8ad55edea39fad158e80c5df0d7b520b6863f5088db4db286ba31c12cbc4d67d","src/redox/mod.rs":"685d4d39911e855bf0fd7879b9a02bc15cefebfb0f520382c1a1353364f0d523","src/redox/net.rs":"f2e1922883f208cb46c00744da4a68feccfbec576c6981978ad404e46f818c8b","src/unix/bsd/apple/b32.rs":"41699d2802327b0a4d4aa50cd20b1e366b442176cbedab27ca888ac0446c9156","src/unix/bsd/apple/b64.rs":"0cda592881a1db30f2d96ff0f67cf4214aa99881dfe4f2fb474ef7ec78bd204a","src/unix/bsd/apple/mod.rs":"ac02092ad74cb81fa789e89d541d79525d2298ac77842847b48e5fd1a83fff0d","src/unix/bsd/freebsdlike/dragonfly/mod.rs":"7a8df4e8079ed60ad4ac35362901eb2fea4d53384709e4ac45930899b84f8eaf","src/unix/bsd/freebsdlike/freebsd/aarch64.rs":"97132e2097411034271b8c927ecc94a208a361564680972a6c82998bd30a9826","src/unix/bs d/freebsdlike/freebsd/mod.rs":"1b158199be42b37708f10d0e73164cf0b63a2b5ae0e6fcc1feab5944f5377f24","src/unix/bsd/freebsdlike/freebsd/x86.rs":"54311d3ebf2bb091ab22361e377e6ef9224aec2ecfe459fbfcedde4932db9c58","src/unix/bsd/freebsdlike/freebsd/x86_64.rs":"97132e2097411034271b8c927ecc94a208a361564680972a6c82998bd30a9826","src/unix/bsd/freebsdlike/mod.rs":"9ddcc86d3bb76f426e26c4df8d853b3715a7d6d9006acaa4fa26b2b0f5bb3314","src/unix/bsd/mod.rs":"a1030452eed4ec52a39e9f39040e8fae4309143c7af145efadd9b425caa39672","src/unix/bsd/netbsdlike/mod.rs":"6fb522d55eced39ef1bc28873f9ae8d5ab141acde09c5cb6a22aeca577d916ad","src/unix/bsd/netbsdlike/netbsd/mod.rs":"1cd66ed5967c788562d4ad626cfbeb1544f4b9267111de5f6790379b8327f28e","src/unix/bsd/netbsdlike/netbsd/other/b32/mod.rs":"bd251a102bed65d5cb3459275f6ec3310fe5803ff4c9651212115548f86256d0","src/unix/bsd/netbsdlike/netbsd/other/b64/mod.rs":"927eeccaf3269d299db4c2a55f8010807bf43dfa894aea6a783215f5d3560baa","src/unix/bsd/netbsdlike/netbsd/other/mod.rs":"4 d9f7091af8e166943ac6f42ce85558909e5b6e613250! 39bff7adf! bcf4b90212","src/unix/bsd/netbsdlike/openbsdlike/bitrig/mod.rs":"92459d80b8e5b570c0efe35a1d244d38f23072cd28b6581dfcb313dc9bfc3d51","src/unix/bsd/netbsdlike/openbsdlike/bitrig/x86.rs":"bd251a102bed65d5cb3459275f6ec3310fe5803ff4c9651212115548f86256d0","src/unix/bsd/netbsdlike/openbsdlike/bitrig/x86_64.rs":"927eeccaf3269d299db4c2a55f8010807bf43dfa894aea6a783215f5d3560baa","src/unix/bsd/netbsdlike/openbsdlike/mod.rs":"37fea61239bd53cd951fd7bc800229f663be2e9ad2e1539ebdf73767ca28b469","src/unix/bsd/netbsdlike/openbsdlike/openbsd/aarch64.rs":"820092e397c7ec259cd2de8f2444083a8e57071c02d73d678701dfa7807726e9","src/unix/bsd/netbsdlike/openbsdlike/openbsd/mod.rs":"973331fd80876db55467913556d81f45ea1ede03322fef9c5d552aba833d2207","src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86.rs":"44b7ea81cf363777b29935da175e702cbf45ed78f7498ae57faf44aa32335085","src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86_64.rs":"7c959cdb3415f68a0f948117b9aa87a17463e57ab97cc3235f2567454b706653","src/unix/haiku/b32.rs":"6 9ae47fc52c6880e85416b4744500d5655c9ec6131cb737f3b649fceaadce15a","src/unix/haiku/b64.rs":"73e64db09275a8da8d50a13cce2cfa2b136036ddf3a930d2939f337fc995900b","src/unix/haiku/mod.rs":"8b8a7a51e1bc20407e42b0ab6c1a0cd1c8fc4f3ef61a04ccb7c8e312495ce30b","src/unix/hermit/aarch64.rs":"86048676e335944c37a63d0083d0f368ae10ceccefeed9debb3bbe08777fc682","src/unix/hermit/mod.rs":"a8bb096695eea74fb1c5c6766c1e680d28378c452dbc622fa5f91c6ce204306f","src/unix/hermit/x86_64.rs":"ab832b7524e5fb15c49ff7431165ab1a37dc4667ae0b58e8306f4c539bfa110c","src/unix/mod.rs":"af909129f76f9bbe571dee2e78f43afd63ff6e46c27a429da43c239537330283","src/unix/newlib/aarch64/mod.rs":"c408a990f22fb4292a824f38367e9b517e6e6f8623328397ee631cc88b3d1f7d","src/unix/newlib/arm/mod.rs":"2b6dba2e697ab9b4f4bc4dd5f28057249e9b596d1cb395a9322ec87605c4a5c4","src/unix/newlib/mod.rs":"d9f59ee9a994490122986b7ae5e3064bf9ce0b888349a388a50341a4c7069842","src/unix/notbsd/android/b32/arm.rs":"3625a32c7e58cfe683a53486fbe3d42d4e28f00bea31e19cb46ed2bb 0b6a140b","src/unix/notbsd/android/b32/mod.r! s":"2fbe3! 98c1fb5251dda6213741a193e50aae4622807cb255d1dd2e82b536f0c65","src/unix/notbsd/android/b32/x86.rs":"ae2b7f1d6278caddc007749bb1d09ca33f7593478a0fd7fe98b457dae86c7814","src/unix/notbsd/android/b64/aarch64.rs":"63d65629d79371814910f691672ef593d20244ee09be26f1ebe07ee6212d0163","src/unix/notbsd/android/b64/mod.rs":"90d4f6b063fd4de42fd302cbc9d9902fd99ac1d71dc48cb8bc6ad7b4c902e481","src/unix/notbsd/android/b64/x86_64.rs":"5547aef8dcbaa5a932559f34606fd8d89f6c9c15173d2b1412c12d39b3c1045f","src/unix/notbsd/android/mod.rs":"eadc87bfea5f5e8ea50a3776b526cea2b0bfaf6d55240ba88134e19670f8a3a6","src/unix/notbsd/emscripten.rs":"d2d817af2b1496c1ee173f216c478a3a1c26223ef938797103bc50a265284662","src/unix/notbsd/linux/mips/mips32.rs":"a483ddfd10765b7d5090dc21686eee8842649cd21236828a42d634114885f5f9","src/unix/notbsd/linux/mips/mips64.rs":"9fff696e3943cf206b549d1ae13fa361828e9a8454e2d5730eeaa1c172ff370d","src/unix/notbsd/linux/mips/mod.rs":"af1b7bffff09aa5d8662e6452f72bc1e55b6639899b8c2a4be9cd1cfb245de01" ,"src/unix/notbsd/linux/mod.rs":"081cb74be8b465c9cf86289f675cb7c6f7d7eee39713a6764e1871eabcbaee44","src/unix/notbsd/linux/musl/b32/arm.rs":"9d9bff31ab0925a1f62a20945d36a83b94ce3ab78dd202cd468bb31556b21725","src/unix/notbsd/linux/musl/b32/mips.rs":"cb38c463aebfc235f31880db158dd47c6e21f182a092d3f3087d92994b7711da","src/unix/notbsd/linux/musl/b32/mod.rs":"540928f168f145c136f9dd729ffa12b9d1838d9fe664fc642365d17d7fae648f","src/unix/notbsd/linux/musl/b32/powerpc.rs":"3930a2825657ac9208935341e29cfa62f6e37fc5c6b2c0d0dc9ac8c3b5569d59","src/unix/notbsd/linux/musl/b32/x86.rs":"c02dd333012cf65cb8873fa211eff5e63d466be55451a347510e3d4f50ed515e","src/unix/notbsd/linux/musl/b64/aarch64.rs":"4d79d86d11fbb8cb7a74084e410a1140e3c89dfc1842cdfb213f3a0ca93046df","src/unix/notbsd/linux/musl/b64/mod.rs":"caac00326693b372d6805e4dda239475e7fef36368881f372c006264844fda0d","src/unix/notbsd/linux/musl/b64/powerpc64.rs":"24514e41be4b5f5e0ffbe8a25a99dae8989489b607db59e8bfa345f8e65c9963","src/unix/notbsd/linux/musl /b64/x86_64.rs":"25340999290a63d564ec149532c! 905f59c31! 2ec369f8806d6b15df66fa1b8857","src/unix/notbsd/linux/musl/mod.rs":"17c70acf9c6eabeb73916c2abb7d7e8b0310214090faae4a8dc2fd183a9b45ba","src/unix/notbsd/linux/other/b32/arm.rs":"d9892f7350b2978335f734f1cd2d7fed60f0f2e66aa05bee3f69549c031f8b14","src/unix/notbsd/linux/other/b32/mod.rs":"dac0fd1054a0fa163bce85df58c4ad4d222d8b7353bdb4364482b46c19991d03","src/unix/notbsd/linux/other/b32/powerpc.rs":"253fcd2f9978525285be1903cc08f3fec2dc3b12d1660a33e2995b4f6b810d1c","src/unix/notbsd/linux/other/b32/x86.rs":"49376e3ed0f3ff95c230ac20751911fe3c608dfe15c7c118b069fd7a954d8db9","src/unix/notbsd/linux/other/b64/aarch64.rs":"d57f3e06a0ac8affc5bf9d17e1f217ef1d1d714c947f47e647e0e038deaf48b2","src/unix/notbsd/linux/other/b64/mod.rs":"63e1a3fdf5f4d1b9820934ab344c91aed5e458e7e05908535d2e942d51a08bf8","src/unix/notbsd/linux/other/b64/not_x32.rs":"fa8636fb93eab230ed53bdec0a06f5b81d6d982cc0800103563c8c1eefcdb2d9","src/unix/notbsd/linux/other/b64/powerpc64.rs":"024057a910d0b885c63443165d34ce33f972973a9a8f5979 906198180b19ad8b","src/unix/notbsd/linux/other/b64/sparc64.rs":"bb28f201e29c7f490a42dd2673eb8180fd82c1824a5d21aeb5aed674ffcc6e07","src/unix/notbsd/linux/other/b64/x32.rs":"06a26c5120ced30fc015c220799b67c4401be2f13fc6c7361bebd3d37ff4982d","src/unix/notbsd/linux/other/b64/x86_64.rs":"afba464e903d350325a1ca3d9d5af1659efc0ede83a43dbac4dbd60c522e2ad1","src/unix/notbsd/linux/other/mod.rs":"add154a8cfe9392d5a73b6055eb1419902e2b8b5458c22586a6ef8f90f89501b","src/unix/notbsd/linux/s390x.rs":"033cb7c4ee00af352698615de0248a5c6c9bcff57ba671ee22d31b70ef86fb4a","src/unix/notbsd/mod.rs":"134502158bab09d5189249ef400c9ddf7fdf5d1a1bd3134484ca82b80a0833e7","src/unix/solaris/mod.rs":"9c52a7479b56d3bc1f2c9ba5bb44f71ab1470989a54d3d0d85571e19489e4b7e","src/unix/uclibc/mips/mips32.rs":"9739c5fb47f389a0394ef08ee30da97a3de0a1300020731a8cc0a033616011b2","src/unix/uclibc/mips/mips64.rs":"230583280bbc7b3c7fcdb61244f51fa1af5944ca127c7cf83c598fe2313713d0","src/unix/uclibc/mips/mod.rs":"3f86061d05a8da7d923310550b7d 40c6223f0c907d77edc86b7a78da1d647f76","src/u! nix/uclib! c/mod.rs":"8cf2db30468476b917a60fdffe475917302875a3a4150f29a042ebee182545d1","src/unix/uclibc/x86_64/l4re.rs":"68fd3a833fd1f7caf784a084224f384bdbdfb8b5a14ef94c4f5155409afb3439","src/unix/uclibc/x86_64/mod.rs":"419182836aedd426a5c9e6b8667058adf86ac8f43af73ce8d00c503f8ff8f414","src/unix/uclibc/x86_64/other.rs":"f03b47842896f2f3ae6f8ebdcbcf0276454f880349d9cf00e3d304f8136893c5","src/windows.rs":"e41357d610608bad81abf285306ad8b127b6f02d5132f63c4942861980b47d59"},"package":"76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d"} \ No newline at end of file +{"files":{"Cargo.toml":"74e837a30336b387d94fc92db3d1ece407b47318ca1362a2b8f37dfb28064e54","LICENSE-APACHE":"a60eea817514531668d7e00765731449fe14d059d3249e0bc93b36de45f759f2","LICENSE-MIT":"6485b8ed310d3f0340bf1ad1f47645069ce4069dcc6bb46c7d5c6faf41de1fdb","README.md":"a550fd6c92b62c70925cc6a75dd1d40ae93f9a77e3c4e9baacdf014fa0cae550","appveyor.yml":"216f7ac4561aa5810dc84ce5a9950897a8c0496e0615d0211d62348b1c8dc720","ci/README.md":"2e3d7ad13f8c3202e57d2af73aeeebde306221dce7c0907e462e25767a692d6b","ci/android-install-ndk.sh":"725db9025c5905849916bf7c910f98ff0e753484397c2a1f836d48a576d10890","ci/android-install-sdk.sh":"5c3fbe402ac611239ac7715a61f247d1c55fa012f33a5be0b0127dfc196965cf","ci/android-sysimage.sh":"901415631752827454c827e8c51906ba4260612e4021eda98eb7fff771c7d0e8","ci/docker/aarch64-linux-android/Dockerfile":"e17945fba1786dfe766006f50e79baf3f4151ca0c0c14ae96f91483bf345afd7","ci/docker/aarch64-unknown-linux-gnu/Dockerfile":"5f430271941e1eecdf9d1a5fb701dd5622e2c4b9da03140fd829bf 216e55529d","ci/docker/aarch64-unknown-linux-musl/Dockerfile":"1e8c66067bcbd718119db5eb6e69390c4f0ea72c1543e09b6846a36ef66cd21b","ci/docker/arm-linux-androideabi/Dockerfile":"4e0bdc13254f99bd0db195f91331c634050426e3e4a0fcc63ef25ab795fe2d46","ci/docker/arm-unknown-linux-gnueabihf/Dockerfile":"dbb025b53b27e406893184290836a50133ecae8295711d5e05b4e41fac9bd262","ci/docker/arm-unknown-linux-musleabihf/Dockerfile":"12b50abdc5605e3a39eff6bb0d0fccb0885896933c5bfbb3d0cbde9068492a0f","ci/docker/asmjs-unknown-emscripten/Dockerfile":"0d9aea5119c2cd136cc2c0a578105d91210e45901ac49b17c5e45f458b1c7551","ci/docker/i686-linux-android/Dockerfile":"4e8377ec0bd9ad2df23bf2c5373200a12750dc9f28c4f10bc83a0150fe1623ee","ci/docker/i686-unknown-linux-gnu/Dockerfile":"f22ac412525ef15b33ab8ccd8193d97346faf421c17f6ddeffc25b651aba83b7","ci/docker/i686-unknown-linux-musl/Dockerfile":"f95cd8b514f48686d774b85e4dffccce1a5acd68749d8ff59b204419d448d575","ci/docker/mips-unknown-linux-gnu/Dockerfile":"6d2a9daa299003497c1d4 41d07b69f730ad75ee49f34520f959b5158e60072e0"! ,"ci/docker/mips-unknown-linux-musl/Dockerfile":"4773b2656a7dd6a3b106fcb737428436652edf3d1f48181de3f62c16bf5bd49d","ci/docker/mips64-unknown-linux-gnuabi64/Dockerfile":"7c4d26232f1c1553a6612d9b0b3faac9887e139eaffa025f70d34113dcee812f","ci/docker/mips64el-unknown-linux-gnuabi64/Dockerfile":"edb4144c07ade1a8bd65272ec1d3672ad794e9e6b7d01197896e159a70175b58","ci/docker/mipsel-unknown-linux-musl/Dockerfile":"0ca9c12b5618c6d2df04ff820d56fb28e05b43e45eaa506480126b03c5072d48","ci/docker/powerpc-unknown-linux-gnu/Dockerfile":"4b247dcc399395815ec9153c1247cc03d764896c484eddcb196d0bf8650d6311","ci/docker/powerpc64-unknown-linux-gnu/Dockerfile":"e949717a8ba5e123940729ff47ce1c45989c8b8247c576f1488f698b534e0283","ci/docker/powerpc64le-unknown-linux-gnu/Dockerfile":"018591017f499414a9f79477e1c39baa6a47f71fce6812fb1868fb0fcdfb8cea","ci/docker/s390x-unknown-linux-gnu/Dockerfile":"9860f478c5b2dc3bcf76d2cda7f71922a2a2ef54898cc2ed6ea9b9eff094a5c0","ci/docker/sparc64-unknown-linux-gnu/Dockerfile":"1471a6 94817758331ecdbb23857537563ad7ae56aa3a88e49bf9cd421addcafe","ci/docker/wasm32-unknown-emscripten/Dockerfile":"bd072d6ae91a9160693e402dd77462d3c9dd0716711e719a62af330ae479eb4e","ci/docker/wasm32-unknown-emscripten/node-wrapper.sh":"0eef37c3c4fb16dbc083148b7e7af45f2ae60bd9a1b3a77e1d43da79efbd30c6","ci/docker/x86_64-linux-android/Dockerfile":"aeeaa540189ca712369c564c9a14cbace63217dadcfaf879a2cb40fbdeb08199","ci/docker/x86_64-rumprun-netbsd/Dockerfile":"e8f9287b267c6058eec42d1bca0007cb9a78a1d244dd8e11088368cb61fb17d6","ci/docker/x86_64-rumprun-netbsd/runtest.rs":"53302e9ed39293c1ec68ab56287593907d4aaf5bac9c1c2857b29f754a71d62b","ci/docker/x86_64-unknown-freebsd/Dockerfile":"ab1f14c65c29f3721c7c091bdec2e865fb1abf45fdcdc867201d087966e396c4","ci/docker/x86_64-unknown-linux-gnu/Dockerfile":"ab3fa45765802b8155996796fcad9fb82096360ac587e38e6faa3ec345268796","ci/docker/x86_64-unknown-linux-gnux32/Dockerfile":"f22ac412525ef15b33ab8ccd8193d97346faf421c17f6ddeffc25b651aba83b7","ci/docker/x86_64-u nknown-linux-musl/Dockerfile":"0c31058e39d9f! 25c6f4f9b! 7fe78c7c8d135f32bfe52199e9b2e7fa10d5dc3940","ci/dox.sh":"d77171a9da467bb01fc702a28fc3b5099f82a485a627f3d5593a9830c3e1a77c","ci/emscripten-entry.sh":"c97bbec520b57af9b1ae264ca991560e99c3852c99b00a2f673c614d1ba17498","ci/emscripten.sh":"6f66c7b5c3d34a41afc59ceb0a8c3b0880cd6fd9a6344b874ae80bac0639ccb2","ci/ios/deploy_and_run_on_ios_simulator.rs":"be6d2ccfe78df5d77a2c4ee40ffbd22b1bb2ac0a0cf6b2a108f21406f22ce1a8","ci/landing-page-footer.html":"b70b3112c2147f5c967e7481061ef38bc2d79a28dd55a16fb916d9c9426da2c4","ci/landing-page-head.html":"ad69663fac7924f27d0209bc519d55838e86edfc4133713a6fd08caadac1b142","ci/linux-s390x.sh":"d6b732d7795b4ba131326aff893bca6228a7d2eb0e9402f135705413dbbe0dce","ci/linux-sparc64.sh":"c92966838b1ab7ad3b7a344833ee726aba6b647cf5952e56f0ad1ba420b13325","ci/run-docker.sh":"be83bc5a8b5ef913a7c9941ffca24734716028650c9a876123c4c160672c18de","ci/run-qemu.sh":"bb859421170871ef23a8940c5e150efec0c01b95e32d2ce2d37b79a45d9d346c","ci/run.sh":"86b7d1ce555ed5eeeac6b44fd0e9563166 ff38ba38e56a82d70800ace3b65946","ci/runtest-android.rs":"a07ddbdd276aedda7876c7e676774178a60d9aeab95df01275a4ee95f59e3044","ci/style.rs":"940c06a676cff1dfc1555b887e46867c6aacc473956cd6aaafaed71824facdb2","ci/test-runner-linux":"cb3713d9e4fa1d9a7c039dfd077af0939921c1f2bf969c9e680ee66e87dc30a4","src/cloudabi/aarch64.rs":"b8550bf1fd7344972aa4db29441486f39f31482d0327534981dbb75959c29114","src/cloudabi/arm.rs":"c197e2781c2839808bd6fcef219a29705b27b992d3ef920e9cf6ac96e2022bbf","src/cloudabi/mod.rs":"1c2dc787a1b3438970ccd04153c93538719b1a27445707913b90b6f0cdcdde77","src/cloudabi/x86.rs":"33eb97f272d2201f3838ae74d444583c7de8f67856852ca375293b20bbd05636","src/cloudabi/x86_64.rs":"400d85d4fe39e26cf2e6ece9ee31c75fe9e88c4bcf4d836ca9f765c05c9c5be3","src/dox.rs":"8f6037887281b828d8541ce8a549dacaed5d29c05fd9cf78b169838476b82741","src/fuchsia/aarch64.rs":"8366ac6f51e494aad9266ccab2b3a95c5ed7aa3a9f77ea672413283440919743","src/fuchsia/mod.rs":"e5b7e6ff40e670200c52919b53474627931b4def18d452323999de201 953cf21","src/fuchsia/powerpc64.rs":"390e8db! 54271a1d5! f512d54a21b328091a792378bf9b42b49b6c1a72388da4ec","src/fuchsia/x86_64.rs":"b4a3eff94dcf1ffe41e6500468ca2cff0e97ddbcc75fe079b6ac7adb1e493f56","src/lib.rs":"bbad6abf79078649e76c2379c3c3fcbc4198430736e726a01d96a8f1439e8cb1","src/macros.rs":"8ad55edea39fad158e80c5df0d7b520b6863f5088db4db286ba31c12cbc4d67d","src/redox/mod.rs":"685d4d39911e855bf0fd7879b9a02bc15cefebfb0f520382c1a1353364f0d523","src/redox/net.rs":"f2e1922883f208cb46c00744da4a68feccfbec576c6981978ad404e46f818c8b","src/unix/bsd/apple/b32.rs":"41699d2802327b0a4d4aa50cd20b1e366b442176cbedab27ca888ac0446c9156","src/unix/bsd/apple/b64.rs":"0cda592881a1db30f2d96ff0f67cf4214aa99881dfe4f2fb474ef7ec78bd204a","src/unix/bsd/apple/mod.rs":"ac02092ad74cb81fa789e89d541d79525d2298ac77842847b48e5fd1a83fff0d","src/unix/bsd/freebsdlike/dragonfly/mod.rs":"9acb311f2f5acf8ce5d28ce60b3eef5715d8f92e25be9adb0c4c78fdb1eee090","src/unix/bsd/freebsdlike/freebsd/aarch64.rs":"8976c6416f5946876275abce890d66a16f4d8998aaec0a0fed74ed4eac98ec03","src/unix/bs d/freebsdlike/freebsd/arm.rs":"28f41704ad6ad9fac15b1480c4c31ca3a4d7e101e9a33a1ce8f89960d5f6501b","src/unix/bsd/freebsdlike/freebsd/mod.rs":"791b92bcfb2224a0631032cada52e20934a9b8509e8c4c9d32f5ba60d864f13b","src/unix/bsd/freebsdlike/freebsd/powerpc64.rs":"8976c6416f5946876275abce890d66a16f4d8998aaec0a0fed74ed4eac98ec03","src/unix/bsd/freebsdlike/freebsd/x86.rs":"e39bf5584f55a4943dcdeda7a086fa093057f0d842c5f93ab6e7321d9eee74a3","src/unix/bsd/freebsdlike/freebsd/x86_64.rs":"d16bc0f9d50108c8724c172d716162ab931361f208e5a7b0e60e592258026e53","src/unix/bsd/freebsdlike/mod.rs":"cbf11c5742e217caa435bf841ab9b03dd9e5278dbfecb0f85722a79e90b5ee90","src/unix/bsd/mod.rs":"a1030452eed4ec52a39e9f39040e8fae4309143c7af145efadd9b425caa39672","src/unix/bsd/netbsdlike/mod.rs":"6fb522d55eced39ef1bc28873f9ae8d5ab141acde09c5cb6a22aeca577d916ad","src/unix/bsd/netbsdlike/netbsd/mod.rs":"1cd66ed5967c788562d4ad626cfbeb1544f4b9267111de5f6790379b8327f28e","src/unix/bsd/netbsdlike/netbsd/other/b32/mod.rs":"bd251a1 02bed65d5cb3459275f6ec3310fe5803ff4c96512121! 15548f862! 56d0","src/unix/bsd/netbsdlike/netbsd/other/b64/mod.rs":"927eeccaf3269d299db4c2a55f8010807bf43dfa894aea6a783215f5d3560baa","src/unix/bsd/netbsdlike/netbsd/other/mod.rs":"4d9f7091af8e166943ac6f42ce85558909e5b6e61325039bff7adfbcf4b90212","src/unix/bsd/netbsdlike/openbsdlike/bitrig/mod.rs":"92459d80b8e5b570c0efe35a1d244d38f23072cd28b6581dfcb313dc9bfc3d51","src/unix/bsd/netbsdlike/openbsdlike/bitrig/x86.rs":"bd251a102bed65d5cb3459275f6ec3310fe5803ff4c9651212115548f86256d0","src/unix/bsd/netbsdlike/openbsdlike/bitrig/x86_64.rs":"927eeccaf3269d299db4c2a55f8010807bf43dfa894aea6a783215f5d3560baa","src/unix/bsd/netbsdlike/openbsdlike/mod.rs":"37fea61239bd53cd951fd7bc800229f663be2e9ad2e1539ebdf73767ca28b469","src/unix/bsd/netbsdlike/openbsdlike/openbsd/aarch64.rs":"820092e397c7ec259cd2de8f2444083a8e57071c02d73d678701dfa7807726e9","src/unix/bsd/netbsdlike/openbsdlike/openbsd/mod.rs":"973331fd80876db55467913556d81f45ea1ede03322fef9c5d552aba833d2207","src/unix/bsd/netbsdlike/openbsdlike/openbsd/ x86.rs":"44b7ea81cf363777b29935da175e702cbf45ed78f7498ae57faf44aa32335085","src/unix/bsd/netbsdlike/openbsdlike/openbsd/x86_64.rs":"7c959cdb3415f68a0f948117b9aa87a17463e57ab97cc3235f2567454b706653","src/unix/haiku/b32.rs":"69ae47fc52c6880e85416b4744500d5655c9ec6131cb737f3b649fceaadce15a","src/unix/haiku/b64.rs":"73e64db09275a8da8d50a13cce2cfa2b136036ddf3a930d2939f337fc995900b","src/unix/haiku/mod.rs":"8b8a7a51e1bc20407e42b0ab6c1a0cd1c8fc4f3ef61a04ccb7c8e312495ce30b","src/unix/hermit/aarch64.rs":"86048676e335944c37a63d0083d0f368ae10ceccefeed9debb3bbe08777fc682","src/unix/hermit/mod.rs":"a8bb096695eea74fb1c5c6766c1e680d28378c452dbc622fa5f91c6ce204306f","src/unix/hermit/x86_64.rs":"ab832b7524e5fb15c49ff7431165ab1a37dc4667ae0b58e8306f4c539bfa110c","src/unix/mod.rs":"af909129f76f9bbe571dee2e78f43afd63ff6e46c27a429da43c239537330283","src/unix/newlib/aarch64/mod.rs":"c408a990f22fb4292a824f38367e9b517e6e6f8623328397ee631cc88b3d1f7d","src/unix/newlib/arm/mod.rs":"2b6dba2e697ab9b4f4bc4dd5f280 57249e9b596d1cb395a9322ec87605c4a5c4","src/u! nix/newli! b/mod.rs":"d9f59ee9a994490122986b7ae5e3064bf9ce0b888349a388a50341a4c7069842","src/unix/notbsd/android/b32/arm.rs":"3625a32c7e58cfe683a53486fbe3d42d4e28f00bea31e19cb46ed2bb0b6a140b","src/unix/notbsd/android/b32/mod.rs":"2fbe398c1fb5251dda6213741a193e50aae4622807cb255d1dd2e82b536f0c65","src/unix/notbsd/android/b32/x86.rs":"ae2b7f1d6278caddc007749bb1d09ca33f7593478a0fd7fe98b457dae86c7814","src/unix/notbsd/android/b64/aarch64.rs":"63d65629d79371814910f691672ef593d20244ee09be26f1ebe07ee6212d0163","src/unix/notbsd/android/b64/mod.rs":"90d4f6b063fd4de42fd302cbc9d9902fd99ac1d71dc48cb8bc6ad7b4c902e481","src/unix/notbsd/android/b64/x86_64.rs":"5547aef8dcbaa5a932559f34606fd8d89f6c9c15173d2b1412c12d39b3c1045f","src/unix/notbsd/android/mod.rs":"eadc87bfea5f5e8ea50a3776b526cea2b0bfaf6d55240ba88134e19670f8a3a6","src/unix/notbsd/emscripten.rs":"d2d817af2b1496c1ee173f216c478a3a1c26223ef938797103bc50a265284662","src/unix/notbsd/linux/mips/mips32.rs":"a483ddfd10765b7d5090dc21686eee8842649cd21236828a42 d634114885f5f9","src/unix/notbsd/linux/mips/mips64.rs":"9fff696e3943cf206b549d1ae13fa361828e9a8454e2d5730eeaa1c172ff370d","src/unix/notbsd/linux/mips/mod.rs":"af1b7bffff09aa5d8662e6452f72bc1e55b6639899b8c2a4be9cd1cfb245de01","src/unix/notbsd/linux/mod.rs":"081cb74be8b465c9cf86289f675cb7c6f7d7eee39713a6764e1871eabcbaee44","src/unix/notbsd/linux/musl/b32/arm.rs":"9d9bff31ab0925a1f62a20945d36a83b94ce3ab78dd202cd468bb31556b21725","src/unix/notbsd/linux/musl/b32/mips.rs":"cb38c463aebfc235f31880db158dd47c6e21f182a092d3f3087d92994b7711da","src/unix/notbsd/linux/musl/b32/mod.rs":"540928f168f145c136f9dd729ffa12b9d1838d9fe664fc642365d17d7fae648f","src/unix/notbsd/linux/musl/b32/powerpc.rs":"3930a2825657ac9208935341e29cfa62f6e37fc5c6b2c0d0dc9ac8c3b5569d59","src/unix/notbsd/linux/musl/b32/x86.rs":"c02dd333012cf65cb8873fa211eff5e63d466be55451a347510e3d4f50ed515e","src/unix/notbsd/linux/musl/b64/aarch64.rs":"4d79d86d11fbb8cb7a74084e410a1140e3c89dfc1842cdfb213f3a0ca93046df","src/unix/notbsd/linux/ musl/b64/mod.rs":"caac00326693b372d6805e4dda! 239475e7f! ef36368881f372c006264844fda0d","src/unix/notbsd/linux/musl/b64/powerpc64.rs":"24514e41be4b5f5e0ffbe8a25a99dae8989489b607db59e8bfa345f8e65c9963","src/unix/notbsd/linux/musl/b64/x86_64.rs":"25340999290a63d564ec149532c905f59c312ec369f8806d6b15df66fa1b8857","src/unix/notbsd/linux/musl/mod.rs":"17c70acf9c6eabeb73916c2abb7d7e8b0310214090faae4a8dc2fd183a9b45ba","src/unix/notbsd/linux/other/b32/arm.rs":"d9892f7350b2978335f734f1cd2d7fed60f0f2e66aa05bee3f69549c031f8b14","src/unix/notbsd/linux/other/b32/mod.rs":"dac0fd1054a0fa163bce85df58c4ad4d222d8b7353bdb4364482b46c19991d03","src/unix/notbsd/linux/other/b32/powerpc.rs":"253fcd2f9978525285be1903cc08f3fec2dc3b12d1660a33e2995b4f6b810d1c","src/unix/notbsd/linux/other/b32/x86.rs":"49376e3ed0f3ff95c230ac20751911fe3c608dfe15c7c118b069fd7a954d8db9","src/unix/notbsd/linux/other/b64/aarch64.rs":"d57f3e06a0ac8affc5bf9d17e1f217ef1d1d714c947f47e647e0e038deaf48b2","src/unix/notbsd/linux/other/b64/mod.rs":"63e1a3fdf5f4d1b9820934ab344c91aed5e458e7e05908535d 2e942d51a08bf8","src/unix/notbsd/linux/other/b64/not_x32.rs":"fa8636fb93eab230ed53bdec0a06f5b81d6d982cc0800103563c8c1eefcdb2d9","src/unix/notbsd/linux/other/b64/powerpc64.rs":"024057a910d0b885c63443165d34ce33f972973a9a8f5979906198180b19ad8b","src/unix/notbsd/linux/other/b64/sparc64.rs":"bb28f201e29c7f490a42dd2673eb8180fd82c1824a5d21aeb5aed674ffcc6e07","src/unix/notbsd/linux/other/b64/x32.rs":"06a26c5120ced30fc015c220799b67c4401be2f13fc6c7361bebd3d37ff4982d","src/unix/notbsd/linux/other/b64/x86_64.rs":"afba464e903d350325a1ca3d9d5af1659efc0ede83a43dbac4dbd60c522e2ad1","src/unix/notbsd/linux/other/mod.rs":"add154a8cfe9392d5a73b6055eb1419902e2b8b5458c22586a6ef8f90f89501b","src/unix/notbsd/linux/s390x.rs":"033cb7c4ee00af352698615de0248a5c6c9bcff57ba671ee22d31b70ef86fb4a","src/unix/notbsd/mod.rs":"134502158bab09d5189249ef400c9ddf7fdf5d1a1bd3134484ca82b80a0833e7","src/unix/solaris/mod.rs":"9c52a7479b56d3bc1f2c9ba5bb44f71ab1470989a54d3d0d85571e19489e4b7e","src/unix/uclibc/mips/mips32.rs":"9 739c5fb47f389a0394ef08ee30da97a3de0a13000207! 31a8cc0a0! 33616011b2","src/unix/uclibc/mips/mips64.rs":"230583280bbc7b3c7fcdb61244f51fa1af5944ca127c7cf83c598fe2313713d0","src/unix/uclibc/mips/mod.rs":"3f86061d05a8da7d923310550b7d40c6223f0c907d77edc86b7a78da1d647f76","src/unix/uclibc/mod.rs":"8cf2db30468476b917a60fdffe475917302875a3a4150f29a042ebee182545d1","src/unix/uclibc/x86_64/l4re.rs":"68fd3a833fd1f7caf784a084224f384bdbdfb8b5a14ef94c4f5155409afb3439","src/unix/uclibc/x86_64/mod.rs":"419182836aedd426a5c9e6b8667058adf86ac8f43af73ce8d00c503f8ff8f414","src/unix/uclibc/x86_64/other.rs":"f03b47842896f2f3ae6f8ebdcbcf0276454f880349d9cf00e3d304f8136893c5","src/windows.rs":"e41357d610608bad81abf285306ad8b127b6f02d5132f63c4942861980b47d59"},"package":"76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d"} \ No newline at end of file -diff --git src/unix/bsd/freebsdlike/dragonfly/mod.rs src/unix/bsd/freebsdlike/dragonfly/mod.rs -index 9e1082e53..8149917ee 100644 ---- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/dragonfly/mod.rs +--- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/dragonfly/mod.rs.orig 2019-05-29 12:52:42 UTC +++ mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/dragonfly/mod.rs @@ -1,3 +1,4 @@ +pub type c_char = i8; pub type clock_t = u64; pub type ino_t = u64; pub type lwpid_t = i32; -@@ -210,6 +211,12 @@ s! { +@@ -209,6 +210,12 @@ s! { + pub sdl_data: [::c_char; 12], pub sdl_rcf: ::c_ushort, pub sdl_route: [::c_ushort; 16], - } ++ } + + pub struct stack_t { + pub ss_sp: *mut ::c_char, + pub ss_size: ::size_t, + pub ss_flags: ::c_int, -+ } + } } - pub const RAND_MAX: ::c_int = 0x7fff_ffff; -diff --git src/unix/bsd/freebsdlike/freebsd/aarch64.rs src/unix/bsd/freebsdlike/freebsd/aarch64.rs -index 3d61f889d..ef3b13acb 100644 ---- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/aarch64.rs +--- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/aarch64.rs.orig 2019-05-29 12:52:42 UTC +++ mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/aarch64.rs @@ -1,3 +1,4 @@ +pub type c_char = u8; pub type c_long = i64; pub type c_ulong = u64; pub type time_t = i64; -diff --git src/unix/bsd/freebsdlike/freebsd/arm.rs src/unix/bsd/freebsdlike/freebsd/arm.rs -new file mode 100644 -index 000000000..bc4da64d0 ---- /dev/null +--- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/arm.rs.orig 2019-06-06 10:31:57 UTC +++ mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/arm.rs @@ -0,0 +1,37 @@ +pub type c_char = u8; @@ -86,9 +77,7 @@ index 000000000..bc4da64d0 +} + +pub const MAP_32BIT: ::c_int = 0x00080000; -diff --git src/unix/bsd/freebsdlike/freebsd/mod.rs src/unix/bsd/freebsdlike/freebsd/mod.rs -index a64dbc468..60f38a0c6 100644 ---- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/mod.rs +--- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/mod.rs.orig 2019-05-29 12:52:42 UTC +++ mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/mod.rs @@ -182,6 +182,12 @@ s! { pub sdl_slen: ::c_uchar, @@ -116,10 +105,7 @@ index a64dbc468..60f38a0c6 100644 } else { // Unknown target_arch } -diff --git src/unix/bsd/freebsdlike/freebsd/powerpc64.rs src/unix/bsd/freebsdlike/freebsd/powerpc64.rs -new file mode 100644 -index 000000000..c06e1aec8 ---- /dev/null +--- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/powerpc64.rs.orig 2019-06-06 10:31:57 UTC +++ mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/powerpc64.rs @@ -0,0 +1,33 @@ +pub type c_char = u8; @@ -155,44 +141,38 @@ index 000000000..c06e1aec8 +} + +pub const MAP_32BIT: ::c_int = 0x00080000; -diff --git src/unix/bsd/freebsdlike/freebsd/x86.rs src/unix/bsd/freebsdlike/freebsd/x86.rs -index 8a5e5f9fb..84ebf24cf 100644 ---- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/x86.rs +--- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/x86.rs.orig 2019-05-29 12:52:42 UTC +++ mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/x86.rs @@ -1,3 +1,4 @@ +pub type c_char = i8; pub type c_long = i32; pub type c_ulong = u32; pub type time_t = i32; -diff --git src/unix/bsd/freebsdlike/freebsd/x86_64.rs src/unix/bsd/freebsdlike/freebsd/x86_64.rs -index 3d61f889d..148149b11 100644 ---- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/x86_64.rs +--- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/x86_64.rs.orig 2019-05-29 12:52:42 UTC +++ mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/freebsd/x86_64.rs @@ -1,3 +1,4 @@ +pub type c_char = i8; pub type c_long = i64; pub type c_ulong = u64; pub type time_t = i64; -diff --git src/unix/bsd/freebsdlike/mod.rs src/unix/bsd/freebsdlike/mod.rs -index 75a7a670e..4e40cb651 100644 ---- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/mod.rs +--- mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/mod.rs.orig 2019-05-29 12:52:42 UTC +++ mozilla-release/third_party/rust/libc/src/unix/bsd/freebsdlike/mod.rs @@ -1,4 +1,3 @@ -pub type c_char = i8; pub type dev_t = u32; pub type mode_t = u16; pub type pthread_attr_t = *mut ::c_void; -@@ -82,13 +81,6 @@ s! { +@@ -80,13 +79,6 @@ s! { + pub sa_sigaction: ::sighandler_t, + pub sa_flags: ::c_int, pub sa_mask: sigset_t, - } - +- } +- - pub struct stack_t { - // In FreeBSD 11 and later, ss_sp is actually a void* - pub ss_sp: *mut ::c_char, - pub ss_size: ::size_t, - pub ss_flags: ::c_int, -- } -- - pub struct sched_param { - pub sched_priority: ::c_int, } + + pub struct sched_param { Added: head/www/cliqz/files/patch-bug1559213 ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/cliqz/files/patch-bug1559213 Fri Jun 21 20:10:36 2019 (r504812) @@ -0,0 +1,102 @@ +commit 717bba28411c +Author: Jory A. Pratt +Date: Thu Jun 13 11:53:00 2019 -0700 + + Bug 1559213 - Allow to use system av1 libs instead of bundled. +--- + config/external/moz.build | 5 +++-- + config/system-headers.mozbuild | 8 ++++++++ + dom/media/platforms/moz.build | 5 +++++ + toolkit/moz.configure | 19 ++++++++++++++++++- + 4 files changed, 34 insertions(+), 3 deletions(-) + +Patch taken from www/firefox + +diff --git mozilla-release/config/external/moz.build mozilla-release/config/external/moz.build +index 03e4fa143bd1..a67d10b11fe6 100644 +--- mozilla-release/config/external/moz.build ++++ mozilla-release/config/external/moz.build +@@ -37,8 +37,9 @@ if not CONFIG['MOZ_SYSTEM_LIBVPX']: + external_dirs += ['media/libvpx'] + + if CONFIG['MOZ_AV1']: +- external_dirs += ['media/libaom'] +- external_dirs += ['media/libdav1d'] ++ if not CONFIG['MOZ_SYSTEM_AV1']: ++ external_dirs += ['media/libaom'] ++ external_dirs += ['media/libdav1d'] + + if not CONFIG['MOZ_SYSTEM_PNG']: + external_dirs += ['media/libpng'] +diff --git mozilla-release/config/system-headers.mozbuild mozilla-release/config/system-headers.mozbuild +index bcf5c4925564..48964a999a9b 100644 +--- mozilla-release/config/system-headers.mozbuild ++++ mozilla-release/config/system-headers.mozbuild +@@ -1304,6 +1304,14 @@ if CONFIG['MOZ_ENABLE_CONTENTMANAGER']: + 'SelectSingleContentItemPage.h', + ] + ++if CONFIG['MOZ_SYSTEM_AV1']: ++ system_headers += [ ++ 'aom/aom_decoder.h', ++ 'aom/aomdx.h', ++ 'aom/aom_image.h', ++ 'dav1d/dav1d.h', ++ ] ++ + if CONFIG['MOZ_SYSTEM_LIBVPX']: + system_headers += [ + 'vpx_mem/vpx_mem.h', +diff --git mozilla-release/dom/media/platforms/moz.build mozilla-release/dom/media/platforms/moz.build +index 092cee0c9b66..38e45de5b5f0 100644 +--- mozilla-release/dom/media/platforms/moz.build ++++ mozilla-release/dom/media/platforms/moz.build +@@ -80,6 +80,11 @@ if CONFIG['MOZ_AV1']: + 'agnostic/AOMDecoder.cpp', + 'agnostic/DAV1DDecoder.cpp', + ] ++ if CONFIG['MOZ_SYSTEM_AV1']: ++ CXXFLAGS += CONFIG['MOZ_SYSTEM_LIBAOM_CFLAGS'] ++ OS_LIBS += CONFIG['MOZ_SYSTEM_LIBAOM_LIBS'] ++ CXXFLAGS += CONFIG['MOZ_SYSTEM_LIBDAV1D_CFLAGS'] ++ OS_LIBS += CONFIG['MOZ_SYSTEM_LIBDAV1D_LIBS'] + + if CONFIG['MOZ_OMX']: + EXPORTS += [ +diff --git mozilla-release/toolkit/moz.configure mozilla-release/toolkit/moz.configure +index 82b5a59acf42..e2329560b42b 100644 +--- mozilla-release/toolkit/moz.configure ++++ mozilla-release/toolkit/moz.configure +@@ -441,7 +441,23 @@ def av1(value): + if value: + return True + +-@depends(target, nasm_version, when=av1 & compile_environment) ++option('--with-system-av1', ++ help="Use system av1 (located with pkgconfig)") ++ ++system_libaom_info = pkg_check_modules('MOZ_SYSTEM_LIBAOM', 'aom >= 1.0.0', ++ when='--with-system-av1') ++ ++system_libdav1d_info = pkg_check_modules('MOZ_SYSTEM_LIBDAV1D', 'dav1d >= 0.1.1', ++ when='--with-system-av1') ++ ++@depends(system_libaom_info, system_libdav1d_info) ++def system_av1(system_libaom_info, system_libdav1d_info): ++ has_av1_libs = False ++ if system_libaom_info and system_libdav1d_info: ++ has_av1_libs = True ++ return has_av1_libs ++ ++@depends(target, nasm_version, when=av1 & depends(system_av1)(lambda v: not v) & compile_environment) + def dav1d_asm(target, nasm_version): + if target.os != 'Android': + if target.cpu == 'aarch64': +@@ -457,6 +473,7 @@ set_config('MOZ_DAV1D_ASM', dav1d_asm) + set_define('MOZ_DAV1D_ASM', dav1d_asm) + set_config('MOZ_AV1', av1) + set_define('MOZ_AV1', av1) ++set_config('MOZ_SYSTEM_AV1', depends_if(system_av1)(lambda _: True)) + + # Built-in fragmented MP4 support. + # ============================================================== Modified: head/www/cliqz/files/patch-cliqz__env.sh ============================================================================== --- head/www/cliqz/files/patch-cliqz__env.sh Fri Jun 21 20:06:17 2019 (r504811) +++ head/www/cliqz/files/patch-cliqz__env.sh Fri Jun 21 20:10:36 2019 (r504812) @@ -1,9 +1,9 @@ Commented out the various wget(1) to prevent http traffic during build phase. ---- cliqz_env.sh.orig 2018-11-16 13:55:29 UTC +--- cliqz_env.sh.orig 2019-05-29 12:52:42 UTC +++ cliqz_env.sh -@@ -78,9 +78,9 @@ export S3_BUCKET=repository.cliqz.com +@@ -101,9 +101,9 @@ export S3_BUCKET=repository.cliqz.com export S3_BUCKET_SERVICE=cliqz-browser-data # check CQZ_BUILD_ID and try to obtain, if not specified @@ -16,7 +16,7 @@ phase. if [ -z $CQZ_BUILD_ID ]; then echo "CQZ_BUILD_ID not specified and can not be obtain from "$S3_BUCKET -@@ -103,7 +103,7 @@ OBJ_DIR=$MOZ_OBJDIR +@@ -131,7 +131,7 @@ OBJ_DIR=$MOZ_OBJDIR SRC_BASE=mozilla-release # automatic forget tab - start Modified: head/www/cliqz/files/patch-mozilla-release_browser_config_cliqz.mozconfig ============================================================================== --- head/www/cliqz/files/patch-mozilla-release_browser_config_cliqz.mozconfig Fri Jun 21 20:06:17 2019 (r504811) +++ head/www/cliqz/files/patch-mozilla-release_browser_config_cliqz.mozconfig Fri Jun 21 20:10:36 2019 (r504812) @@ -1,9 +1,9 @@ ---- mozilla-release/browser/config/cliqz.mozconfig.orig 2018-11-16 08:40:07 UTC +--- mozilla-release/browser/config/cliqz.mozconfig.orig 2019-05-29 12:52:42 UTC +++ mozilla-release/browser/config/cliqz.mozconfig -@@ -10,6 +10,11 @@ ac_add_options --enable-official-brandin - ac_add_options --with-app-name=cliqz # name for binaries - ac_add_options --enable-crashreporter - ac_add_options --enable-js-shell +@@ -14,6 +14,11 @@ ac_add_options --enable-verify-mar + ac_add_options --with-mozilla-api-keyfile=$ROOT_PATH/mozilla-desktop-geoloc-api.key + ac_add_options --with-google-safebrowsing-api-keyfile=$ROOT_PATH/google-desktop-api.key + ac_add_options "MOZ_ALLOW_LEGACY_EXTENSIONS=1" +ac_add_options --disable-crashreporter +ac_add_options --disable-updater +ac_add_options --disable-tests Modified: head/www/cliqz/files/patch-mozilla-release_config_rules.mk ============================================================================== --- head/www/cliqz/files/patch-mozilla-release_config_rules.mk Fri Jun 21 20:06:17 2019 (r504811) +++ head/www/cliqz/files/patch-mozilla-release_config_rules.mk Fri Jun 21 20:10:36 2019 (r504812) @@ -1,6 +1,6 @@ ---- mozilla-release/config/rules.mk.orig 2018-11-16 08:40:07 UTC +--- mozilla-release/config/rules.mk.orig 2019-05-29 12:52:42 UTC +++ mozilla-release/config/rules.mk -@@ -1302,20 +1302,20 @@ $(EXTENSIONS_PATH): +@@ -1003,20 +1003,20 @@ $(EXTENSIONS_PATH): CLIQZ_XPI_PATH = $(EXTENSIONS_PATH)/cliqz@cliqz.com.xpi $(CLIQZ_XPI_PATH): $(EXTENSIONS_PATH) echo CLIQZ_XPI_PATH in `pwd` From owner-svn-ports-all@freebsd.org Fri Jun 21 20:28:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5AAE815BE7F6; Fri, 21 Jun 2019 20:28:11 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [18.222.6.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F27E077DE0; Fri, 21 Jun 2019 20:28:10 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (unknown [18.188.142.31]) by mail.soaustin.net (Postfix) with ESMTPSA id D59A717093; Fri, 21 Jun 2019 20:28:09 +0000 (UTC) Date: Fri, 21 Jun 2019 20:28:08 +0000 From: Mark Linimon To: Jan Beich Cc: Mark Linimon , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504793 - in head/math/clblas: . files Message-ID: <20190621202808.GC29677@lonesome.com> References: <201906211218.x5LCIBDi019697@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-Rspamd-Queue-Id: F27E077DE0 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.99)[-0.986,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 20:28:11 -0000 On Fri, Jun 21, 2019 at 02:41:59PM +0200, Jan Beich wrote: > Why did you add extra ";" (semicolon) here? This appears to have merely been a typo. I will remove this part of the patch after the test run finishes. mcl From owner-svn-ports-all@freebsd.org Fri Jun 21 20:30:58 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1D40E15BE915; Fri, 21 Jun 2019 20:30:58 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 98D2077F8C; Fri, 21 Jun 2019 20:30:57 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 70E883D6; Fri, 21 Jun 2019 20:30:57 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LKUvJU078949; Fri, 21 Jun 2019 20:30:57 GMT (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LKUvK4078948; Fri, 21 Jun 2019 20:30:57 GMT (envelope-from bmah@FreeBSD.org) Message-Id: <201906212030.x5LKUvK4078948@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bmah set sender to bmah@FreeBSD.org using -f From: "Bruce A. Mah" Date: Fri, 21 Jun 2019 20:30:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504813 - head/benchmarks/iperf3 X-SVN-Group: ports-head X-SVN-Commit-Author: bmah X-SVN-Commit-Paths: head/benchmarks/iperf3 X-SVN-Commit-Revision: 504813 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 98D2077F8C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 20:30:58 -0000 Author: bmah Date: Fri Jun 21 20:30:56 2019 New Revision: 504813 URL: https://svnweb.freebsd.org/changeset/ports/504813 Log: Update to iperf-3.7. Sponsored by: ESnet Modified: head/benchmarks/iperf3/Makefile head/benchmarks/iperf3/distinfo Modified: head/benchmarks/iperf3/Makefile ============================================================================== --- head/benchmarks/iperf3/Makefile Fri Jun 21 20:10:36 2019 (r504812) +++ head/benchmarks/iperf3/Makefile Fri Jun 21 20:30:56 2019 (r504813) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= iperf -PORTVERSION= 3.6 +PORTVERSION= 3.7 CATEGORIES= benchmarks ipv6 MASTER_SITES= https://downloads.es.net/pub/iperf/ PKGNAMESUFFIX= 3 Modified: head/benchmarks/iperf3/distinfo ============================================================================== --- head/benchmarks/iperf3/distinfo Fri Jun 21 20:10:36 2019 (r504812) +++ head/benchmarks/iperf3/distinfo Fri Jun 21 20:30:56 2019 (r504813) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529972647 -SHA256 (iperf-3.6.tar.gz) = de5d51e46dc460cc590fb4d44f95e7cad54b74fea1eba7d6ebd6f8887d75946e -SIZE (iperf-3.6.tar.gz) = 599347 +TIMESTAMP = 1561148919 +SHA256 (iperf-3.7.tar.gz) = d846040224317caf2f75c843d309a950a7db23f9b44b94688ccbe557d6d1710c +SIZE (iperf-3.7.tar.gz) = 605708 From owner-svn-ports-all@freebsd.org Fri Jun 21 20:35:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C9FC915BEE30; Fri, 21 Jun 2019 20:35:57 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [18.222.6.11]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.soaustin.net", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 657BF80493; Fri, 21 Jun 2019 20:35:57 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from lonesome.com (unknown [18.188.142.31]) by mail.soaustin.net (Postfix) with ESMTPSA id 7803917093; Fri, 21 Jun 2019 20:35:56 +0000 (UTC) Date: Fri, 21 Jun 2019 20:35:55 +0000 From: Mark Linimon To: Jan Beich Cc: Mark Linimon , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504631 - head/audio/infamous-plugins-lv2 Message-ID: <20190621203555.GD29677@lonesome.com> References: <201906201521.x5KFLfZ3045705@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-Rspamd-Queue-Id: 657BF80493 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.99)[-0.986,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 20:35:58 -0000 On Fri, Jun 21, 2019 at 02:59:03PM +0200, Jan Beich wrote: > -Og is supported by GCC, just not by the ancient one in base. ;) > However, removing -Og (and -g) can be done on every architecture because > it'd enforce "respect CFLAGS" policy. OK, I've investigated a bit more. Unless you feel strongly about the situation, I feel like I will leave the change as it is. mcl From owner-svn-ports-all@freebsd.org Fri Jun 21 21:27:50 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3671E15BFA86; Fri, 21 Jun 2019 21:27:50 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D09BA817AF; Fri, 21 Jun 2019 21:27:49 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id C05E11BE2C; Fri, 21 Jun 2019 21:27:49 +0000 (UTC) From: Jan Beich To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504811 - head/net/tcpkali References: <201906212006.x5LK6ITT066843@repo.freebsd.org> Date: Fri, 21 Jun 2019 23:27:41 +0200 In-Reply-To: <201906212006.x5LK6ITT066843@repo.freebsd.org> (Mark Linimon's message of "Fri, 21 Jun 2019 20:06:18 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: D09BA817AF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.93)[-0.932,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 21:27:50 -0000 Mark Linimon writes: > -.include > +.include > + > +.if ${CHOSEN_COMPILER_TYPE} == gcc > +BROKEN= src/tcpkali_atomic.h unconditionally includes x86 assembler > +.endif lang/gcc8 on powerpc64 does support __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4, so maybe try USES=compiler:c11 instead. GCC 4.2 on amd64 does define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 but not __SIZEOF_SIZE_T__. As the assembly fallback uses SIZEOF_SIZE_T (without underscores) it wouldn't compile even on x86 e.g., In file included from tcpkali_traffic_stats.h:30, from tcpkali_engine.h:33, from tcpkali.h:31, from tcpkali_dns.c:42: tcpkali_atomic.h:101: error: expected specifier-qualifier-list before 'non_atomic_wide_t' tcpkali_atomic.h:102: error: expected specifier-qualifier-list before 'non_atomic_narrow_t' In file included from tcpkali_traffic_stats.h:30, from tcpkali_engine.h:33, from tcpkali.h:31, from tcpkali_dns.c:42: tcpkali_atomic.h:111:2: error: #error "Weird platform, aborting" -- In short, the BROKEN message is garbage. From owner-svn-ports-all@freebsd.org Fri Jun 21 21:27:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA0C915BFA89; Fri, 21 Jun 2019 21:27:50 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 43D84817B1; Fri, 21 Jun 2019 21:27:50 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 18792DAD; Fri, 21 Jun 2019 21:27:50 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LLRohx009508; Fri, 21 Jun 2019 21:27:50 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LLRnsN009506; Fri, 21 Jun 2019 21:27:49 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <201906212127.x5LLRnsN009506@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Fri, 21 Jun 2019 21:27:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504814 - head/cad/kicad-doc X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: head/cad/kicad-doc X-SVN-Commit-Revision: 504814 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 43D84817B1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 21:27:51 -0000 Author: cmt Date: Fri Jun 21 21:27:49 2019 New Revision: 504814 URL: https://svnweb.freebsd.org/changeset/ports/504814 Log: cleanup. Reported by: danfe Modified: head/cad/kicad-doc/Makefile head/cad/kicad-doc/pkg-descr head/cad/kicad-doc/pkg-plist Modified: head/cad/kicad-doc/Makefile ============================================================================== --- head/cad/kicad-doc/Makefile Fri Jun 21 20:30:56 2019 (r504813) +++ head/cad/kicad-doc/Makefile Fri Jun 21 21:27:49 2019 (r504814) @@ -7,7 +7,7 @@ CATEGORIES= cad PKGNAMESUFFIX= -doc MAINTAINER= cmt@FreeBSD.org -COMMENT= KiCad Online Documentation/Help Files +COMMENT= KiCad Documentation and Help Files LICENSE= GPLv3+ CC-BY-3.0 LICENSE_COMB= dual @@ -33,8 +33,6 @@ CONFLICTS= kicad-devel-r2* CMAKE_ARGS= -DLOCALBASE="${LOCALBASE}" \ -DLANGUAGES="ca;de;en;es;fr;id;it;ja;nl;ru" INSTALL_TARGET= install - -PLIST_SUB= PORTDOCS="" NO_ARCH= yes Modified: head/cad/kicad-doc/pkg-descr ============================================================================== --- head/cad/kicad-doc/pkg-descr Fri Jun 21 20:30:56 2019 (r504813) +++ head/cad/kicad-doc/pkg-descr Fri Jun 21 21:27:49 2019 (r504814) @@ -1,3 +1,3 @@ -This port installs the official KiCad schematic symbol libraries. +This port installs the KiCad help and documentation files. -WWW: https://github.com/KiCad/kicad-symbols +WWW: https://github.com/KiCad/kicad-doc Modified: head/cad/kicad-doc/pkg-plist ============================================================================== --- head/cad/kicad-doc/pkg-plist Fri Jun 21 20:30:56 2019 (r504813) +++ head/cad/kicad-doc/pkg-plist Fri Jun 21 21:27:49 2019 (r504814) @@ -1,5750 +1,5750 @@ -%%PORTDOCS%%%%DOCSDIR%%/help/ca/getting_started_in_kicad.epub -%%PORTDOCS%%%%DOCSDIR%%/help/ca/getting_started_in_kicad.html -%%PORTDOCS%%%%DOCSDIR%%/help/ca/getting_started_in_kicad.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/choose_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/component_history.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/configure_path_dlg.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/custom_tracks_width.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/design_rules.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/edit_component_dropdown.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/kicad_flowchart.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/kicad_main_window.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/main_window.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/menu_file.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/pad_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/pcbnew_select_track_width.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/pin_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/place_a_via.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/preferences_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/select_top_copper.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/template_selected.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/template_selector.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/template_tree.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/ca/template_tree_meta.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_accelerator_keys.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_bus_connection.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_high_number_pins.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_hotkeys.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_myconn3_l.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_myconn3_quicklib.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_myconn3_s.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_010.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_020.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_030.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_040.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_050.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_060.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_070.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_080.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_090.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/gsik_tutorial1_100.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_bus.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_bus2bus.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_dashed_line.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_line.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_line2bus.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_line_label.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_polygon.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_power.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_rectangle.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_tracks.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/add_zone.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/annotate.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/bom.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/cvpcb.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/datasheet.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/drc.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/edit_comp_footprint.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/edit_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/edit_module.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/eeschema.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/erc.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/export.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/general_ratsnest.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/gerber_file.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/hidden_pin.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/import.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/import_cmp_from_lib.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/libedit.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/library.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/module_filtered_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/module_library_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/module_pin_filtered_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/net_highlight.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/netlist.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/new_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/new_footprint.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/new_library.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/new_project.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/new_project_with_template.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/noconn.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/open_document.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/open_library.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/open_project.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/pad.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/part_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/pcbnew.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/pin.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/plot.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/reload.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/save.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/save_library.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/save_part_in_mem.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/save_project.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/sheetset.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/show_footprint.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/text.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/icons/zip.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/launch_pane.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/logo.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/main_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/pcbnew_3d_viewer.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/project_tree.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/resistor_value.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/images/select_edge_cuts.png -%%PORTDOCS%%%%DOCSDIR%%/help/ca/kicad.epub -%%PORTDOCS%%%%DOCSDIR%%/help/ca/kicad.html -%%PORTDOCS%%%%DOCSDIR%%/help/ca/kicad.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/de/cvpcb.epub -%%PORTDOCS%%%%DOCSDIR%%/help/de/cvpcb.html -%%PORTDOCS%%%%DOCSDIR%%/help/de/cvpcb.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/de/eeschema.epub -%%PORTDOCS%%%%DOCSDIR%%/help/de/eeschema.html -%%PORTDOCS%%%%DOCSDIR%%/help/de/eeschema.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/de/gerbview.epub -%%PORTDOCS%%%%DOCSDIR%%/help/de/gerbview.html -%%PORTDOCS%%%%DOCSDIR%%/help/de/gerbview.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/de/getting_started_in_kicad.epub -%%PORTDOCS%%%%DOCSDIR%%/help/de/getting_started_in_kicad.html -%%PORTDOCS%%%%DOCSDIR%%/help/de/getting_started_in_kicad.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/de/gui_translation_howto.epub -%%PORTDOCS%%%%DOCSDIR%%/help/de/gui_translation_howto.html -%%PORTDOCS%%%%DOCSDIR%%/help/de/gui_translation_howto.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/de/idf_exporter.epub -%%PORTDOCS%%%%DOCSDIR%%/help/de/idf_exporter.html -%%PORTDOCS%%%%DOCSDIR%%/help/de/idf_exporter.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Footprint_library_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Footprint_tables_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Library_list_menu_item.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Library_tables_menu_item.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_3D_file_browser.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_alias_path_config.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_context_menu_graphics.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_context_menu_module_parameters.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_context_menu_pads.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_footprint_level_pad_settings.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_footprint_text_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_internal_path_config.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_main_window.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_3d_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_attributes.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_autoplace_settings.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_properties_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_module_properties_documentation_fields.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_pad_delta_example.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_pad_level_pad_settings.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_pad_offset_example.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_pad_properties_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Modedit_top_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_DRC_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_action_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_add_cutout_menu_item.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_advanced_tracing_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_archive_footprints_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_array_dialog_circular.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_array_dialog_grid.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_array_grid_offsets.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_array_grid_stagger_cols_3.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_array_grid_stagger_rows_2.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_bad_tracks_deletion_option.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_board_outline_imported_from_a_DXF.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_board_outline_with_dogpile.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_board_outline_with_globally_placed_modules.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_change_modules_button.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_circuit_after_placement.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_context_module_mode_module_under_cursor.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_context_module_mode_no_module_under_cursor.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_coordinate_status_display.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_copper_layers_contrast_high.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_copper_layers_contrast_normal.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_creating_new_track.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_design_rules_dropdown.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_design_rules_editor_global_tab.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_design_rules_editor_netclass_tab.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_design_rules_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_design_rules_top_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_dimensions_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_dr_example_rustic.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_dr_example_standard.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_drill_file_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_drill_origin_setting.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_edit_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_example_library.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_exchange_module_option.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_extra_footprints_deletion_option.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_file_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_fill_refill_all_zones.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_final_preparation_example_board.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_footprint_exchange_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_general_options_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_grid_size_dropdown.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_import_spread_footprints.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_inspect_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_keepout_area_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_colour_key.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_manager_pane.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_pair_indicator.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_selection_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_selection_dropdown.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_selection_popup.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_setup_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_layer_setup_dialog_layer_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_left_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_legacy_block_selection_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_library_wizard.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_measurement_tool.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_module_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_module_selection_option.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_move_all_modules.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_move_exact_cartesian.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_move_exact_polar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_new_track_completed.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_new_track_in_progress.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_pad_mask_clearance_menu_item.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_pad_mask_settings_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_place_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_plot_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_plot_fine_scale_setting.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_plot_options_gerber.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_plot_options_other_formats.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_plot_postscript_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_footprint_mode.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_footprint_mode_footprint.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_footprint_mode_track.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_normal_mode.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_normal_mode_footprint.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_normal_mode_track.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_track_mode.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_track_mode_footprint.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_popup_track_mode_track.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_preferences_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_ratsnest_during_move.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_right_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_route_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_routing_posture.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_setting_pcb_origin.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_setup_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_simple_board_outline.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_specific_size_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_stacked_footprints.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_technical_layer_zone_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_technical_layers_contrast_high.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_technical_layers_contrast_normal.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_thermal_relief_parameters.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_thermal_relief_settings.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_toolbar_layer_select_dropdown.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_tools_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_top_menu_bar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_top_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_context_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_global_edit_context_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_global_edit_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_in_progres_context.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_thickness_dropdown.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_grid_size_selection.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_track_width_selection.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_track_width_selection_in_use.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_via_size_selection.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_via_size_selection_in_use.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_track_toolbar_zoom_selection.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_unlock_footprint_option.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_unstacked_footprints.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_via_layer_pair_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_via_layer_pair_popup.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_via_size_dropdown.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_view_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_add_similar_after.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_add_similar_during.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_context_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_corner_move_after.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_corner_move_during.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_exclude_pads.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_filled_with_cutout.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_filling_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_filling_result.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_include_pads.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_limit_example.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_modification_menu_items.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_priority_example.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_priority_example_after_filling.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_priority_level_setting.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_properties_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_thermal_relief.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zone_unfilled_cutout_outline.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Pcbnew_zoom_factor_dropdown.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Right-click_legacy_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/Sample_3D_board.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/bom_extra_option_windows.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/bus_junction.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste11.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste12.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste13.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste21.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste22.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste23.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste31.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste32.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste33.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste41.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste42.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste43.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste51.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste52.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/copypaste53.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/cvpcb_main_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/3d_window.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/annotate-dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/block_constraints.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/bom-netlist-tab.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/choose_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/color_settings.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/commands_overview.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/component_during_placement.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/component_history.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/configure_path_dlg.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/constraint_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/context_createnew.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/context_createnew2.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/context_line_move.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/context_line_move_end.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/context_line_move_start.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/custom_tracks_width.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/cvpcb_main_window.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/cvpcb_preference_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/default_hot_key_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/design_rules.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dev-chain.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_bom.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_choose_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_component_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_erc.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_erc_opts.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_newline.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_newtext.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/dialog_select_element.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/display_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/edit_component_dropdown.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_component_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_cvpcb_with_filtering.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_cvpcb_without_filtering.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_file_menu_plot.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_filter.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_hierarchical_pin.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_alias.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_anchor.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_context_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_description.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_disable_common.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_field_context_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_field_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_footprint.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_new.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_not_interchangeable.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_pin_context_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_pin_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_pin_properties_style.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_polyline_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_power_symbol.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_libedit_select_unit.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_netlist_dialog_add_plugin.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_netlist_dialog_padspcb.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_netlist_dialog_pcbnew.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_netlist_dialog_spice.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_plot_dxf.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_plot_hpgl.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_plot_pdf.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_plot_postscript.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_plot_svg.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_popup_edit_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_popup_edit_label.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_popup_without_element.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_properties_for_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_uncheck_pin_name_inside.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_viewlib_choose.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_viewlib_select_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/eeschema_viewlib_select_library.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/erc_pointers.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/erc_pointers_info.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/erc_pointers_message.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/file_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/filter_comp.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/filter_comp_and_pincount.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/filter_library.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/filter_none.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/filter_pincount.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/find_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/footprint_view.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_chooseflt.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_githubselection.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_locallibselection.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_locallibstartpage.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_startpage_github.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/fplib_wizard_validate.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_file_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_layer_manager.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_layer_select_1.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_layer_select_2.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_left_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_main_screen.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_misc_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_preferences_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_top_dcode.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_top_info.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_top_layer.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gerbview_top_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gsik_accelerator_keys.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/gsik_hotkeys.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/hierarchy_navigator_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/hsheet_properties_1.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/idf_export.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/idf_select.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/insert_newline_code.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/insert_slashnewline_code.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/kicad_flowchart.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/kicad_main_window.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/lib_table.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/libedit_main_window.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/libsettings.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/main_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/main_window.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/main_window_popup.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/menu_bar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/menu_file.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/menu_path_hotkey_editor.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/module_params.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/multi_line.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/multi_line_2.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/multi_line_3.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/netlist_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/options-1.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/options-2.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/options.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/options_multi_line.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/pad_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/page_settings.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/pcbnew_select_track_width.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/pin_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/pl_status_bar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/place_a_via.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/preferences_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/print_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_bitmap.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_line.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_main.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_none.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_polyline.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/property_text.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/select_top_copper.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/set_base_corner.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/set_current_page.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/shortcuts_editor.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/status_bar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/template_field_names.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/template_selected.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/template_selector.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/template_tree.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/template_tree_meta.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/title_block.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/toolbar_libedit.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/toolbar_libedit_alias.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/toolbar_libedit_part.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/de/toolbar_viewlib.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/drag_element.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/edit_line.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/edit_line_end.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/edit_line_start.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_choice_free.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_choice_x100.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_choice_x1000.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_order_none.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_order_x.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_annotation_order_y.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_complex_hierarchy.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_erc_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_flat_hierarchy.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_flat_hierarchy_1.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_flat_hierarchy_2.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_flat_hierarchy_3.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_hierarchical_label.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_libedit_pins_per_part.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_libedit_unit1.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_libedit_unit2.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_libedit_unit3.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_netlist_schematic.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_plugin_add_plugin.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_plugin_padspcb.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_power_pins_and_flags.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_properties_for_symbol.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_pspice_netlist.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/eeschema_symbol_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gerbview_mode_raw_stack.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gerbview_mode_transparency.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gerbview_x2_attribute.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gerbview_x2_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gerbview_x2_net.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_bus_connection.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_high_number_pins.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_myconn3_l.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_myconn3_quicklib.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_myconn3_s.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_010.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_020.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_030.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_040.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_050.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_060.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_070.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_080.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_090.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/gsik_tutorial1_100.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/hierarchical_label_root.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/hierarchical_label_sub.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/i18n-tree.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_arc.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_bus.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_bus2bus.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_circle.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_corner.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_dashed_line.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_dimension.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_glabel.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_hierar_pin.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_hierarchical_label.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_hierarchical_subsheet.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_junction.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_keepout_area.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_line.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_line2bus.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_line_label.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_pcb_target.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_polygon.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_power.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_rectangle.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_tracks.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_zone.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/add_zone_cutout.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/anchor.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/annotate.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/annotate_down_right.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/annotate_right_down.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/array.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/auto_associe.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/auto_delete_track.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/auto_track_width.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_back.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_bottom.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_front.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_left.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_right.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/axis3d_top.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/bom.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/book.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/break_bus.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/break_line.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/browse_files.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/cancel.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/change_entry_orient.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/checked_ok.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/component_select_alternate_shape.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/component_select_unit.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/config.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/contrast_mode.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/copper_layers_setup.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/copy.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/copy_library.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/copy_symbol.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/copycomponent.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/create_cmp_file.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/cursor.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/cursor_shape.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/cvpcb.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/dashline.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/datasheet.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/delete.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/delete_association.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/delete_gerber.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/directory.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/display_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/down.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/drc.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/drc_off.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/duplicate.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edges_sketch.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_comp_footprint.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_comp_ref.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_comp_value.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_module.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_part.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/edit_text.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/editor.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/eeschema.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/enter_sheet.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/erc.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/erc_green.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/ercerr.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/ercwarn.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/exit.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/export.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/export_dsn.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/export_footprint_names.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/export_idf.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/export_module.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/fabrication.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/file_footprint.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/fill_zone.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/find.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/find_replace.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/flag.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/fonts.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/footprint_text.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gbr_select_mode0.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gbr_select_mode1.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gbr_select_mode2.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/general_deletions.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/general_ratsnest.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gerber_file.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gerbview_clear_layers.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gerbview_drill_file.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gerbview_show_negative_objects.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/gl_change.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/glabel2label.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/glabel2text.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/green.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/grid.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/grid_select.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/grid_select_axis.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/hammer.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/help.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/hidden_pin.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/hierarchy_nav.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/hotkeys.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/image.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import3d.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import_cmp_from_lib.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import_footprint_names.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import_hierarchical_label.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/import_module.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/info.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/insert_module_board.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/invisible_text.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/kicad_icon_small.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/label.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/label2glabel.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/label2text.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_bg.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_catalan.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_chinese.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_cs.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_de.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_def.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_en.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_es.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_fi.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_fr.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_gr.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_hu.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_it.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_jp.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_ko.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_nl.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_pl.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_pt.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_ru.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lang_sl.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/language.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/layers_manager.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/leave_sheet.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/left.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lib_next.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lib_previous.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/libedit.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/library.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/library_browse.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/lines90.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/load_gerber.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/load_module_board.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/load_module_lib.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/local_ratsnest.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/locked.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/measurement.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mode_module.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mode_track.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/modratsnest.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_check.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_editor.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_filtered_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_full_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_library_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_pin_filtered_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_ratsnest.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/module_wizard.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/modview_icon.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/morgan1.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/morgan2.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/move.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_add_gap.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_add_line.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_add_shape.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_add_stub.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_add_stub_arc.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/mw_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/net_highlight.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/net_highlight_schematic.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/net_locked.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/net_unlocked.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/netlist.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_board.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_component.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_document.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_footprint.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_library.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_page_layout.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_project.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_project_with_template.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/new_symbol.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/noconn.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/normal.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/online_help.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/open_brd_file.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/open_document.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/open_library.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/open_page_layout.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/open_project.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/opt_show_polygon.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/options_pad.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/orient.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/ortho.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pad.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pad_dimensions.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pad_sketch.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pads_mask_layers.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pagelayout_normal_view_mode.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pagelayout_special_view_mode.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/palette.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/part_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/paste.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pcb_offset.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pcbnew.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin2pin.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin_name_to.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin_number_to.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin_size_to.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin_table.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/pin_to.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot_dxf.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot_hpg.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot_pdf.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot_ps.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/plot_svg.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/polar_coord.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/post_compo.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/post_drill.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/post_module.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/preference.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/print_button.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/ps_router.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/py_script.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/ratsnest.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/read_setup.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/red.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/redo.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/reload.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/reload2.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/reset_text.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/resize_sheet.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/right.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_neg_x.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_neg_y.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_neg_z.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_pos_x.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_pos_y.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/rotate_pos_z.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save_as.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save_library.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save_part_in_mem.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save_project.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/save_setup.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/select_grid.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/select_layer_pair.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/select_w_layer.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/shape_3d.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/sheetset.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_dcodenumber.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_footprint.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_mod_edge.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_zone.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_zone_disable.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/show_zone_outline_only.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/showtrack.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/spreadsheet.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/svg_file.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/swap_layer.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/text.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/text_sketch.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/three_d.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/tool_ratsnest.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/tools.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/track_locked.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/track_sketch.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/track_unlocked.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/transistor.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/undelete.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/undo.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/unit_inch.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/unit_mm.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/unknown.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/unlocked.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/unzip.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/up.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/update_module_board.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/use_3D_copper_thickness.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/via.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/via_sketch.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/warning.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/web_support.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/width_net.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/width_segment.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/width_track.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/width_track_via.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/width_vias.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zip.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zip_tool.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zone_duplicate.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zone_unfill.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_area.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_center_on_screen.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_fit_in_page.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_in.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_out.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_redraw.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/icons/zoom_selection.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/kicad-settings-language.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/launch_pane.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/logo.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/main_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/opamp_symbol.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/pcbnew_3d_viewer.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/poedit-settings-dict.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/poedit-settings-fr.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/poedit-settings-keywords.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/poedit-settings-paths.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/poedit-settings.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/project_tree.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/resistor_value.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/route_icon.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sch_with_buses.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/schematic-sample.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/select_edge_cuts.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_main_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_main_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_model_passive.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_model_source.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_model_subckt.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/sim_settings.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/test_idf_blobs.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/toolbar_schedit.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/toolbar_schedit_rightside.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/toolbar_schedit_standalone.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/toolbar_viewlib_part.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/images/wires_labels.png -%%PORTDOCS%%%%DOCSDIR%%/help/de/kicad.epub -%%PORTDOCS%%%%DOCSDIR%%/help/de/kicad.html -%%PORTDOCS%%%%DOCSDIR%%/help/de/kicad.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/de/pcbnew.epub -%%PORTDOCS%%%%DOCSDIR%%/help/de/pcbnew.html -%%PORTDOCS%%%%DOCSDIR%%/help/de/pcbnew.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/de/pl_editor.epub -%%PORTDOCS%%%%DOCSDIR%%/help/de/pl_editor.html -%%PORTDOCS%%%%DOCSDIR%%/help/de/pl_editor.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/en/cvpcb.epub -%%PORTDOCS%%%%DOCSDIR%%/help/en/cvpcb.html -%%PORTDOCS%%%%DOCSDIR%%/help/en/cvpcb.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/en/eeschema.epub -%%PORTDOCS%%%%DOCSDIR%%/help/en/eeschema.html -%%PORTDOCS%%%%DOCSDIR%%/help/en/eeschema.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/en/gerbview.epub -%%PORTDOCS%%%%DOCSDIR%%/help/en/gerbview.html -%%PORTDOCS%%%%DOCSDIR%%/help/en/gerbview.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/en/getting_started_in_kicad.epub -%%PORTDOCS%%%%DOCSDIR%%/help/en/getting_started_in_kicad.html -%%PORTDOCS%%%%DOCSDIR%%/help/en/getting_started_in_kicad.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/en/gui_translation_howto.epub -%%PORTDOCS%%%%DOCSDIR%%/help/en/gui_translation_howto.html -%%PORTDOCS%%%%DOCSDIR%%/help/en/gui_translation_howto.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/en/idf_exporter.epub -%%PORTDOCS%%%%DOCSDIR%%/help/en/idf_exporter.html -%%PORTDOCS%%%%DOCSDIR%%/help/en/idf_exporter.pdf -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Calculation1.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Calculation2.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Footprint_library_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Footprint_tables_list.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Library_list_menu_item.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Library_tables_menu_item.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_3D_file_browser.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_alias_path_config.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_context_menu_graphics.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_context_menu_module_parameters.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_context_menu_pads.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_footprint_level_pad_settings.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_footprint_text_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_internal_path_config.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_main_window.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_3d_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_attributes.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_autoplace_settings.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_properties.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_properties_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_module_properties_documentation_fields.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_pad_delta_example.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_pad_level_pad_settings.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_pad_offset_example.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_pad_properties_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Modedit_top_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_DRC_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_action_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_add_cutout_menu_item.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_advanced_tracing_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_archive_footprints_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_array_dialog_circular.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_array_dialog_grid.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_array_grid_offsets.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_array_grid_stagger_cols_3.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_array_grid_stagger_rows_2.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_bad_tracks_deletion_option.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_board_outline_imported_from_a_DXF.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_board_outline_with_dogpile.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_board_outline_with_globally_placed_modules.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_change_modules_button.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_circuit_after_placement.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_context_module_mode_module_under_cursor.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_context_module_mode_no_module_under_cursor.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_coordinate_status_display.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_copper_layers_contrast_high.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_copper_layers_contrast_normal.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_creating_new_track.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_design_rules_dropdown.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_design_rules_editor_global_tab.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_design_rules_editor_netclass_tab.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_design_rules_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_design_rules_top_toolbar.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_dimensions_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_dr_example_rustic.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_dr_example_standard.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_drill_file_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_drill_origin_setting.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_edit_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_example_library.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_exchange_module_option.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_extra_footprints_deletion_option.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_file_menu.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_fill_refill_all_zones.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_final_preparation_example_board.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_footprint_exchange_options.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_general_options_dialog.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_grid_size_dropdown.png -%%PORTDOCS%%%%DOCSDIR%%/help/en/images/Pcbnew_import_spread_footprints.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** From owner-svn-ports-all@freebsd.org Fri Jun 21 21:28:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3FC7515BFB19; Fri, 21 Jun 2019 21:28:08 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from smtp.burggraben.net (smtp.burggraben.net [IPv6:2a01:4f8:140:50a2::3:1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "ns.exwg.net", Issuer "Christoph Moench-Tegeder" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id C232F81943; Fri, 21 Jun 2019 21:28:07 +0000 (UTC) (envelope-from cmt@burggraben.net) Received: from localhost (localhost [127.0.0.1]) by smtp.burggraben.net (Postfix) with ESMTP id 9F98A6002FA; Fri, 21 Jun 2019 23:28:05 +0200 (CEST) X-Spam-Scanned: by amavisd-new at exwg.net Received: from smtp.burggraben.net ([127.0.0.1]) by localhost (ns.burggraben.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QuyXfZLzOF9E; Fri, 21 Jun 2019 23:28:00 +0200 (CEST) Received: from elch.exwg.net (elch.exwg.net [IPv6:2001:470:7120:1:127b:44ff:fe4f:148d]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "elch.exwg.net", Issuer "Christoph Moench-Tegeder" (verified OK)) by smtp.burggraben.net (Postfix) with ESMTPS; Fri, 21 Jun 2019 23:28:00 +0200 (CEST) Received: by elch.exwg.net (Postfix, from userid 1000) id 3F0B91399F5; Fri, 21 Jun 2019 23:28:00 +0200 (CEST) Date: Fri, 21 Jun 2019 23:28:00 +0200 From: Christoph Moench-Tegeder To: Alexey Dokuchaev Cc: Christoph Moench-Tegeder , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504800 - in head/cad: . kicad-doc Message-ID: <20190621212800.GA2542@elch.exwg.net> References: <201906211352.x5LDq1E6071357@repo.freebsd.org> <20190621145405.GA390@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20190621145405.GA390@FreeBSD.org> User-Agent: Mutt/1.12.0 (2019-05-25) X-Rspamd-Queue-Id: C232F81943 X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.98 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.982,0]; REPLY(-4.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 21:28:08 -0000 ## Alexey Dokuchaev (danfe@freebsd.org): > Sorry, but I'm afraid it was badly reviewed. We can fix that... and it's all on me. > > +MAINTAINER= cmt@FreeBSD.org > > +COMMENT= KiCad Online Documentation/Help Files > > Comment is confusing ("online" typically means one does not have to > install anything locally, that makes it "offline")... Not that I'm attached to "online" - but I was thinking "online docs" == "whatever you get with the built-in help function", and "offline docs" are printed (or something to that tune). That may indicate that I'm somewhat old. Whatever. > > +++ head/cad/kicad-doc/pkg-descr Fri Jun 21 13:52:01 2019 > > @@ -0,0 +1,3 @@ > > +This port installs the official KiCad schematic symbol libraries. > > ... and does not align well with the port description. Argh, thanks for spotting. Lost edit. But there's not much to this port to describe, it's just the help files - it just felt "more right" to have them as their own ports, as this thing alone is around 230MB package file and built from it's own repository. > > +PLIST_SUB= PORTDOCS="" > > Why not simply remove %%PORTDOCS%% from the pkg-plist if you're setting > it to an empty value unconditionally? Because I was holding it wrong, in some non-reproducable way. I was getting empty packages until I found this hack - but now that I've made an ass of myself, everything works again. > > +NO_ARCH= yes > > This knob should appear earlier. Where? I can't find it anywhere in "Order of Variables" (Ch. 15 of the Porter's Handbook), so I was putting it at the end, as in "The Rest of the Variables") and portlint didn't complain. And looking at other ports, the situation is... not clear. Regards, Christoph -- Spare Space From owner-svn-ports-all@freebsd.org Fri Jun 21 21:35:40 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B76FC15BFDDA; Fri, 21 Jun 2019 21:35:40 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 516D781E7D; Fri, 21 Jun 2019 21:35:40 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 1F8BD1C0F6; Fri, 21 Jun 2019 21:35:40 +0000 (UTC) From: Jan Beich To: Philip Paeps Cc: Santhosh Raju , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504812 - in head/www/cliqz: . files References: <201906212010.x5LKAa6J067592@repo.freebsd.org> Date: Fri, 21 Jun 2019 23:35:34 +0200 In-Reply-To: <201906212010.x5LKAa6J067592@repo.freebsd.org> (Philip Paeps's message of "Fri, 21 Jun 2019 20:10:36 +0000 (UTC)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 516D781E7D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.92 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_SHORT(-0.93)[-0.930,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; TAGGED_RCPT(0.00)[]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 21:35:40 -0000 Philip Paeps writes: > Author: philip > Date: Fri Jun 21 20:10:36 2019 > New Revision: 504812 > URL: https://svnweb.freebsd.org/changeset/ports/504812 > > Log: > www/cliqz: update to 1.27.3 > > PR: 238410 > Submitted by: Santhosh Raju (maintainer) [...] > MAKE_ENV+= LLVM_CONFIG=llvm-config${LLVM_DEFAULT} > +MAKE_ENV+= LLVM_OBJDUMP=${LOCALBASE}/llvm${LLVM_DEFAULT}/bin/llvm-objdump Both LLVM_CONFIG and LLVM_OBJDUMP can be dropped in favor of CC/CXX e.g., MAKE_ENV+= CC=clang${LLVM_DEFAULT} CXX=clang++${LLVM_DEFAULT} as LLVM_CONFIG will be replaced by --with-libclang-path in future, see https://bugzilla.mozilla.org/show_bug.cgi?id=1526857 From owner-svn-ports-all@freebsd.org Fri Jun 21 21:38:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA4D715BFE39; Fri, 21 Jun 2019 21:38:00 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 501DC81F6B; Fri, 21 Jun 2019 21:38:00 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 25B381C1E0; Fri, 21 Jun 2019 21:38:00 +0000 (UTC) From: Jan Beich To: Philip Paeps Cc: Santhosh Raju , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504812 - in head/www/cliqz: . files References: <201906212010.x5LKAa6J067592@repo.freebsd.org> Date: Fri, 21 Jun 2019 23:37:54 +0200 In-Reply-To: (Jan Beich's message of "Fri, 21 Jun 2019 23:35:34 +0200") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 501DC81F6B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.92 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; TAGGED_RCPT(0.00)[]; NEURAL_HAM_SHORT(-0.93)[-0.930,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 21:38:00 -0000 Jan Beich writes: > Philip Paeps writes: > >> Author: philip >> Date: Fri Jun 21 20:10:36 2019 >> New Revision: 504812 >> URL: https://svnweb.freebsd.org/changeset/ports/504812 >> >> Log: >> www/cliqz: update to 1.27.3 >> >> PR: 238410 >> Submitted by: Santhosh Raju (maintainer) > [...] >> MAKE_ENV+= LLVM_CONFIG=llvm-config${LLVM_DEFAULT} >> +MAKE_ENV+= LLVM_OBJDUMP=${LOCALBASE}/llvm${LLVM_DEFAULT}/bin/llvm-objdump > > Both LLVM_CONFIG and LLVM_OBJDUMP can be dropped in favor of CC/CXX e.g., > > MAKE_ENV+= CC=clang${LLVM_DEFAULT} CXX=clang++${LLVM_DEFAULT} > > as LLVM_CONFIG will be replaced by --with-libclang-path in future, > see https://bugzilla.mozilla.org/show_bug.cgi?id=1526857 And CC/CXX can be set outside of MAKE_ENV e.g., # Consistently use same compiler for browser and bindgen CC=clang${LLVM_DEFAULT} CXX=clang++${LLVM_DEFAULT} From owner-svn-ports-all@freebsd.org Fri Jun 21 21:48:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DC21F15C086B; Fri, 21 Jun 2019 21:48:39 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7BD7D8287B; Fri, 21 Jun 2019 21:48:39 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 4D4DD1C5F4; Fri, 21 Jun 2019 21:48:39 +0000 (UTC) From: Jan Beich To: Philip Paeps Cc: svn-ports-head@freebsd.org, Santhosh Raju , svn-ports-all@freebsd.org, ports-committers@freebsd.org Subject: Re: svn commit: r504812 - in head/www/cliqz: . files References: <201906212010.x5LKAa6J067592@repo.freebsd.org> Date: Fri, 21 Jun 2019 23:48:36 +0200 In-Reply-To: (Jan Beich's message of "Fri, 21 Jun 2019 23:37:54 +0200") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 7BD7D8287B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; TAGGED_RCPT(0.00)[]; NEURAL_HAM_SHORT(-0.93)[-0.934,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 21:48:40 -0000 Jan Beich writes: > Jan Beich writes: > >> Philip Paeps writes: >> >>> Author: philip >>> Date: Fri Jun 21 20:10:36 2019 >>> New Revision: 504812 >>> URL: https://svnweb.freebsd.org/changeset/ports/504812 >>> >>> Log: >>> www/cliqz: update to 1.27.3 >>> >>> PR: 238410 >>> Submitted by: Santhosh Raju (maintainer) >> [...] >>> MAKE_ENV+= LLVM_CONFIG=llvm-config${LLVM_DEFAULT} >>> +MAKE_ENV+= LLVM_OBJDUMP=${LOCALBASE}/llvm${LLVM_DEFAULT}/bin/llvm-objdump >> >> Both LLVM_CONFIG and LLVM_OBJDUMP can be dropped in favor of CC/CXX e.g., >> >> MAKE_ENV+= CC=clang${LLVM_DEFAULT} CXX=clang++${LLVM_DEFAULT} >> >> as LLVM_CONFIG will be replaced by --with-libclang-path in future, >> see https://bugzilla.mozilla.org/show_bug.cgi?id=1526857 > > And CC/CXX can be set outside of MAKE_ENV e.g., > > # Consistently use same compiler for browser and bindgen > CC=clang${LLVM_DEFAULT} > CXX=clang++${LLVM_DEFAULT} Nevermind, Clang (C++ part) isn't stable on powerpc64 yet but as neither www/cliqz nor www/firefox build on powerpc64 it's probably not something to worry about, anyway. http://pylon.nyi.freebsd.org/data/latest-per-pkg/cliqz/ http://pylon.nyi.freebsd.org/data/latest-per-pkg/firefox/ From owner-svn-ports-all@freebsd.org Fri Jun 21 21:49:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E1E1515C08A3; Fri, 21 Jun 2019 21:49:03 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8903982952; Fri, 21 Jun 2019 21:49:03 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5F45710F2; Fri, 21 Jun 2019 21:49:03 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LLn3LT019849; Fri, 21 Jun 2019 21:49:03 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LLn3rE019848; Fri, 21 Jun 2019 21:49:03 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906212149.x5LLn3rE019848@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Fri, 21 Jun 2019 21:49:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504815 - head/math/clblas/files X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/math/clblas/files X-SVN-Commit-Revision: 504815 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8903982952 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 21:49:04 -0000 Author: linimon Date: Fri Jun 21 21:49:02 2019 New Revision: 504815 URL: https://svnweb.freebsd.org/changeset/ports/504815 Log: Remove stray ";" which was mistakenly added during editing. Reported by: jbeich Modified: head/math/clblas/files/patch-src_library_blas_xgemm.cc Modified: head/math/clblas/files/patch-src_library_blas_xgemm.cc ============================================================================== --- head/math/clblas/files/patch-src_library_blas_xgemm.cc Fri Jun 21 21:27:49 2019 (r504814) +++ head/math/clblas/files/patch-src_library_blas_xgemm.cc Fri Jun 21 21:49:02 2019 (r504815) @@ -24,12 +24,3 @@ static char *getKernelName(cl_kernel clKernel) { -@@ -534,7 +534,7 @@ clblasGemm( - if (needRowKernel) makeGemmKernel( rowClKernel, commandQueues[0], rowKernelSource, sourceBuildOptions, &rowKernelBinary, rowKernelBinarySize, binaryBuildOptions); - if (needColKernel) makeGemmKernel( colClKernel, commandQueues[0], colKernelSource, sourceBuildOptions, &colKernelBinary, colKernelBinarySize, binaryBuildOptions); - if (needCornerKernel) makeGemmKernel(cornerClKernel, commandQueues[0], cornerKernelSource, sourceBuildOptions, &cornerKernelBinary, cornerKernelBinarySize, binaryBuildOptions); -- const size_t localWorkSize[2] = { workGroupNumRows, workGroupNumCols }; -+ const size_t localWorkSize[2] = { workGroupNumRows, workGroupNumCols };; - unsigned int numKernelsEnqueued = 0; - - /****************************************************************************** From owner-svn-ports-all@freebsd.org Fri Jun 21 22:20:16 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9521315C13D2; Fri, 21 Jun 2019 22:20:16 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2E94E8392C; Fri, 21 Jun 2019 22:20:16 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 1F8201CC41; Fri, 21 Jun 2019 22:20:16 +0000 (UTC) From: Jan Beich To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r504811 - head/net/tcpkali References: <201906212006.x5LK6ITT066843@repo.freebsd.org> Date: Sat, 22 Jun 2019 00:20:10 +0200 In-Reply-To: (Jan Beich's message of "Fri, 21 Jun 2019 23:27:41 +0200") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 2E94E8392C X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.996,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.94)[-0.943,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 22:20:16 -0000 Jan Beich writes: > Mark Linimon writes: > >> -.include >> +.include >> + >> +.if ${CHOSEN_COMPILER_TYPE} == gcc >> +BROKEN= src/tcpkali_atomic.h unconditionally includes x86 assembler >> +.endif > > lang/gcc8 on powerpc64 does support __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4, > so maybe try USES=compiler:c11 instead. GCC 4.2 on amd64 does define > __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4 but not __SIZEOF_SIZE_T__. As the Nevermind, except USES=compiler:c11 may still help. I've made too many mistakes in my testing and analysis e.g., SIZEOF_SIZE_T is defined by autoconf, GCC 4.2 amd64 doesn't define __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4. From owner-svn-ports-all@freebsd.org Fri Jun 21 22:24:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 90B8B15C1597; Fri, 21 Jun 2019 22:24:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2BD5183C99; Fri, 21 Jun 2019 22:24:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0DBE117A3; Fri, 21 Jun 2019 22:24:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LMOU17040494; Fri, 21 Jun 2019 22:24:30 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LMOT49040486; Fri, 21 Jun 2019 22:24:29 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906212224.x5LMOT49040486@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Fri, 21 Jun 2019 22:24:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504816 - in head/devel: . kms-cmake-utils X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . kms-cmake-utils X-SVN-Commit-Revision: 504816 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2BD5183C99 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.975,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 22:24:31 -0000 Author: yuri Date: Fri Jun 21 22:24:29 2019 New Revision: 504816 URL: https://svnweb.freebsd.org/changeset/ports/504816 Log: New port: devel/kms-cmake-utils: CMake common files used to build all Kurento C/C++ projects Added: head/devel/kms-cmake-utils/ head/devel/kms-cmake-utils/Makefile (contents, props changed) head/devel/kms-cmake-utils/distinfo (contents, props changed) head/devel/kms-cmake-utils/pkg-descr (contents, props changed) head/devel/kms-cmake-utils/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Fri Jun 21 21:49:02 2019 (r504815) +++ head/devel/Makefile Fri Jun 21 22:24:29 2019 (r504816) @@ -1079,6 +1079,7 @@ SUBDIR += kimwitu SUBDIR += kio-extras SUBDIR += kiwix-lib + SUBDIR += kms-cmake-utils SUBDIR += kodi-platform SUBDIR += kore SUBDIR += kronosnet Added: head/devel/kms-cmake-utils/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kms-cmake-utils/Makefile Fri Jun 21 22:24:29 2019 (r504816) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= kms-cmake-utils +DISTVERSION= 6.10.0 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= CMake common files used to build all Kurento C/C++ projects + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= Kurento + +NO_ARCH= yes + +.include Added: head/devel/kms-cmake-utils/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kms-cmake-utils/distinfo Fri Jun 21 22:24:29 2019 (r504816) @@ -0,0 +1,3 @@ +TIMESTAMP = 1561155312 +SHA256 (Kurento-kms-cmake-utils-6.10.0_GH0.tar.gz) = 1c81c36d1ac44fbd3f391c5859706b60b0f3f6377abb1cd825e0a559332d9c06 +SIZE (Kurento-kms-cmake-utils-6.10.0_GH0.tar.gz) = 18157 Added: head/devel/kms-cmake-utils/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kms-cmake-utils/pkg-descr Fri Jun 21 22:24:29 2019 (r504816) @@ -0,0 +1,7 @@ +Common CMake utilities for Kurento projects. + +Kurento is an open source software project providing a platform suitable for +creating modular applications with advanced real-time communication +capabilities. + +WWW: https://github.com/Kurento/kms-cmake-utils Added: head/devel/kms-cmake-utils/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/kms-cmake-utils/pkg-plist Fri Jun 21 22:24:29 2019 (r504816) @@ -0,0 +1,10 @@ +share/cmake-3.14/Modules/CommonBuildFlags.cmake +share/cmake-3.14/Modules/DpkgBuildFlags.cmake +share/cmake-3.14/Modules/FindGLIB-GENMARSHAL.cmake +share/cmake-3.14/Modules/FindGLIB-MKENUMS.cmake +share/cmake-3.14/Modules/FindKurentoHelpers.cmake +share/cmake-3.14/Modules/GLibHelpers.cmake +share/cmake-3.14/Modules/GenericFind.cmake +share/cmake-3.14/Modules/KurentoGitHelpers.cmake +share/cmake-3.14/Modules/TestHelpers.cmake +share/cmake-3.14/Modules/VersionHelpers.cmake From owner-svn-ports-all@freebsd.org Fri Jun 21 23:08:40 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 195DA15C2F8C; Fri, 21 Jun 2019 23:08:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B22B4858F5; Fri, 21 Jun 2019 23:08:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 96E131E64; Fri, 21 Jun 2019 23:08:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN8di3061687; Fri, 21 Jun 2019 23:08:39 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN8ch6061683; Fri, 21 Jun 2019 23:08:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212308.x5LN8ch6061683@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:08:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504817 - in head/audio: . py-audioread X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/audio: . py-audioread X-SVN-Commit-Revision: 504817 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B22B4858F5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:08:40 -0000 Author: sunpoet Date: Fri Jun 21 23:08:38 2019 New Revision: 504817 URL: https://svnweb.freebsd.org/changeset/ports/504817 Log: Add py-audioread 2.1.8 audioread decodes audio files using whichever backend is available. The library currently supports: - Gstreamer via PyGObject. - MAD via the pymad bindings. - FFmpeg or Libav via its command-line interface. - The standard library wave, aifc, and sunau modules (for uncompressed audio formats). WWW: https://github.com/beetbox/audioread Added: head/audio/py-audioread/ head/audio/py-audioread/Makefile (contents, props changed) head/audio/py-audioread/distinfo (contents, props changed) head/audio/py-audioread/pkg-descr (contents, props changed) Modified: head/audio/Makefile Modified: head/audio/Makefile ============================================================================== --- head/audio/Makefile Fri Jun 21 22:24:29 2019 (r504816) +++ head/audio/Makefile Fri Jun 21 23:08:38 2019 (r504817) @@ -661,6 +661,7 @@ SUBDIR += py-ao SUBDIR += py-apetag SUBDIR += py-aubio + SUBDIR += py-audioread SUBDIR += py-cddb SUBDIR += py-discid SUBDIR += py-discogs-client Added: head/audio/py-audioread/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-audioread/Makefile Fri Jun 21 23:08:38 2019 (r504817) @@ -0,0 +1,33 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= audioread +PORTVERSION= 2.1.8 +CATEGORIES= audio python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Multi-library, cross-platform audio decoding + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest-runner>=0:devel/py-pytest-runner@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +OPTIONS_MULTI= BACKEND +OPTIONS_MULTI_BACKEND= FFMPEG PYMAD +OPTIONS_DEFAULT=PYMAD +FFMPEG_DESC= Use ffmpeg as backend +PYMAD_DESC= Use pymad as backend + +FFMPEG_RUN_DEPENDS= ffmpeg:multimedia/ffmpeg +PYMAD_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pymad>=0:audio/py-pymad@${PY_FLAVOR} + +.include Added: head/audio/py-audioread/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-audioread/distinfo Fri Jun 21 23:08:38 2019 (r504817) @@ -0,0 +1,3 @@ +TIMESTAMP = 1561153845 +SHA256 (audioread-2.1.8.tar.gz) = 073904fabc842881e07bd3e4a5776623535562f70b1655b635d22886168dd168 +SIZE (audioread-2.1.8.tar.gz) = 21222 Added: head/audio/py-audioread/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/py-audioread/pkg-descr Fri Jun 21 23:08:38 2019 (r504817) @@ -0,0 +1,9 @@ +audioread decodes audio files using whichever backend is available. The library +currently supports: +- Gstreamer via PyGObject. +- MAD via the pymad bindings. +- FFmpeg or Libav via its command-line interface. +- The standard library wave, aifc, and sunau modules (for uncompressed audio + formats). + +WWW: https://github.com/beetbox/audioread From owner-svn-ports-all@freebsd.org Fri Jun 21 23:08:52 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CFF4615C2FB7; Fri, 21 Jun 2019 23:08:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 66C2F859C5; Fri, 21 Jun 2019 23:08:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 401A81E66; Fri, 21 Jun 2019 23:08:52 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN8qZJ061980; Fri, 21 Jun 2019 23:08:52 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN8pqA061978; Fri, 21 Jun 2019 23:08:51 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212308.x5LN8pqA061978@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:08:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504819 - head/devel/p5-CPAN-Perl-Releases X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-CPAN-Perl-Releases X-SVN-Commit-Revision: 504819 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 66C2F859C5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:08:53 -0000 Author: sunpoet Date: Fri Jun 21 23:08:51 2019 New Revision: 504819 URL: https://svnweb.freebsd.org/changeset/ports/504819 Log: Update to 4.08 Changes: https://metacpan.org/changes/distribution/CPAN-Perl-Releases Modified: head/devel/p5-CPAN-Perl-Releases/Makefile head/devel/p5-CPAN-Perl-Releases/distinfo Modified: head/devel/p5-CPAN-Perl-Releases/Makefile ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/Makefile Fri Jun 21 23:08:45 2019 (r504818) +++ head/devel/p5-CPAN-Perl-Releases/Makefile Fri Jun 21 23:08:51 2019 (r504819) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= CPAN-Perl-Releases -PORTVERSION= 4.06 +PORTVERSION= 4.08 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-CPAN-Perl-Releases/distinfo ============================================================================== --- head/devel/p5-CPAN-Perl-Releases/distinfo Fri Jun 21 23:08:45 2019 (r504818) +++ head/devel/p5-CPAN-Perl-Releases/distinfo Fri Jun 21 23:08:51 2019 (r504819) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558782869 -SHA256 (CPAN-Perl-Releases-4.06.tar.gz) = 9f8d62c80288f3ce07633b68bb15e948c43b600753e0c556a250c95504670a0a -SIZE (CPAN-Perl-Releases-4.06.tar.gz) = 23875 +TIMESTAMP = 1561147692 +SHA256 (CPAN-Perl-Releases-4.08.tar.gz) = fbe17247feadfdb58d44cd5271fb5d9631ad27d76b6b8a16e25c9028f0c1cd01 +SIZE (CPAN-Perl-Releases-4.08.tar.gz) = 23763 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:08:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85ED915C2FB1; Fri, 21 Jun 2019 23:08:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 675AE85996; Fri, 21 Jun 2019 23:08:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6FCA51E65; Fri, 21 Jun 2019 23:08:46 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN8kux061855; Fri, 21 Jun 2019 23:08:46 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN8jtm061852; Fri, 21 Jun 2019 23:08:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212308.x5LN8jtm061852@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:08:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504818 - in head/math: . py-gym X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/math: . py-gym X-SVN-Commit-Revision: 504818 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 675AE85996 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:08:51 -0000 Author: sunpoet Date: Fri Jun 21 23:08:45 2019 New Revision: 504818 URL: https://svnweb.freebsd.org/changeset/ports/504818 Log: Add py-gym 0.12.5 OpenAI Gym is a toolkit for developing and comparing reinforcement learning algorithms. This is the gym open-source library, which gives you access to a standardized set of environments. gym makes no assumptions about the structure of your agent, and is compatible with any numerical computation library, such as TensorFlow or Theano. You can use it from Python code, and soon from other languages. There are two basic concepts in reinforcement learning: the environment (namely, the outside world) and the agent (namely, the algorithm you are writing). The agent sends actions to the environment, and the environment replies with observations and rewards (that is, a score). The core gym interface is Env, which is the unified environment interface. There is no interface for agents; that part is left to you. The following are the Env methods you should know: - reset(self): Reset the environment's state. Returns observation. - step(self, action): Step the environment by one timestep. Returns observation, reward, done, info. - render(self, mode='human'): Render one frame of the environment. The default mode will do something human friendly, such as pop up a window. WWW: https://gym.openai.com/ WWW: https://github.com/openai/gym Added: head/math/py-gym/ head/math/py-gym/Makefile (contents, props changed) head/math/py-gym/distinfo (contents, props changed) head/math/py-gym/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Fri Jun 21 23:08:38 2019 (r504817) +++ head/math/Makefile Fri Jun 21 23:08:45 2019 (r504818) @@ -707,6 +707,7 @@ SUBDIR += py-gnuplot SUBDIR += py-grandalf SUBDIR += py-graphillion + SUBDIR += py-gym SUBDIR += py-igakit SUBDIR += py-igraph SUBDIR += py-intspan Added: head/math/py-gym/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-gym/Makefile Fri Jun 21 23:08:45 2019 (r504818) @@ -0,0 +1,27 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= gym +PORTVERSION= 0.12.5 +CATEGORIES= math python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= OpenAI toolkit for developing and comparing your reinforcement learning agents + +LICENSE= MIT + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.10.4:math/py-numpy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pyglet>=0:graphics/py-pyglet@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}scipy>=0:science/py-scipy@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} + +USES= python +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes + +.include Added: head/math/py-gym/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-gym/distinfo Fri Jun 21 23:08:45 2019 (r504818) @@ -0,0 +1,3 @@ +TIMESTAMP = 1561148961 +SHA256 (gym-0.12.5.tar.gz) = 027422f59b662748eae3420b804e35bbf953f62d40cd96d2de9f842c08de822e +SIZE (gym-0.12.5.tar.gz) = 1544308 Added: head/math/py-gym/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/py-gym/pkg-descr Fri Jun 21 23:08:45 2019 (r504818) @@ -0,0 +1,24 @@ +OpenAI Gym is a toolkit for developing and comparing reinforcement learning +algorithms. This is the gym open-source library, which gives you access to a +standardized set of environments. + +gym makes no assumptions about the structure of your agent, and is compatible +with any numerical computation library, such as TensorFlow or Theano. You can +use it from Python code, and soon from other languages. + +There are two basic concepts in reinforcement learning: the environment (namely, +the outside world) and the agent (namely, the algorithm you are writing). The +agent sends actions to the environment, and the environment replies with +observations and rewards (that is, a score). + +The core gym interface is Env, which is the unified environment interface. There +is no interface for agents; that part is left to you. The following are the Env +methods you should know: +- reset(self): Reset the environment's state. Returns observation. +- step(self, action): Step the environment by one timestep. Returns observation, + reward, done, info. +- render(self, mode='human'): Render one frame of the environment. The default + mode will do something human friendly, such as pop up a window. + +WWW: https://gym.openai.com/ +WWW: https://github.com/openai/gym From owner-svn-ports-all@freebsd.org Fri Jun 21 23:09:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E905615C3013; Fri, 21 Jun 2019 23:09:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 879FA85B0F; Fri, 21 Jun 2019 23:09:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E2CAE1E67; Fri, 21 Jun 2019 23:08:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN8wfE062109; Fri, 21 Jun 2019 23:08:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN8wFW062107; Fri, 21 Jun 2019 23:08:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212308.x5LN8wFW062107@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:08:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504820 - head/devel/p5-Module-CoreList X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-Module-CoreList X-SVN-Commit-Revision: 504820 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 879FA85B0F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:09:05 -0000 Author: sunpoet Date: Fri Jun 21 23:08:58 2019 New Revision: 504820 URL: https://svnweb.freebsd.org/changeset/ports/504820 Log: Update to 5.20190620 Changes: https://metacpan.org/changes/distribution/Module-CoreList Modified: head/devel/p5-Module-CoreList/Makefile head/devel/p5-Module-CoreList/distinfo Modified: head/devel/p5-Module-CoreList/Makefile ============================================================================== --- head/devel/p5-Module-CoreList/Makefile Fri Jun 21 23:08:51 2019 (r504819) +++ head/devel/p5-Module-CoreList/Makefile Fri Jun 21 23:08:58 2019 (r504820) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Module-CoreList -PORTVERSION= 5.20190524 +PORTVERSION= 5.20190620 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- Modified: head/devel/p5-Module-CoreList/distinfo ============================================================================== --- head/devel/p5-Module-CoreList/distinfo Fri Jun 21 23:08:51 2019 (r504819) +++ head/devel/p5-Module-CoreList/distinfo Fri Jun 21 23:08:58 2019 (r504820) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558782872 -SHA256 (Module-CoreList-5.20190524.tar.gz) = 01cb835843da4ff9c626cb6ea622f0c10eed1ef28ee7802012015d55a4cff428 -SIZE (Module-CoreList-5.20190524.tar.gz) = 109032 +TIMESTAMP = 1561147694 +SHA256 (Module-CoreList-5.20190620.tar.gz) = 319092da2ca6432549dd054da43a349ec6afd29a1ac3e8be779c130d283b2159 +SIZE (Module-CoreList-5.20190620.tar.gz) = 110052 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:09:08 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7BB3A15C3040; Fri, 21 Jun 2019 23:09:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1FA2385B6B; Fri, 21 Jun 2019 23:09:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A66701E68; Fri, 21 Jun 2019 23:09:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN94aC062238; Fri, 21 Jun 2019 23:09:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN94PX062236; Fri, 21 Jun 2019 23:09:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212309.x5LN94PX062236@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:09:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504821 - head/devel/p5-Proc-ProcessTable X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/p5-Proc-ProcessTable X-SVN-Commit-Revision: 504821 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1FA2385B6B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:09:08 -0000 Author: sunpoet Date: Fri Jun 21 23:09:03 2019 New Revision: 504821 URL: https://svnweb.freebsd.org/changeset/ports/504821 Log: Update to 0.59 Changes: https://metacpan.org/changes/distribution/Proc-ProcessTable Modified: head/devel/p5-Proc-ProcessTable/Makefile head/devel/p5-Proc-ProcessTable/distinfo Modified: head/devel/p5-Proc-ProcessTable/Makefile ============================================================================== --- head/devel/p5-Proc-ProcessTable/Makefile Fri Jun 21 23:08:58 2019 (r504820) +++ head/devel/p5-Proc-ProcessTable/Makefile Fri Jun 21 23:09:03 2019 (r504821) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Proc-ProcessTable -PORTVERSION= 0.58 +PORTVERSION= 0.59 CATEGORIES= devel perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:JWB Modified: head/devel/p5-Proc-ProcessTable/distinfo ============================================================================== --- head/devel/p5-Proc-ProcessTable/distinfo Fri Jun 21 23:08:58 2019 (r504820) +++ head/devel/p5-Proc-ProcessTable/distinfo Fri Jun 21 23:09:03 2019 (r504821) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560671643 -SHA256 (Proc-ProcessTable-0.58.tar.gz) = 8d4215d9c60b42e646c525ebfc63f65386dc0a014fbcc33baf43078668b68260 -SIZE (Proc-ProcessTable-0.58.tar.gz) = 75853 +TIMESTAMP = 1561147695 +SHA256 (Proc-ProcessTable-0.59.tar.gz) = f8cc5054d78c35a0ce39fb75430b4ef402e2a99013d2ec37e7997f316594606c +SIZE (Proc-ProcessTable-0.59.tar.gz) = 75949 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:09:12 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0087415C306C; Fri, 21 Jun 2019 23:09:12 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9C62285BB1; Fri, 21 Jun 2019 23:09:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4EBA11E69; Fri, 21 Jun 2019 23:09:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN9ArO062347; Fri, 21 Jun 2019 23:09:10 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN9ADg062346; Fri, 21 Jun 2019 23:09:10 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212309.x5LN9ADg062346@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:09:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504822 - head/audio/py-pyacoustid X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/audio/py-pyacoustid X-SVN-Commit-Revision: 504822 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9C62285BB1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:09:12 -0000 Author: sunpoet Date: Fri Jun 21 23:09:09 2019 New Revision: 504822 URL: https://svnweb.freebsd.org/changeset/ports/504822 Log: Add NO_ARCH - Take maintainership Modified: head/audio/py-pyacoustid/Makefile Modified: head/audio/py-pyacoustid/Makefile ============================================================================== --- head/audio/py-pyacoustid/Makefile Fri Jun 21 23:09:03 2019 (r504821) +++ head/audio/py-pyacoustid/Makefile Fri Jun 21 23:09:09 2019 (r504822) @@ -8,7 +8,7 @@ CATEGORIES= audio python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bindings for Chromaprint acoustic fingerprinting and the Acoustid API LICENSE= MIT @@ -16,6 +16,8 @@ LICENSE= MIT LIB_DEPENDS= libchromaprint.so:audio/chromaprint USES= python -USE_PYTHON= distutils autoplist +USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes .include From owner-svn-ports-all@freebsd.org Fri Jun 21 23:09:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8677115C3099; Fri, 21 Jun 2019 23:09:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E94A185CA7; Fri, 21 Jun 2019 23:09:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E8D861E6A; Fri, 21 Jun 2019 23:09:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN9Fkp062473; Fri, 21 Jun 2019 23:09:15 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN9Fcd062471; Fri, 21 Jun 2019 23:09:15 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212309.x5LN9Fcd062471@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:09:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504823 - head/devel/py-oslo.cache X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-oslo.cache X-SVN-Commit-Revision: 504823 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E94A185CA7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:09:20 -0000 Author: sunpoet Date: Fri Jun 21 23:09:15 2019 New Revision: 504823 URL: https://svnweb.freebsd.org/changeset/ports/504823 Log: Update to 1.36.0 Changes: https://docs.openstack.org/oslo.cache/latest/user/history.html Modified: head/devel/py-oslo.cache/Makefile head/devel/py-oslo.cache/distinfo Modified: head/devel/py-oslo.cache/Makefile ============================================================================== --- head/devel/py-oslo.cache/Makefile Fri Jun 21 23:09:09 2019 (r504822) +++ head/devel/py-oslo.cache/Makefile Fri Jun 21 23:09:15 2019 (r504823) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= oslo.cache -PORTVERSION= 1.35.0 +PORTVERSION= 1.36.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-oslo.cache/distinfo ============================================================================== --- head/devel/py-oslo.cache/distinfo Fri Jun 21 23:09:09 2019 (r504822) +++ head/devel/py-oslo.cache/distinfo Fri Jun 21 23:09:15 2019 (r504823) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558729957 -SHA256 (oslo.cache-1.35.0.tar.gz) = 7c77d5889e59815cfbe5aeaf37ca0c22faa4553a67b8ee66e896bf480f5b6bf9 -SIZE (oslo.cache-1.35.0.tar.gz) = 54900 +TIMESTAMP = 1561147699 +SHA256 (oslo.cache-1.36.0.tar.gz) = a1b91ca7eef8d5c15b48c9f7aabe01b6bfa96b971eb9ddb7c2fd4f79f713b259 +SIZE (oslo.cache-1.36.0.tar.gz) = 54680 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:09:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4159B15C30CE; Fri, 21 Jun 2019 23:09:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CC75E85D63; Fri, 21 Jun 2019 23:09:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 356881E6B; Fri, 21 Jun 2019 23:09:22 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN9Mcw062598; Fri, 21 Jun 2019 23:09:22 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN9L3v062596; Fri, 21 Jun 2019 23:09:21 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212309.x5LN9L3v062596@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:09:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504824 - head/devel/py-py-ubjson X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-py-ubjson X-SVN-Commit-Revision: 504824 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CC75E85D63 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:09:27 -0000 Author: sunpoet Date: Fri Jun 21 23:09:21 2019 New Revision: 504824 URL: https://svnweb.freebsd.org/changeset/ports/504824 Log: Update to 0.14.0 Changes: https://github.com/Iotic-Labs/py-ubjson/blob/master/CHANGELOG Modified: head/devel/py-py-ubjson/Makefile head/devel/py-py-ubjson/distinfo Modified: head/devel/py-py-ubjson/Makefile ============================================================================== --- head/devel/py-py-ubjson/Makefile Fri Jun 21 23:09:15 2019 (r504823) +++ head/devel/py-py-ubjson/Makefile Fri Jun 21 23:09:21 2019 (r504824) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= py-ubjson -PORTVERSION= 0.13.0 +PORTVERSION= 0.14.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-py-ubjson/distinfo ============================================================================== --- head/devel/py-py-ubjson/distinfo Fri Jun 21 23:09:15 2019 (r504823) +++ head/devel/py-py-ubjson/distinfo Fri Jun 21 23:09:21 2019 (r504824) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554924543 -SHA256 (py-ubjson-0.13.0.tar.gz) = fdfcb858ba281895fa77a02cc00ae8d9da306dd758a23acf28d48dd1ed25a7d5 -SIZE (py-ubjson-0.13.0.tar.gz) = 45670 +TIMESTAMP = 1561147702 +SHA256 (py-ubjson-0.14.0.tar.gz) = f742c87bccc8653329d3f79b8b3f40d44d11d17cce7f6d7025a73c52ebf91c66 +SIZE (py-ubjson-0.14.0.tar.gz) = 47892 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:09:34 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 392D915C3100; Fri, 21 Jun 2019 23:09:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D0A0A85E28; Fri, 21 Jun 2019 23:09:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6643C1E6D; Fri, 21 Jun 2019 23:09:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN9WqD062832; Fri, 21 Jun 2019 23:09:32 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN9W0m062831; Fri, 21 Jun 2019 23:09:32 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212309.x5LN9W0m062831@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:09:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504826 - head/textproc/py-elasticsearch X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/textproc/py-elasticsearch X-SVN-Commit-Revision: 504826 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D0A0A85E28 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:09:34 -0000 Author: sunpoet Date: Fri Jun 21 23:09:31 2019 New Revision: 504826 URL: https://svnweb.freebsd.org/changeset/ports/504826 Log: Cosmetic change Modified: head/textproc/py-elasticsearch/Makefile Modified: head/textproc/py-elasticsearch/Makefile ============================================================================== --- head/textproc/py-elasticsearch/Makefile Fri Jun 21 23:09:26 2019 (r504825) +++ head/textproc/py-elasticsearch/Makefile Fri Jun 21 23:09:31 2019 (r504826) @@ -19,9 +19,10 @@ TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel ${PYTHON_PKGNAMEPREFIX}pyaml>=0:textproc/py-pyaml@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=2.0.0:www/py-requests@${PY_FLAVOR} -NO_ARCH= yes USES= python USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes OPTIONS_DEFINE= REQUESTS OPTIONS_DEFAULT=REQUESTS From owner-svn-ports-all@freebsd.org Fri Jun 21 23:09:33 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BDAE615C30F8; Fri, 21 Jun 2019 23:09:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 634A085DFE; Fri, 21 Jun 2019 23:09:32 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9A0F21E6C; Fri, 21 Jun 2019 23:09:27 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN9RWo062723; Fri, 21 Jun 2019 23:09:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN9Ri4062722; Fri, 21 Jun 2019 23:09:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212309.x5LN9Ri4062722@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:09:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504825 - head/math/py-nevergrad X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/math/py-nevergrad X-SVN-Commit-Revision: 504825 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 634A085DFE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:09:33 -0000 Author: sunpoet Date: Fri Jun 21 23:09:26 2019 New Revision: 504825 URL: https://svnweb.freebsd.org/changeset/ports/504825 Log: Update to 0.2.2 Changes: https://github.com/facebookresearch/nevergrad/releases https://github.com/facebookresearch/nevergrad/blob/master/CHANGELOG.md Modified: head/math/py-nevergrad/Makefile head/math/py-nevergrad/distinfo Modified: head/math/py-nevergrad/Makefile ============================================================================== --- head/math/py-nevergrad/Makefile Fri Jun 21 23:09:21 2019 (r504824) +++ head/math/py-nevergrad/Makefile Fri Jun 21 23:09:26 2019 (r504825) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= nevergrad -PORTVERSION= 0.2.1 +PORTVERSION= 0.2.2 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -27,7 +27,8 @@ OPTIONS_DEFINE= BENCHMARK OPTIONS_DEFAULT=BENCHMARK BENCHMARK_DESC= Run benchmark functions -BENCHMARK_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}matplotlib>=2.2.3:math/py-matplotlib@${PY_FLAVOR} \ +BENCHMARK_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gym>=0.12.1:math/py-gym@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}matplotlib>=2.2.3:math/py-matplotlib@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=2.21.0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}xlrd>=1.2.0:textproc/py-xlrd@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}xlwt>=1.3.0:textproc/py-xlwt@${PY_FLAVOR} Modified: head/math/py-nevergrad/distinfo ============================================================================== --- head/math/py-nevergrad/distinfo Fri Jun 21 23:09:21 2019 (r504824) +++ head/math/py-nevergrad/distinfo Fri Jun 21 23:09:26 2019 (r504825) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558105496 -SHA256 (nevergrad-0.2.1.tar.gz) = c4593902dc3cf69039f7c9bec6105f68c0101910c32334172cd6f6298f5ab8f0 -SIZE (nevergrad-0.2.1.tar.gz) = 114762 +TIMESTAMP = 1561147705 +SHA256 (nevergrad-0.2.2.tar.gz) = 40ebb009e5f7f94c2962ef8388a8513e29f70928bdc57779df5dcb1bce6f769d +SIZE (nevergrad-0.2.2.tar.gz) = 125992 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:09:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2A9A215C3151; Fri, 21 Jun 2019 23:09:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5882885F16; Fri, 21 Jun 2019 23:09:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B921D1E6E; Fri, 21 Jun 2019 23:09:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN9bms062957; Fri, 21 Jun 2019 23:09:37 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN9bC8062956; Fri, 21 Jun 2019 23:09:37 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212309.x5LN9bC8062956@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:09:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504827 - head/devel/rubygem-aws-sdk X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk X-SVN-Commit-Revision: 504827 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5882885F16 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:09:43 -0000 Author: sunpoet Date: Fri Jun 21 23:09:37 2019 New Revision: 504827 URL: https://svnweb.freebsd.org/changeset/ports/504827 Log: Update to 2.11.298 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk/Makefile head/devel/rubygem-aws-sdk/distinfo Modified: head/devel/rubygem-aws-sdk/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk/Makefile Fri Jun 21 23:09:31 2019 (r504826) +++ head/devel/rubygem-aws-sdk/Makefile Fri Jun 21 23:09:37 2019 (r504827) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -DISTVERSION= 2.11.297 +DISTVERSION= 2.11.298 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk/distinfo Fri Jun 21 23:09:31 2019 (r504826) +++ head/devel/rubygem-aws-sdk/distinfo Fri Jun 21 23:09:37 2019 (r504827) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561049512 -SHA256 (rubygem/aws-sdk-2.11.297.gem) = 33b9054ec21142fe3487463f73daec0ddeb39fc38599f2c9b537b18688e3c7a2 -SIZE (rubygem/aws-sdk-2.11.297.gem) = 4608 +TIMESTAMP = 1561147711 +SHA256 (rubygem/aws-sdk-2.11.298.gem) = 546647591bc6b5cb6c6318b33939c3a6cc1277d22844304ad73824b0cffbca47 +SIZE (rubygem/aws-sdk-2.11.298.gem) = 4608 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:09:50 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2E40515C3189; Fri, 21 Jun 2019 23:09:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6AD3685FE1; Fri, 21 Jun 2019 23:09:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 307411E6F; Fri, 21 Jun 2019 23:09:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN9hHm063079; Fri, 21 Jun 2019 23:09:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN9gKv063077; Fri, 21 Jun 2019 23:09:42 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212309.x5LN9gKv063077@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:09:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504828 - head/devel/rubygem-aws-sdk-core X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk-core X-SVN-Commit-Revision: 504828 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6AD3685FE1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:09:50 -0000 Author: sunpoet Date: Fri Jun 21 23:09:42 2019 New Revision: 504828 URL: https://svnweb.freebsd.org/changeset/ports/504828 Log: Update to 2.11.298 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk-core/Makefile head/devel/rubygem-aws-sdk-core/distinfo Modified: head/devel/rubygem-aws-sdk-core/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile Fri Jun 21 23:09:37 2019 (r504827) +++ head/devel/rubygem-aws-sdk-core/Makefile Fri Jun 21 23:09:42 2019 (r504828) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -DISTVERSION= 2.11.297 +DISTVERSION= 2.11.298 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-core/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-core/distinfo Fri Jun 21 23:09:37 2019 (r504827) +++ head/devel/rubygem-aws-sdk-core/distinfo Fri Jun 21 23:09:42 2019 (r504828) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561049514 -SHA256 (rubygem/aws-sdk-core-2.11.297.gem) = a19492bc44e78d3d880ba7cc372a204e9846730c6ed8f545821c75f8789af38a -SIZE (rubygem/aws-sdk-core-2.11.297.gem) = 1604608 +TIMESTAMP = 1561147714 +SHA256 (rubygem/aws-sdk-core-2.11.298.gem) = 5568efe853719b205d87864ad020db7b149a50ba9f08f09feccb3fc5686e1883 +SIZE (rubygem/aws-sdk-core-2.11.298.gem) = 1604608 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:09:55 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0231215C31B6; Fri, 21 Jun 2019 23:09:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6C54D86071; Fri, 21 Jun 2019 23:09:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F2B5D1E70; Fri, 21 Jun 2019 23:09:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN9m8l063204; Fri, 21 Jun 2019 23:09:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN9mKv063202; Fri, 21 Jun 2019 23:09:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212309.x5LN9mKv063202@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:09:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504829 - head/devel/rubygem-aws-sdk-resources X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk-resources X-SVN-Commit-Revision: 504829 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6C54D86071 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:09:55 -0000 Author: sunpoet Date: Fri Jun 21 23:09:48 2019 New Revision: 504829 URL: https://svnweb.freebsd.org/changeset/ports/504829 Log: Update to 2.11.298 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk-resources/Makefile head/devel/rubygem-aws-sdk-resources/distinfo Modified: head/devel/rubygem-aws-sdk-resources/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile Fri Jun 21 23:09:42 2019 (r504828) +++ head/devel/rubygem-aws-sdk-resources/Makefile Fri Jun 21 23:09:48 2019 (r504829) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -DISTVERSION= 2.11.297 +DISTVERSION= 2.11.298 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-resources/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-resources/distinfo Fri Jun 21 23:09:42 2019 (r504828) +++ head/devel/rubygem-aws-sdk-resources/distinfo Fri Jun 21 23:09:48 2019 (r504829) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561049516 -SHA256 (rubygem/aws-sdk-resources-2.11.297.gem) = 7b946fd570a594b9e2ff865e9728a89fbb95ca12a039a02e650b057710bd5f48 -SIZE (rubygem/aws-sdk-resources-2.11.297.gem) = 48640 +TIMESTAMP = 1561147715 +SHA256 (rubygem/aws-sdk-resources-2.11.298.gem) = bfc89f3b3838f0cff8b18572ba065c0844f573e111e4c470ef7f5d13b27e9010 +SIZE (rubygem/aws-sdk-resources-2.11.298.gem) = 48640 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:09:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 272C915C31E6; Fri, 21 Jun 2019 23:09:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DFFFB860F0; Fri, 21 Jun 2019 23:09:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4915C1E71; Fri, 21 Jun 2019 23:09:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN9sCU063329; Fri, 21 Jun 2019 23:09:54 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN9rlu063327; Fri, 21 Jun 2019 23:09:53 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212309.x5LN9rlu063327@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:09:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504830 - head/net/rubygem-google-cloud-env X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/net/rubygem-google-cloud-env X-SVN-Commit-Revision: 504830 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DFFFB860F0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:09:59 -0000 Author: sunpoet Date: Fri Jun 21 23:09:53 2019 New Revision: 504830 URL: https://svnweb.freebsd.org/changeset/ports/504830 Log: Update to 1.2.0 Changes: https://github.com/googleapis/google-cloud-ruby/releases https://github.com/googleapis/google-cloud-ruby/blob/master/google-cloud-env/CHANGELOG.md Modified: head/net/rubygem-google-cloud-env/Makefile head/net/rubygem-google-cloud-env/distinfo Modified: head/net/rubygem-google-cloud-env/Makefile ============================================================================== --- head/net/rubygem-google-cloud-env/Makefile Fri Jun 21 23:09:48 2019 (r504829) +++ head/net/rubygem-google-cloud-env/Makefile Fri Jun 21 23:09:53 2019 (r504830) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= google-cloud-env -PORTVERSION= 1.1.0 +PORTVERSION= 1.2.0 CATEGORIES= net rubygems MASTER_SITES= RG Modified: head/net/rubygem-google-cloud-env/distinfo ============================================================================== --- head/net/rubygem-google-cloud-env/distinfo Fri Jun 21 23:09:48 2019 (r504829) +++ head/net/rubygem-google-cloud-env/distinfo Fri Jun 21 23:09:53 2019 (r504830) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559824591 -SHA256 (rubygem/google-cloud-env-1.1.0.gem) = 9e5542b3d4119801a31fa3109fc103ed307daa0bb719dc4a27c7910f3f6fe025 -SIZE (rubygem/google-cloud-env-1.1.0.gem) = 15360 +TIMESTAMP = 1561147717 +SHA256 (rubygem/google-cloud-env-1.2.0.gem) = 6d654f94af0ca42578c8fc0557a5b0ed74f141a84422e8357778798885d74548 +SIZE (rubygem/google-cloud-env-1.2.0.gem) = 15360 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:10:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9188F15C3230; Fri, 21 Jun 2019 23:10:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 35CE486187; Fri, 21 Jun 2019 23:10:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 904E51E72; Fri, 21 Jun 2019 23:09:59 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LN9xwg063454; Fri, 21 Jun 2019 23:09:59 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LN9xHp063452; Fri, 21 Jun 2019 23:09:59 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212309.x5LN9xHp063452@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:09:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504831 - head/devel/py-jupyter_core X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-jupyter_core X-SVN-Commit-Revision: 504831 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 35CE486187 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:10:04 -0000 Author: sunpoet Date: Fri Jun 21 23:09:58 2019 New Revision: 504831 URL: https://svnweb.freebsd.org/changeset/ports/504831 Log: Update to 4.5.0 Changes: https://github.com/jupyter/jupyter_core/blob/master/docs/changelog.rst Modified: head/devel/py-jupyter_core/Makefile head/devel/py-jupyter_core/distinfo Modified: head/devel/py-jupyter_core/Makefile ============================================================================== --- head/devel/py-jupyter_core/Makefile Fri Jun 21 23:09:53 2019 (r504830) +++ head/devel/py-jupyter_core/Makefile Fri Jun 21 23:09:58 2019 (r504831) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= jupyter_core -PORTVERSION= 4.4.0 -PORTREVISION= 2 +PORTVERSION= 4.5.0 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -16,13 +15,12 @@ LICENSE_FILE= ${WRKSRC}/COPYING.md RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}traitlets>=0:devel/py-traitlets@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ipython>=0:devel/ipython@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}mock>=0:devel/py-mock@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}testpath>=0:devel/py-testpath@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}pytest>=0:devel/py-pytest@${PY_FLAVOR} -NO_ARCH= yes USES= python -USE_LOCALE= en_US.UTF-8 USE_PYTHON= autoplist concurrent distutils + +NO_ARCH= yes do-test: @(cd ${TEST_WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYTHON_VER}) Modified: head/devel/py-jupyter_core/distinfo ============================================================================== --- head/devel/py-jupyter_core/distinfo Fri Jun 21 23:09:53 2019 (r504830) +++ head/devel/py-jupyter_core/distinfo Fri Jun 21 23:09:58 2019 (r504831) @@ -1,3 +1,3 @@ -TIMESTAMP = 1509542565 -SHA256 (jupyter_core-4.4.0.tar.gz) = ba70754aa680300306c699790128f6fbd8c306ee5927976cbe48adacf240c0b7 -SIZE (jupyter_core-4.4.0.tar.gz) = 63613 +TIMESTAMP = 1561156302 +SHA256 (jupyter_core-4.5.0.tar.gz) = 2c6e7c1e9f2ac45b5c2ceea5730bc9008d92fe59d0725eac57b04c0edfba24f7 +SIZE (jupyter_core-4.5.0.tar.gz) = 60892 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:10:09 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 27ABE15C3274; Fri, 21 Jun 2019 23:10:09 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BD48C86208; Fri, 21 Jun 2019 23:10:08 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9CBC1E76; Fri, 21 Jun 2019 23:10:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LNA4FB063611; Fri, 21 Jun 2019 23:10:04 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LNA4s5063609; Fri, 21 Jun 2019 23:10:04 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906212310.x5LNA4s5063609@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Fri, 21 Jun 2019 23:10:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504832 - head/security/py-fido2 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/py-fido2 X-SVN-Commit-Revision: 504832 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BD48C86208 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:10:09 -0000 Author: sunpoet Date: Fri Jun 21 23:10:04 2019 New Revision: 504832 URL: https://svnweb.freebsd.org/changeset/ports/504832 Log: Update to 0.7.0 Changes: https://github.com/Yubico/python-fido2/releases Modified: head/security/py-fido2/Makefile head/security/py-fido2/distinfo Modified: head/security/py-fido2/Makefile ============================================================================== --- head/security/py-fido2/Makefile Fri Jun 21 23:09:58 2019 (r504831) +++ head/security/py-fido2/Makefile Fri Jun 21 23:10:04 2019 (r504832) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= fido2 -PORTVERSION= 0.6.0 +PORTVERSION= 0.7.0 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/security/py-fido2/distinfo ============================================================================== --- head/security/py-fido2/distinfo Fri Jun 21 23:09:58 2019 (r504831) +++ head/security/py-fido2/distinfo Fri Jun 21 23:10:04 2019 (r504832) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557747489 -SHA256 (fido2-0.6.0.tar.gz) = 7541edad31967d23f5006ffeccc54536ab9934dd981d65d29620d9dfb54566bf -SIZE (fido2-0.6.0.tar.gz) = 163137 +TIMESTAMP = 1561156306 +SHA256 (fido2-0.7.0.tar.gz) = 47b02852780849bb4bb698b9727d61970ee77a83eb25715fe7c6235ebd648d87 +SIZE (fido2-0.7.0.tar.gz) = 171787 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:27:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3A7EF15C37AA; Fri, 21 Jun 2019 23:27:19 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D13AC86D43; Fri, 21 Jun 2019 23:27:18 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A7EAB21C7; Fri, 21 Jun 2019 23:27:18 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LNRIjG074055; Fri, 21 Jun 2019 23:27:18 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LNRI5N074053; Fri, 21 Jun 2019 23:27:18 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906212327.x5LNRI5N074053@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 21 Jun 2019 23:27:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504833 - head/emulators/rpcs3 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/emulators/rpcs3 X-SVN-Commit-Revision: 504833 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D13AC86D43 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:27:19 -0000 Author: jbeich Date: Fri Jun 21 23:27:17 2019 New Revision: 504833 URL: https://svnweb.freebsd.org/changeset/ports/504833 Log: emulators/rpcs3: update to 0.0.6.8273 Changes: https://github.com/RPCS3/rpcs3/compare/5753b3222...cd0ef99df Modified: head/emulators/rpcs3/Makefile (contents, props changed) head/emulators/rpcs3/distinfo (contents, props changed) Modified: head/emulators/rpcs3/Makefile ============================================================================== --- head/emulators/rpcs3/Makefile Fri Jun 21 23:10:04 2019 (r504832) +++ head/emulators/rpcs3/Makefile Fri Jun 21 23:27:17 2019 (r504833) @@ -2,8 +2,8 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v -DISTVERSION= 0.0.6-8266 # git rev-list --count HEAD -DISTVERSIONSUFFIX= -g5753b3222 +DISTVERSION= 0.0.6-8273 # git rev-list --count HEAD +DISTVERSIONSUFFIX= -gcd0ef99df CATEGORIES= emulators PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ Modified: head/emulators/rpcs3/distinfo ============================================================================== --- head/emulators/rpcs3/distinfo Fri Jun 21 23:10:04 2019 (r504832) +++ head/emulators/rpcs3/distinfo Fri Jun 21 23:27:17 2019 (r504833) @@ -1,6 +1,6 @@ -TIMESTAMP = 1560966359 -SHA256 (RPCS3-rpcs3-v0.0.6-8266-g5753b3222_GH0.tar.gz) = 6fd869593e1876397f0668e04678257c40ef20941a04cf8d6d27076a85834494 -SIZE (RPCS3-rpcs3-v0.0.6-8266-g5753b3222_GH0.tar.gz) = 5443613 +TIMESTAMP = 1561134589 +SHA256 (RPCS3-rpcs3-v0.0.6-8273-gcd0ef99df_GH0.tar.gz) = 03cb3d2ca39c89b251f2b7921e4fd8d0e840d3db8c72c9fc91e9841183f2aabb +SIZE (RPCS3-rpcs3-v0.0.6-8273-gcd0ef99df_GH0.tar.gz) = 5444114 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-99b528446302_GH0.tar.gz) = 36593a6f8dac6dd5d9eddab4b2aadcab768520a5b76f1cf7941f273609fcfa47 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:27:29 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 69C0015C37D8; Fri, 21 Jun 2019 23:27:29 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6D01786DF4; Fri, 21 Jun 2019 23:27:28 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 063BE21C8; Fri, 21 Jun 2019 23:27:25 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LNROmB074178; Fri, 21 Jun 2019 23:27:24 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LNROaT074176; Fri, 21 Jun 2019 23:27:24 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906212327.x5LNROaT074176@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 21 Jun 2019 23:27:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504834 - head/multimedia/rav1e X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/rav1e X-SVN-Commit-Revision: 504834 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6D01786DF4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:27:29 -0000 Author: jbeich Date: Fri Jun 21 23:27:24 2019 New Revision: 504834 URL: https://svnweb.freebsd.org/changeset/ports/504834 Log: multimedia/rav1e: update to s20190620 Changes: https://github.com/xiph/rav1e/compare/6d330d26...c84872d7 Modified: head/multimedia/rav1e/Makefile (contents, props changed) head/multimedia/rav1e/distinfo (contents, props changed) Modified: head/multimedia/rav1e/Makefile ============================================================================== --- head/multimedia/rav1e/Makefile Fri Jun 21 23:27:17 2019 (r504833) +++ head/multimedia/rav1e/Makefile Fri Jun 21 23:27:24 2019 (r504834) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= rav1e -PORTVERSION= s20190615 +PORTVERSION= s20190620 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= 6d330d26 +GH_TAGNAME= c84872d7 PLIST_FILES= bin/${PORTNAME} CARGO_CRATES= aho-corasick-0.7.3 \ Modified: head/multimedia/rav1e/distinfo ============================================================================== --- head/multimedia/rav1e/distinfo Fri Jun 21 23:27:17 2019 (r504833) +++ head/multimedia/rav1e/distinfo Fri Jun 21 23:27:24 2019 (r504834) @@ -1,4 +1,4 @@ -TIMESTAMP = 1560612042 +TIMESTAMP = 1561075037 SHA256 (rust/crates/aho-corasick-0.7.3.tar.gz) = e6f484ae0c99fec2e858eb6134949117399f222608d84cadb3f58c1f97c2364c SIZE (rust/crates/aho-corasick-0.7.3.tar.gz) = 55093 SHA256 (rust/crates/ansi_term-0.11.0.tar.gz) = ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b @@ -251,5 +251,5 @@ SHA256 (rust/crates/wincolor-1.0.1.tar.gz) = 561ed901a SIZE (rust/crates/wincolor-1.0.1.tar.gz) = 4737 SHA256 (rust/crates/y4m-0.3.3.tar.gz) = b14191e41f540837886792294aa9269c2d63eb8733ed0499590935fef7bbb94f SIZE (rust/crates/y4m-0.3.3.tar.gz) = 11108 -SHA256 (xiph-rav1e-s20190615-6d330d26_GH0.tar.gz) = 6fbcc8b74e26b50af40f782dd6c30d76c48f38554d6aba0b9f248700f9687c17 -SIZE (xiph-rav1e-s20190615-6d330d26_GH0.tar.gz) = 411886 +SHA256 (xiph-rav1e-s20190620-c84872d7_GH0.tar.gz) = 25f30022bd4f459a93e970bc13494bfb8aeac3939b28e7a0543e5ede2eea8d17 +SIZE (xiph-rav1e-s20190620-c84872d7_GH0.tar.gz) = 412825 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:27:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 744ED15C37E1; Fri, 21 Jun 2019 23:27:31 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D86ED86E0D; Fri, 21 Jun 2019 23:27:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B287D21C9; Fri, 21 Jun 2019 23:27:30 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LNRUU7074301; Fri, 21 Jun 2019 23:27:30 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LNRUjs074299; Fri, 21 Jun 2019 23:27:30 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906212327.x5LNRUjs074299@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 21 Jun 2019 23:27:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504835 - head/multimedia/aom X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/multimedia/aom X-SVN-Commit-Revision: 504835 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D86ED86E0D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:27:31 -0000 Author: jbeich Date: Fri Jun 21 23:27:30 2019 New Revision: 504835 URL: https://svnweb.freebsd.org/changeset/ports/504835 Log: multimedia/aom: update to 1.0.0.1972 Changes: https://aomedia.googlesource.com/aom/+log/3cf25c540..8905a39f8 Modified: head/multimedia/aom/Makefile (contents, props changed) head/multimedia/aom/distinfo (contents, props changed) Modified: head/multimedia/aom/Makefile ============================================================================== --- head/multimedia/aom/Makefile Fri Jun 21 23:27:24 2019 (r504834) +++ head/multimedia/aom/Makefile Fri Jun 21 23:27:30 2019 (r504835) @@ -2,8 +2,8 @@ PORTNAME= aom DISTVERSIONPREFIX= v -DISTVERSION= 1.0.0-1940 -DISTVERSIONSUFFIX= -g3cf25c540 +DISTVERSION= 1.0.0-1972 +DISTVERSIONSUFFIX= -g8905a39f8 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org Modified: head/multimedia/aom/distinfo ============================================================================== --- head/multimedia/aom/distinfo Fri Jun 21 23:27:24 2019 (r504834) +++ head/multimedia/aom/distinfo Fri Jun 21 23:27:30 2019 (r504835) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560800832 -SHA256 (jbeich-aom-v1.0.0-1940-g3cf25c540_GH0.tar.gz) = 59fa5322abc50aee0677effaeb3472777252eec90c28f394482c00e70e39776d -SIZE (jbeich-aom-v1.0.0-1940-g3cf25c540_GH0.tar.gz) = 3321280 +TIMESTAMP = 1561153095 +SHA256 (jbeich-aom-v1.0.0-1972-g8905a39f8_GH0.tar.gz) = 0943a6b31635eef7352756feab4e02159806a249dfdc7950306e0398a2fe8fc7 +SIZE (jbeich-aom-v1.0.0-1972-g8905a39f8_GH0.tar.gz) = 3347398 From owner-svn-ports-all@freebsd.org Fri Jun 21 23:27:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3403A15C3836; Fri, 21 Jun 2019 23:27:43 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CD66086F3B; Fri, 21 Jun 2019 23:27:42 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BB6BD21CA; Fri, 21 Jun 2019 23:27:37 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5LNRbQ4074462; Fri, 21 Jun 2019 23:27:37 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5LNRaru074459; Fri, 21 Jun 2019 23:27:36 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201906212327.x5LNRaru074459@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 21 Jun 2019 23:27:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504836 - in head/multimedia: ffmpeg svt-av1 X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/multimedia: ffmpeg svt-av1 X-SVN-Commit-Revision: 504836 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CD66086F3B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.951,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 21 Jun 2019 23:27:43 -0000 Author: jbeich Date: Fri Jun 21 23:27:36 2019 New Revision: 504836 URL: https://svnweb.freebsd.org/changeset/ports/504836 Log: multimedia/svt-av1: update to 0.5.0.642 Changes: https://github.com/OpenVisualCloud/SVT-AV1/compare/ac75c3e0...3a811c20 Modified: head/multimedia/ffmpeg/Makefile (contents, props changed) head/multimedia/ffmpeg/distinfo (contents, props changed) head/multimedia/svt-av1/Makefile (contents, props changed) head/multimedia/svt-av1/distinfo (contents, props changed) Modified: head/multimedia/ffmpeg/Makefile ============================================================================== --- head/multimedia/ffmpeg/Makefile Fri Jun 21 23:27:30 2019 (r504835) +++ head/multimedia/ffmpeg/Makefile Fri Jun 21 23:27:36 2019 (r504836) @@ -3,7 +3,7 @@ PORTNAME= ffmpeg PORTVERSION= 4.1.3 -PORTREVISION= 12 +PORTREVISION= 13 PORTEPOCH= 1 CATEGORIES= multimedia audio ipv6 net MASTER_SITES= https://ffmpeg.org/releases/ @@ -415,7 +415,7 @@ SRT_CONFIGURE_ENABLE= libsrt # svt-av1 SVTAV1_LIB_DEPENDS= libSvtAv1Enc.so:multimedia/svt-av1 SVTAV1_CONFIGURE_ON= --enable-libsvtav1 -SVTAV1_PATCH_SITES= https://github.com/OpenVisualCloud/SVT-AV1/raw/592a5848/ffmpeg_plugin/:svtav1 +SVTAV1_PATCH_SITES= https://github.com/OpenVisualCloud/SVT-AV1/raw/6aa0c16c/ffmpeg_plugin/:svtav1 SVTAV1_PATCHFILES= 0001-Add-ability-for-ffmpeg-to-run-svt-av1.patch:-p1:svtav1 .if make(makesum) .MAKEFLAGS: WITH+=SVTAV1 Modified: head/multimedia/ffmpeg/distinfo ============================================================================== --- head/multimedia/ffmpeg/distinfo Fri Jun 21 23:27:30 2019 (r504835) +++ head/multimedia/ffmpeg/distinfo Fri Jun 21 23:27:36 2019 (r504836) @@ -1,8 +1,8 @@ TIMESTAMP = 1554117390 SHA256 (ffmpeg-4.1.3.tar.xz) = 0c3020452880581a8face91595b239198078645e7d7184273b8bcc7758beb63d SIZE (ffmpeg-4.1.3.tar.xz) = 8895988 -SHA256 (0001-Add-ability-for-ffmpeg-to-run-svt-av1.patch) = 2949f180102f2df949ea4df5971012f6d8bd16bf87a58ef0e5e7b85bd778451a -SIZE (0001-Add-ability-for-ffmpeg-to-run-svt-av1.patch) = 20423 +SHA256 (0001-Add-ability-for-ffmpeg-to-run-svt-av1.patch) = d653158c8d1c958cdebe9ee50cb95db917f5421ba79ee121202a97ce40c44ade +SIZE (0001-Add-ability-for-ffmpeg-to-run-svt-av1.patch) = 20028 SHA256 (0001-lavc-svt_hevc-add-libsvt-hevc-encoder-wrapper.patch) = cc8ba4ff56cdb38a59650203999c4c8c83fc40bdb905b87b678ff68a4538444d SIZE (0001-lavc-svt_hevc-add-libsvt-hevc-encoder-wrapper.patch) = 22815 SHA256 (0002-doc-Add-libsvt_hevc-encoder-docs.patch) = 516c5a1b3ab6dc444e2270a1bae90455838fc3b7e3a18de37d7d63e25e79493d Modified: head/multimedia/svt-av1/Makefile ============================================================================== --- head/multimedia/svt-av1/Makefile Fri Jun 21 23:27:30 2019 (r504835) +++ head/multimedia/svt-av1/Makefile Fri Jun 21 23:27:36 2019 (r504836) @@ -2,8 +2,8 @@ PORTNAME= svt-av1 DISTVERSIONPREFIX= v -DISTVERSION= 0.5.0-466 -DISTVERSIONSUFFIX= -gac75c3e0 +DISTVERSION= 0.5.0-642 +DISTVERSIONSUFFIX= -g3a811c20 CATEGORIES= multimedia MAINTAINER= jbeich@FreeBSD.org Modified: head/multimedia/svt-av1/distinfo ============================================================================== --- head/multimedia/svt-av1/distinfo Fri Jun 21 23:27:30 2019 (r504835) +++ head/multimedia/svt-av1/distinfo Fri Jun 21 23:27:36 2019 (r504836) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561086797 -SHA256 (OpenVisualCloud-SVT-AV1-v0.5.0-466-gac75c3e0_GH0.tar.gz) = 39c9eded59adccdd8658b8357cd89ec6d3b89a1cba20ac3d8dabdaa7635e6534 -SIZE (OpenVisualCloud-SVT-AV1-v0.5.0-466-gac75c3e0_GH0.tar.gz) = 2718981 +TIMESTAMP = 1561143395 +SHA256 (OpenVisualCloud-SVT-AV1-v0.5.0-642-g3a811c20_GH0.tar.gz) = 1e2ba8bf7a45ebe24c8cf1e13dc57a3e6bec9959223b89896432e55a077b50ba +SIZE (OpenVisualCloud-SVT-AV1-v0.5.0-642-g3a811c20_GH0.tar.gz) = 2613650 From owner-svn-ports-all@freebsd.org Sat Jun 22 00:44:52 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id DE7E815C5425; Sat, 22 Jun 2019 00:44:52 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5956F894DA; Sat, 22 Jun 2019 00:44:52 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2F4EE2F03; Sat, 22 Jun 2019 00:44:52 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M0iqmn016153; Sat, 22 Jun 2019 00:44:52 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M0ipVf016151; Sat, 22 Jun 2019 00:44:51 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220044.x5M0ipVf016151@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 00:44:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504837 - head/math/mkl-dnn X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/mkl-dnn X-SVN-Commit-Revision: 504837 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5956F894DA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 00:44:53 -0000 Author: yuri Date: Sat Jun 22 00:44:51 2019 New Revision: 504837 URL: https://svnweb.freebsd.org/changeset/ports/504837 Log: math/mkl-dnn: Update 0.19 -> 0.20 Modified: head/math/mkl-dnn/Makefile head/math/mkl-dnn/distinfo head/math/mkl-dnn/pkg-plist Modified: head/math/mkl-dnn/Makefile ============================================================================== --- head/math/mkl-dnn/Makefile Fri Jun 21 23:27:36 2019 (r504836) +++ head/math/mkl-dnn/Makefile Sat Jun 22 00:44:51 2019 (r504837) @@ -2,7 +2,8 @@ PORTNAME= mkl-dnn DISTVERSIONPREFIX= v -DISTVERSION= 0.19 +DISTVERSION= 0.20 +DISTVERSIONSUFFIX= -rc CATEGORIES= math MAINTAINER= yuri@FreeBSD.org Modified: head/math/mkl-dnn/distinfo ============================================================================== --- head/math/mkl-dnn/distinfo Fri Jun 21 23:27:36 2019 (r504836) +++ head/math/mkl-dnn/distinfo Sat Jun 22 00:44:51 2019 (r504837) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558216436 -SHA256 (intel-mkl-dnn-v0.19_GH0.tar.gz) = ba39da6adb263df05c4ca2a120295641fc97be75b588922e4274cb628dbe1dcd -SIZE (intel-mkl-dnn-v0.19_GH0.tar.gz) = 1561914 +TIMESTAMP = 1561163360 +SHA256 (intel-mkl-dnn-v0.20-rc_GH0.tar.gz) = a200cd1e1464a42bb1683fb79853af4d788c0dd01c657a20ef2731602ba69f74 +SIZE (intel-mkl-dnn-v0.20-rc_GH0.tar.gz) = 1678969 Modified: head/math/mkl-dnn/pkg-plist ============================================================================== --- head/math/mkl-dnn/pkg-plist Fri Jun 21 23:27:36 2019 (r504836) +++ head/math/mkl-dnn/pkg-plist Sat Jun 22 00:44:51 2019 (r504837) @@ -9,4 +9,4 @@ lib/cmake/mkldnn/mkldnn-targets-%%CMAKE_BUILD_TYPE%%.c lib/cmake/mkldnn/mkldnn-targets.cmake lib/libmkldnn.so lib/libmkldnn.so.0 -lib/libmkldnn.so.0.19.0.0 +lib/libmkldnn.so.0.20.0.0 From owner-svn-ports-all@freebsd.org Sat Jun 22 01:23:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3613315C625F; Sat, 22 Jun 2019 01:23:01 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D100E8A6FE; Sat, 22 Jun 2019 01:23:00 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A341037A1; Sat, 22 Jun 2019 01:23:00 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M1N03o036924; Sat, 22 Jun 2019 01:23:00 GMT (envelope-from leres@FreeBSD.org) Received: (from leres@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M1N0KV036922; Sat, 22 Jun 2019 01:23:00 GMT (envelope-from leres@FreeBSD.org) Message-Id: <201906220123.x5M1N0KV036922@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: leres set sender to leres@FreeBSD.org using -f From: Craig Leres Date: Sat, 22 Jun 2019 01:23:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504838 - head/net-mgmt/check_nwc_health X-SVN-Group: ports-head X-SVN-Commit-Author: leres X-SVN-Commit-Paths: head/net-mgmt/check_nwc_health X-SVN-Commit-Revision: 504838 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D100E8A6FE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 01:23:01 -0000 Author: leres Date: Sat Jun 22 01:23:00 2019 New Revision: 504838 URL: https://svnweb.freebsd.org/changeset/ports/504838 Log: net-mgmt/check_nwc_health: Update to 7.9.0.4. From the ChangeLog: - finish barracuda ha-role mode - detect f5 firmware versions 14+ - fix routes. inetCidrRouteTable does not really replace ipCidrRouteTable - fallback to BGP4-MIB if CISCO-BGP4-MIB is incomplete - add EIGRP - fix ASA user/connection/session-count Reported by: portscout Approved by: ler (mentor, implicit) Modified: head/net-mgmt/check_nwc_health/Makefile head/net-mgmt/check_nwc_health/distinfo Modified: head/net-mgmt/check_nwc_health/Makefile ============================================================================== --- head/net-mgmt/check_nwc_health/Makefile Sat Jun 22 00:44:51 2019 (r504837) +++ head/net-mgmt/check_nwc_health/Makefile Sat Jun 22 01:23:00 2019 (r504838) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= check_nwc_health -PORTVERSION= 7.8 -PORTREVISION= 1 +PORTVERSION= 7.9.0.4 CATEGORIES= net-mgmt MASTER_SITES= https://labs.consol.de/assets/downloads/nagios/ Modified: head/net-mgmt/check_nwc_health/distinfo ============================================================================== --- head/net-mgmt/check_nwc_health/distinfo Sat Jun 22 00:44:51 2019 (r504837) +++ head/net-mgmt/check_nwc_health/distinfo Sat Jun 22 01:23:00 2019 (r504838) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559927337 -SHA256 (check_nwc_health-7.8.tar.gz) = d057830a0a1f92d1c585501413e9dfa432ff52d86cb3ebeb13d4ba3c966da5bd -SIZE (check_nwc_health-7.8.tar.gz) = 652738 +TIMESTAMP = 1561166243 +SHA256 (check_nwc_health-7.9.0.4.tar.gz) = 25ab1a8637c0f897e4bc36d61940bf4851e46d4f8f2573ca14d22ba44223a04f +SIZE (check_nwc_health-7.9.0.4.tar.gz) = 653388 From owner-svn-ports-all@freebsd.org Sat Jun 22 01:29:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3E3A615C6808; Sat, 22 Jun 2019 01:29:05 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D80E98A9E7; Sat, 22 Jun 2019 01:29:04 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B062D37C6; Sat, 22 Jun 2019 01:29:04 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M1T4g1037280; Sat, 22 Jun 2019 01:29:04 GMT (envelope-from leres@FreeBSD.org) Received: (from leres@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M1T4xO037278; Sat, 22 Jun 2019 01:29:04 GMT (envelope-from leres@FreeBSD.org) Message-Id: <201906220129.x5M1T4xO037278@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: leres set sender to leres@FreeBSD.org using -f From: Craig Leres Date: Sat, 22 Jun 2019 01:29:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504839 - head/textproc/py-qrcode X-SVN-Group: ports-head X-SVN-Commit-Author: leres X-SVN-Commit-Paths: head/textproc/py-qrcode X-SVN-Commit-Revision: 504839 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D80E98A9E7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 01:29:05 -0000 Author: leres Date: Sat Jun 22 01:29:04 2019 New Revision: 504839 URL: https://svnweb.freebsd.org/changeset/ports/504839 Log: textproc/py-qrcode: Update to 6.1. From CHANGES.rst: - Fix short chunks of data not being optimized to the correct mode. - Tests fixed for Python 3 Reported by: portscout Approved by: matthew (mentor, implicit) Modified: head/textproc/py-qrcode/Makefile head/textproc/py-qrcode/distinfo Modified: head/textproc/py-qrcode/Makefile ============================================================================== --- head/textproc/py-qrcode/Makefile Sat Jun 22 01:23:00 2019 (r504838) +++ head/textproc/py-qrcode/Makefile Sat Jun 22 01:29:04 2019 (r504839) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= qrcode -PORTVERSION= 6.0 -PORTREVISION= 1 +PORTVERSION= 6.1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/textproc/py-qrcode/distinfo ============================================================================== --- head/textproc/py-qrcode/distinfo Sat Jun 22 01:23:00 2019 (r504838) +++ head/textproc/py-qrcode/distinfo Sat Jun 22 01:29:04 2019 (r504839) @@ -1,3 +1,3 @@ -TIMESTAMP = 1529513139 -SHA256 (qrcode-6.0.tar.gz) = 037b0db4c93f44586e37f84c3da3f763874fcac85b2974a69a98e399ac78e1bf -SIZE (qrcode-6.0.tar.gz) = 29160 +TIMESTAMP = 1561166609 +SHA256 (qrcode-6.1.tar.gz) = 505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369 +SIZE (qrcode-6.1.tar.gz) = 29363 From owner-svn-ports-all@freebsd.org Sat Jun 22 02:48:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3FF4D15C8BE2; Sat, 22 Jun 2019 02:48:23 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D89158C943; Sat, 22 Jun 2019 02:48:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C3450468F; Sat, 22 Jun 2019 02:48:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M2mMAv079039; Sat, 22 Jun 2019 02:48:22 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M2mMkX079037; Sat, 22 Jun 2019 02:48:22 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220248.x5M2mMkX079037@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 02:48:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504840 - head/dns/amass X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/dns/amass X-SVN-Commit-Revision: 504840 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D89158C943 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 02:48:23 -0000 Author: yuri Date: Sat Jun 22 02:48:22 2019 New Revision: 504840 URL: https://svnweb.freebsd.org/changeset/ports/504840 Log: dns/amass: Update 3.0.9 -> 3.0.15 Modified: head/dns/amass/Makefile head/dns/amass/distinfo Modified: head/dns/amass/Makefile ============================================================================== --- head/dns/amass/Makefile Sat Jun 22 01:29:04 2019 (r504839) +++ head/dns/amass/Makefile Sat Jun 22 02:48:22 2019 (r504840) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= amass -DISTVERSION= 3.0.9 +DISTVERSION= 3.0.15 CATEGORIES= dns MAINTAINER= yuri@FreeBSD.org Modified: head/dns/amass/distinfo ============================================================================== --- head/dns/amass/distinfo Sat Jun 22 01:29:04 2019 (r504839) +++ head/dns/amass/distinfo Sat Jun 22 02:48:22 2019 (r504840) @@ -1,6 +1,6 @@ -TIMESTAMP = 1560930944 -SHA256 (OWASP-Amass-3.0.9_GH0.tar.gz) = 97ca5641fed8aca11f2e765120b030c2622c69f2bd19a69584e4bdea76ac16a6 -SIZE (OWASP-Amass-3.0.9_GH0.tar.gz) = 8167892 +TIMESTAMP = 1561171454 +SHA256 (OWASP-Amass-3.0.15_GH0.tar.gz) = f57f2bb57a13e96cde732faa9389a8f87957d7241eb070efcc915d4ca3dc0499 +SIZE (OWASP-Amass-3.0.15_GH0.tar.gz) = 8167362 SHA256 (andybalholm-cascadia-v1.0.0_GH0.tar.gz) = 00ab6f915e958c9e0509836cd67082a802513459c12c4aa6e7a28ef37743ce52 SIZE (andybalholm-cascadia-v1.0.0_GH0.tar.gz) = 13232 SHA256 (asaskevich-EventBus-d46933a_GH0.tar.gz) = f1c2764fb95aa403c1de1445098c1a417985866983be8066316a9ae97a5bb5b7 From owner-svn-ports-all@freebsd.org Sat Jun 22 03:13:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 530E215C9652; Sat, 22 Jun 2019 03:13:19 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EE0F08D908; Sat, 22 Jun 2019 03:13:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E113F4C1B; Sat, 22 Jun 2019 03:13:18 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M3DI4F095384; Sat, 22 Jun 2019 03:13:18 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M3DI0b095380; Sat, 22 Jun 2019 03:13:18 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220313.x5M3DI0b095380@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 03:13:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504841 - in head/www: . morty X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/www: . morty X-SVN-Commit-Revision: 504841 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EE0F08D908 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.948,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 03:13:19 -0000 Author: yuri Date: Sat Jun 22 03:13:17 2019 New Revision: 504841 URL: https://svnweb.freebsd.org/changeset/ports/504841 Log: New port: www/morty: Privacy aware web content sanitizer proxy as a service Added: head/www/morty/ head/www/morty/Makefile (contents, props changed) head/www/morty/distinfo (contents, props changed) head/www/morty/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Jun 22 02:48:22 2019 (r504840) +++ head/www/Makefile Sat Jun 22 03:13:17 2019 (r504841) @@ -432,6 +432,7 @@ SUBDIR += moodle35 SUBDIR += moodle36 SUBDIR += moodle37 + SUBDIR += morty SUBDIR += mozplugger SUBDIR += multisort SUBDIR += multiwatch Added: head/www/morty/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/morty/Makefile Sat Jun 22 03:13:17 2019 (r504841) @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= morty +DISTVERSIONPREFIX= v +DISTVERSION= 0.2.0-12 +DISTVERSIONSUFFIX= -gfe94d9a +CATEGORIES= www net + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Privacy aware web content sanitizer proxy as a service + +LICENSE= AGPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go +USE_GITHUB= yes +GH_ACCOUNT= asciimoo +GH_TUPLE= \ + golang:net:0ed95ab:net/vendor/golang.org/x/net \ + golang:text:v0.3.2:golang_text/vendor/golang.org/x/text \ + klauspost:cpuid:v1.2.1:cpuid/vendor/github.com/klauspost/cpuid \ + klauspost:compress:v1.7.1:compress/vendor/github.com/klauspost/compress \ + valyala:bytebufferpool:v1.0.0:bytebufferpool/vendor/github.com/valyala/bytebufferpool \ + valyala:fasthttp:v1.3.0:fasthttp/vendor/github.com/valyala/fasthttp + +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} + +.include Added: head/www/morty/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/morty/distinfo Sat Jun 22 03:13:17 2019 (r504841) @@ -0,0 +1,15 @@ +TIMESTAMP = 1561172827 +SHA256 (asciimoo-morty-v0.2.0-12-gfe94d9a_GH0.tar.gz) = eb76de6f86e731c533ab5837e0c7e48781d39b95933a142a99257d96f212ed29 +SIZE (asciimoo-morty-v0.2.0-12-gfe94d9a_GH0.tar.gz) = 25204 +SHA256 (golang-net-0ed95ab_GH0.tar.gz) = c47997a853b9e9accfb3192498e1b3333f6d000b6674fdfc9e22bd3675c4ff0f +SIZE (golang-net-0ed95ab_GH0.tar.gz) = 929664 +SHA256 (golang-text-v0.3.2_GH0.tar.gz) = 0b9309698f5708531c5377ab1e29b423a6d9e20c55a8d386c3b8283428212f22 +SIZE (golang-text-v0.3.2_GH0.tar.gz) = 7168069 +SHA256 (klauspost-cpuid-v1.2.1_GH0.tar.gz) = fd66be8517ba837d0f582ad095d2e42e7464c08ef2a3eaffa3bf83330223fa92 +SIZE (klauspost-cpuid-v1.2.1_GH0.tar.gz) = 279083 +SHA256 (klauspost-compress-v1.7.1_GH0.tar.gz) = 4728ba58238042b5286744e8585f8f706358fd30ebb98d2fb48a67bbbc8e58ea +SIZE (klauspost-compress-v1.7.1_GH0.tar.gz) = 12632704 +SHA256 (valyala-bytebufferpool-v1.0.0_GH0.tar.gz) = 089013e3429ebe7fd2bc3527f003bf3f3f639891e5d8ba6a56010e3671465e1f +SIZE (valyala-bytebufferpool-v1.0.0_GH0.tar.gz) = 5025 +SHA256 (valyala-fasthttp-v1.3.0_GH0.tar.gz) = 34f6190e7b5f993121cc949e2367813482ad83e6cbb51170ff92d34a40231528 +SIZE (valyala-fasthttp-v1.3.0_GH0.tar.gz) = 182300 Added: head/www/morty/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/morty/pkg-descr Sat Jun 22 03:13:17 2019 (r504841) @@ -0,0 +1,19 @@ +Web content sanitizer proxy as a service + +Morty rewrites web pages to exclude malicious HTML tags and attributes. It also +replaces external resource references to prevent third party information leaks. + +The main goal of morty is to provide a result proxy for searx, but it can be +used as a standalone sanitizer service too. + +Features: +* HTML sanitization +* Rewrites HTML/CSS external references to locals +* JavaScript blocking +* No Cookies forwarded +* No Referrers +* No Caching/Etag +* Supports GET/POST forms and IFrames +* Optional HMAC URL verifier key to prevent service abuse + +WWW: https://github.com/asciimoo/morty From owner-svn-ports-all@freebsd.org Sat Jun 22 03:22:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8846815C9A70; Sat, 22 Jun 2019 03:22:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2BA938DF04; Sat, 22 Jun 2019 03:22:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E06D44DD5; Sat, 22 Jun 2019 03:22:29 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M3MT5B000893; Sat, 22 Jun 2019 03:22:29 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M3MTNh000892; Sat, 22 Jun 2019 03:22:29 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220322.x5M3MTNh000892@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 03:22:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504842 - head/www/wuzz X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/www/wuzz X-SVN-Commit-Revision: 504842 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2BA938DF04 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.948,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 03:22:30 -0000 Author: yuri Date: Sat Jun 22 03:22:29 2019 New Revision: 504842 URL: https://svnweb.freebsd.org/changeset/ports/504842 Log: www/wuzz: Update 0.4.0-9 -> 0.4.0-13 Simplify the port by using USES=go. Modified: head/www/wuzz/Makefile head/www/wuzz/distinfo Modified: head/www/wuzz/Makefile ============================================================================== --- head/www/wuzz/Makefile Sat Jun 22 03:13:17 2019 (r504841) +++ head/www/wuzz/Makefile Sat Jun 22 03:22:29 2019 (r504842) @@ -2,8 +2,8 @@ PORTNAME= wuzz DISTVERSIONPREFIX= v -DISTVERSION= 0.4.0-9 -DISTVERSIONSUFFIX= -g1b75b60 +DISTVERSION= 0.4.0-13 +DISTVERSIONSUFFIX= -g4c6d320 CATEGORIES= www MAINTAINER= yuri@FreeBSD.org @@ -12,34 +12,27 @@ COMMENT= Interactive cli tool for HTTP inspection LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= go:lang/go - +USES= go USE_GITHUB= yes GH_ACCOUNT= asciimoo -GH_TUPLE= alessio:shellescape:v1.2:shellescape/src/github.com/alessio/shellescape \ - andybalholm:cascadia:v1.0.0:cascadia/src/github.com/andybalholm/cascadia \ - BurntSushi:toml:v0.3.0:toml/src/github.com/BurntSushi/toml \ - fatih:color:v1.7.0:color/src/github.com/fatih/color \ - jroimartin:gocui:c055c87:gocui/src/github.com/jroimartin/gocui \ - mattn:go-runewidth:v0.0.2:runewidth/src/github.com/mattn/go-runewidth \ - mitchellh:go-homedir:5804607:homedir/src/github.com/mitchellh/go-homedir \ - nsf:termbox-go:5c94acc:termbox/src/github.com/nsf/termbox-go \ - nwidger:jsoncolor:75a6de4:jsoncolor/src/github.com/nwidger/jsoncolor \ - PuerkitoBio:goquery:v1.4.1:goquery/src/github.com/PuerkitoBio/goquery \ - tidwall:gjson:v1.1.3:gjson/src/github.com/tidwall/gjson \ - tidwall:match:1731857:match/src/github.com/tidwall/match \ - x86kernel:htmlcolor:cf1d377:htmlcolor/src/github.com/x86kernel/htmlcolor \ - golang:net:0ed95ab:net/src/golang.org/x/net +GH_TUPLE= \ + alessio:shellescape:v1.2:shellescape/vendor/github.com/alessio/shellescape \ + andybalholm:cascadia:v1.0.0:cascadia/vendor/github.com/andybalholm/cascadia \ + BurntSushi:toml:v0.3.0:toml/vendor/github.com/BurntSushi/toml \ + fatih:color:v1.7.0:color/vendor/github.com/fatih/color \ + jroimartin:gocui:c055c87:gocui/vendor/github.com/jroimartin/gocui \ + mattn:go-runewidth:v0.0.2:runewidth/vendor/github.com/mattn/go-runewidth \ + mitchellh:go-homedir:5804607:homedir/vendor/github.com/mitchellh/go-homedir \ + nsf:termbox-go:5c94acc:termbox/vendor/github.com/nsf/termbox-go \ + nwidger:jsoncolor:75a6de4:jsoncolor/vendor/github.com/nwidger/jsoncolor \ + PuerkitoBio:goquery:v1.4.1:goquery/vendor/github.com/PuerkitoBio/goquery \ + tidwall:gjson:v1.1.3:gjson/vendor/github.com/tidwall/gjson \ + tidwall:match:1731857:match/vendor/github.com/tidwall/match \ + x86kernel:htmlcolor:cf1d377:htmlcolor/vendor/github.com/x86kernel/htmlcolor \ + golang:net:0ed95ab:net/vendor/golang.org/x/net -GH_SUBDIR:= src/github.com/${GH_ACCOUNT}/${PORTNAME} +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} PLIST_FILES= bin/${PORTNAME} - -do-build: - @cd ${WRKSRC}/${GH_SUBDIR} && \ - ${SETENV} ${MAKE_ENV} GOPATH=${WRKSRC} go build -o ${PORTNAME} - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include Modified: head/www/wuzz/distinfo ============================================================================== --- head/www/wuzz/distinfo Sat Jun 22 03:13:17 2019 (r504841) +++ head/www/wuzz/distinfo Sat Jun 22 03:22:29 2019 (r504842) @@ -1,6 +1,6 @@ -TIMESTAMP = 1534060120 -SHA256 (asciimoo-wuzz-v0.4.0-9-g1b75b60_GH0.tar.gz) = d86e7c90b6fd7144898ac0e8c555a2bab48a6f9d84223cd604610168228e38bd -SIZE (asciimoo-wuzz-v0.4.0-9-g1b75b60_GH0.tar.gz) = 124106 +TIMESTAMP = 1561173631 +SHA256 (asciimoo-wuzz-v0.4.0-13-g4c6d320_GH0.tar.gz) = 67625b81087f9fcac23e170d8f20494266cf795317660033f64466bc72735d52 +SIZE (asciimoo-wuzz-v0.4.0-13-g4c6d320_GH0.tar.gz) = 124208 SHA256 (alessio-shellescape-v1.2_GH0.tar.gz) = 9edd29a26e8b4c2ebd895ba231dff492b1fe7ba1e19876a0535ff40b63854ea6 SIZE (alessio-shellescape-v1.2_GH0.tar.gz) = 2967 SHA256 (andybalholm-cascadia-v1.0.0_GH0.tar.gz) = 00ab6f915e958c9e0509836cd67082a802513459c12c4aa6e7a28ef37743ce52 From owner-svn-ports-all@freebsd.org Sat Jun 22 03:25:46 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 25A2715C9C1A; Sat, 22 Jun 2019 03:25:46 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id BEB1E8E11E; Sat, 22 Jun 2019 03:25:45 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 994034DDE; Sat, 22 Jun 2019 03:25:45 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M3Pj8k001144; Sat, 22 Jun 2019 03:25:45 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M3Pj7k001143; Sat, 22 Jun 2019 03:25:45 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220325.x5M3Pj7k001143@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 03:25:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504843 - head/www/morty X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/www/morty X-SVN-Commit-Revision: 504843 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: BEB1E8E11E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.947,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 03:25:46 -0000 Author: yuri Date: Sat Jun 22 03:25:44 2019 New Revision: 504843 URL: https://svnweb.freebsd.org/changeset/ports/504843 Log: www/morty: Improve wording/spelling. Modified: head/www/morty/Makefile head/www/morty/pkg-descr Modified: head/www/morty/Makefile ============================================================================== --- head/www/morty/Makefile Sat Jun 22 03:22:29 2019 (r504842) +++ head/www/morty/Makefile Sat Jun 22 03:25:44 2019 (r504843) @@ -7,7 +7,7 @@ DISTVERSIONSUFFIX= -gfe94d9a CATEGORIES= www net MAINTAINER= yuri@FreeBSD.org -COMMENT= Privacy aware web content sanitizer proxy as a service +COMMENT= Privacy-aware web content sanitizer proxy as a service LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE Modified: head/www/morty/pkg-descr ============================================================================== --- head/www/morty/pkg-descr Sat Jun 22 03:22:29 2019 (r504842) +++ head/www/morty/pkg-descr Sat Jun 22 03:25:44 2019 (r504843) @@ -1,4 +1,4 @@ -Web content sanitizer proxy as a service +Web content sanitizer proxy as a service. Morty rewrites web pages to exclude malicious HTML tags and attributes. It also replaces external resource references to prevent third party information leaks. @@ -10,9 +10,9 @@ Features: * HTML sanitization * Rewrites HTML/CSS external references to locals * JavaScript blocking -* No Cookies forwarded -* No Referrers -* No Caching/Etag +* No cookies forwarded +* No referrers +* No caching/etag * Supports GET/POST forms and IFrames * Optional HMAC URL verifier key to prevent service abuse From owner-svn-ports-all@freebsd.org Sat Jun 22 03:36:52 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5D64E15CA133; Sat, 22 Jun 2019 03:36:52 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 046798E680; Sat, 22 Jun 2019 03:36:52 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D3EE74FA5; Sat, 22 Jun 2019 03:36:51 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M3ap4X006283; Sat, 22 Jun 2019 03:36:51 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M3ap7H006279; Sat, 22 Jun 2019 03:36:51 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220336.x5M3ap7H006279@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 03:36:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504844 - in head/www: . filtron X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/www: . filtron X-SVN-Commit-Revision: 504844 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 046798E680 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 03:36:52 -0000 Author: yuri Date: Sat Jun 22 03:36:50 2019 New Revision: 504844 URL: https://svnweb.freebsd.org/changeset/ports/504844 Log: New port: www/filtron: Filtering reverse HTTP proxy Added: head/www/filtron/ head/www/filtron/Makefile (contents, props changed) head/www/filtron/distinfo (contents, props changed) head/www/filtron/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Jun 22 03:25:44 2019 (r504843) +++ head/www/Makefile Sat Jun 22 03:36:50 2019 (r504844) @@ -160,6 +160,7 @@ SUBDIR += ffproxy SUBDIR += ffsend SUBDIR += fgallery + SUBDIR += filtron SUBDIR += firefox SUBDIR += firefox-esr SUBDIR += flashplayer Added: head/www/filtron/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/filtron/Makefile Sat Jun 22 03:36:50 2019 (r504844) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= filtron +PORTVERSION= g20180218 +CATEGORIES= www + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Filtering reverse HTTP proxy + +LICENSE= AGPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go +USE_GITHUB= yes +GH_ACCOUNT= asciimoo +GH_TAGNAME= 93f8b22 +GH_TUPLE= \ + klauspost:compress:v1.7.1:compress/vendor/github.com/klauspost/compress \ + klauspost:cpuid:v1.2.1:cpuid/vendor/github.com/klauspost/cpuid \ + valyala:bytebufferpool:v1.0.0:bytebufferpool/vendor/github.com/valyala/bytebufferpool \ + valyala:fasthttp:v1.3.0:fasthttp/vendor/github.com/valyala/fasthttp + +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} + +.include Added: head/www/filtron/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/filtron/distinfo Sat Jun 22 03:36:50 2019 (r504844) @@ -0,0 +1,11 @@ +TIMESTAMP = 1561174409 +SHA256 (asciimoo-filtron-g20180218-93f8b22_GH0.tar.gz) = 80538e7d824992be74e9ac190945071e60e410cd6c99c5eac33b7ba7021ca2f7 +SIZE (asciimoo-filtron-g20180218-93f8b22_GH0.tar.gz) = 106294 +SHA256 (klauspost-compress-v1.7.1_GH0.tar.gz) = 4728ba58238042b5286744e8585f8f706358fd30ebb98d2fb48a67bbbc8e58ea +SIZE (klauspost-compress-v1.7.1_GH0.tar.gz) = 12632704 +SHA256 (klauspost-cpuid-v1.2.1_GH0.tar.gz) = fd66be8517ba837d0f582ad095d2e42e7464c08ef2a3eaffa3bf83330223fa92 +SIZE (klauspost-cpuid-v1.2.1_GH0.tar.gz) = 279083 +SHA256 (valyala-bytebufferpool-v1.0.0_GH0.tar.gz) = 089013e3429ebe7fd2bc3527f003bf3f3f639891e5d8ba6a56010e3671465e1f +SIZE (valyala-bytebufferpool-v1.0.0_GH0.tar.gz) = 5025 +SHA256 (valyala-fasthttp-v1.3.0_GH0.tar.gz) = 34f6190e7b5f993121cc949e2367813482ad83e6cbb51170ff92d34a40231528 +SIZE (valyala-fasthttp-v1.3.0_GH0.tar.gz) = 182300 Added: head/www/filtron/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/filtron/pkg-descr Sat Jun 22 03:36:50 2019 (r504844) @@ -0,0 +1,8 @@ +Reverse HTTP proxy to filter requests by different rules. Can be used between +production webserver and the application server to prevent abuse of the +application backend. + +The original purpose of this program was to defend searx, but it can be used to +guard any web application. + +WWW: https://github.com/asciimoo/filtron From owner-svn-ports-all@freebsd.org Sat Jun 22 04:33:55 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07BAF15CB784; Sat, 22 Jun 2019 04:33:55 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9F95868402; Sat, 22 Jun 2019 04:33:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8A96B5A6B; Sat, 22 Jun 2019 04:33:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M4Xse1037992; Sat, 22 Jun 2019 04:33:54 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M4XrCK037988; Sat, 22 Jun 2019 04:33:53 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220433.x5M4XrCK037988@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 04:33:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504845 - in head/www: . colly X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/www: . colly X-SVN-Commit-Revision: 504845 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9F95868402 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 04:33:55 -0000 Author: yuri Date: Sat Jun 22 04:33:53 2019 New Revision: 504845 URL: https://svnweb.freebsd.org/changeset/ports/504845 Log: New port: www/colly: Elegant scraper and crawler framework for Golang Added: head/www/colly/ head/www/colly/Makefile (contents, props changed) head/www/colly/distinfo (contents, props changed) head/www/colly/pkg-descr (contents, props changed) Modified: head/www/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Sat Jun 22 03:36:50 2019 (r504844) +++ head/www/Makefile Sat Jun 22 04:33:53 2019 (r504845) @@ -90,6 +90,7 @@ SUBDIR += cntlm SUBDIR += codeigniter SUBDIR += coppermine + SUBDIR += colly SUBDIR += cplanet SUBDIR += cppcms SUBDIR += cpr Added: head/www/colly/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/colly/Makefile Sat Jun 22 04:33:53 2019 (r504845) @@ -0,0 +1,50 @@ +# $FreeBSD$ + +PORTNAME= colly +DISTVERSIONPREFIX= v +DISTVERSION= 1.2.0-32 +DISTVERSIONSUFFIX= -gd360e4b +CATEGORIES= www + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Elegant scraper and crawler framework for Golang + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +USES= go +USE_GITHUB= yes +GH_ACCOUNT= gocolly +GH_TUPLE= \ + andybalholm:cascadia:680b6a5:cascadia/vendor/github.com/andybalholm/cascadia \ + antchfx:htmlquery:v1.0.0:htmlquery/vendor/github.com/antchfx/htmlquery \ + antchfx:xmlquery:v1.0.0:xmlquery/vendor/github.com/antchfx/xmlquery \ + antchfx:xpath:v1.0.0:xpath/vendor/github.com/antchfx/xpath \ + gobwas:glob:v0.2.3:glob/vendor/github.com/gobwas/glob \ + golang:appengine:v1.6.1:appengine/vendor/google.golang.org/appengine \ + golang:net:0ed95ab:net/vendor/golang.org/x/net \ + golang:protobuf:v1.3.1:protobuf/vendor/github.com/golang/protobuf \ + golang:text:v0.3.2:golang_text/vendor/golang.org/x/text \ + jawher:mow.cli:v1.1.0:mow_cli/vendor/github.com/jawher/mow.cli \ + kennygrant:sanitize:v1.2.4:sanitize/vendor/github.com/kennygrant/sanitize \ + PuerkitoBio:goquery:v1.4.1:goquery/vendor/github.com/PuerkitoBio/goquery \ + saintfish:chardet:3af4cd4:chardet/vendor/github.com/saintfish/chardet \ + temoto:robotstxt:97ee4a9:robotstxt/vendor/github.com/temoto/robotstxt + +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} +GO_TARGET= ${GO_PKGNAME}/cmd/${PORTNAME} \ + ${EXAMPLES_INSTALLED:S/^/${GO_PKGNAME}\/_examples\//} + +PLIST_FILES= bin/${PORTNAME} \ + ${EXAMPLES_INSTALLED:S/^/bin\/${PORTNAME}-/} + +# many examples of this sraping framework are interesting in themselves, and therefore are installed as executables +EXAMPLES_INSTALLED= basic coursera_courses cryptocoinmarketcap factba.se hackernews_comments instagram openedx_courses reddit shopify_sitemap google_groups + +post-install: +.for e in ${EXAMPLES_INSTALLED} + @cd ${STAGEDIR}${PREFIX}/bin && \ + ${MV} ${e} ${PORTNAME}-${e} +.endfor + +.include Added: head/www/colly/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/colly/distinfo Sat Jun 22 04:33:53 2019 (r504845) @@ -0,0 +1,31 @@ +TIMESTAMP = 1561176363 +SHA256 (gocolly-colly-v1.2.0-32-gd360e4b_GH0.tar.gz) = abfa88e83ec4a222b5aad177617cef828c0673f40f82a62069e3959a80cd8c13 +SIZE (gocolly-colly-v1.2.0-32-gd360e4b_GH0.tar.gz) = 4119505 +SHA256 (antchfx-htmlquery-v1.0.0_GH0.tar.gz) = 99349026726dac354fba22559cb9fe3838177d0c4748c577734b1c120a31c3d1 +SIZE (antchfx-htmlquery-v1.0.0_GH0.tar.gz) = 5108 +SHA256 (antchfx-xmlquery-v1.0.0_GH0.tar.gz) = 389b92bd0b92b0f2a1c33e827847d0e7aa7de38497b52144984513431d0b3956 +SIZE (antchfx-xmlquery-v1.0.0_GH0.tar.gz) = 10379 +SHA256 (antchfx-xpath-v1.0.0_GH0.tar.gz) = 5772fc35984757fcd455aa024bcdb7402f76ca231234547896c5b8af9f9c929a +SIZE (antchfx-xpath-v1.0.0_GH0.tar.gz) = 23845 +SHA256 (andybalholm-cascadia-680b6a5_GH0.tar.gz) = a5f9cc54b003ab93a012ff9e91c3f324e19997891096d1b426939729ea9bdf53 +SIZE (andybalholm-cascadia-680b6a5_GH0.tar.gz) = 13257 +SHA256 (gobwas-glob-v0.2.3_GH0.tar.gz) = 325026fc78bcebcf31151b6e060f4e1c3321b04ded3dab63b63610b323c10850 +SIZE (gobwas-glob-v0.2.3_GH0.tar.gz) = 25962 +SHA256 (golang-appengine-v1.6.1_GH0.tar.gz) = 1755aaf4c6246579337bf1bc4f834ef00c56216da87b20456863ca91985b5afa +SIZE (golang-appengine-v1.6.1_GH0.tar.gz) = 333353 +SHA256 (golang-net-0ed95ab_GH0.tar.gz) = c47997a853b9e9accfb3192498e1b3333f6d000b6674fdfc9e22bd3675c4ff0f +SIZE (golang-net-0ed95ab_GH0.tar.gz) = 929664 +SHA256 (golang-protobuf-v1.3.1_GH0.tar.gz) = 3f3a6123054a9847093c119895f1660612f301fe95358f3a6a1a33fd0933e6cf +SIZE (golang-protobuf-v1.3.1_GH0.tar.gz) = 310884 +SHA256 (golang-text-v0.3.2_GH0.tar.gz) = 0b9309698f5708531c5377ab1e29b423a6d9e20c55a8d386c3b8283428212f22 +SIZE (golang-text-v0.3.2_GH0.tar.gz) = 7168069 +SHA256 (jawher-mow.cli-v1.1.0_GH0.tar.gz) = af18e157df5c23a1a4f05cb45fadef0a0a6f18717582656d42f6287d2bdc398a +SIZE (jawher-mow.cli-v1.1.0_GH0.tar.gz) = 65838 +SHA256 (kennygrant-sanitize-v1.2.4_GH0.tar.gz) = cba9e054e07ba95b23d16b409eb7ac157e6be68c024e3fed0bbfef78524d4802 +SIZE (kennygrant-sanitize-v1.2.4_GH0.tar.gz) = 8922 +SHA256 (PuerkitoBio-goquery-v1.4.1_GH0.tar.gz) = 49962be8afaef664079868699c98b770728005df70c6751b91c55c86a1b3a86c +SIZE (PuerkitoBio-goquery-v1.4.1_GH0.tar.gz) = 100484 +SHA256 (saintfish-chardet-3af4cd4_GH0.tar.gz) = 5701f2b44a796780d91243bcaa2b50b2e53a9a0b04940a049bff058cc54a6e06 +SIZE (saintfish-chardet-3af4cd4_GH0.tar.gz) = 267025 +SHA256 (temoto-robotstxt-97ee4a9_GH0.tar.gz) = 7b095477587cf720aa02cdba532a4a7838b656b8f4ed63dbfd97c07880565b7b +SIZE (temoto-robotstxt-97ee4a9_GH0.tar.gz) = 14070 Added: head/www/colly/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/colly/pkg-descr Sat Jun 22 04:33:53 2019 (r504845) @@ -0,0 +1,17 @@ +With Colly you can easily extract structured data from websites, which can be +used for a wide range of applications, like data mining, data processing or +archiving. + +Features: +* Clean API +* Fast (>1k request/sec on a single core) +* Manages request delays and maximum concurrency per domain +* Automatic cookie and session handling +* Sync/async/parallel scraping +* Distributed scraping +* Caching +* Automatic encoding of non-unicode responses +* Robots.txt support +* Google App Engine support + +WWW: http://go-colly.org/ From owner-svn-ports-all@freebsd.org Sat Jun 22 06:41:18 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0B31215CD515; Sat, 22 Jun 2019 06:41:18 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A62336C078; Sat, 22 Jun 2019 06:41:17 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7FC506EA3; Sat, 22 Jun 2019 06:41:17 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M6fHOf003364; Sat, 22 Jun 2019 06:41:17 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M6fHHN003362; Sat, 22 Jun 2019 06:41:17 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201906220641.x5M6fHHN003362@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Sat, 22 Jun 2019 06:41:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504846 - head/sysutils/cbsd X-SVN-Group: ports-head X-SVN-Commit-Author: krion X-SVN-Commit-Paths: head/sysutils/cbsd X-SVN-Commit-Revision: 504846 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A62336C078 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.94)[-0.942,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 06:41:18 -0000 Author: krion Date: Sat Jun 22 06:41:16 2019 New Revision: 504846 URL: https://svnweb.freebsd.org/changeset/ports/504846 Log: Update to 12.0.12 Changes: https://github.com/cbsd/cbsd/releases/tag/v12.0.12 Submitted by: maintainer Modified: head/sysutils/cbsd/Makefile head/sysutils/cbsd/distinfo Modified: head/sysutils/cbsd/Makefile ============================================================================== --- head/sysutils/cbsd/Makefile Sat Jun 22 04:33:53 2019 (r504845) +++ head/sysutils/cbsd/Makefile Sat Jun 22 06:41:16 2019 (r504846) @@ -1,11 +1,11 @@ # $FreeBSD$ PORTNAME= cbsd -DISTVERSION= 12.0.11 +DISTVERSION= 12.0.12 CATEGORIES= sysutils MAINTAINER= olevole@olevole.ru -COMMENT= Yet another FreeBSD Jail and Bhyve Management Utility +COMMENT= Yet another FreeBSD Jail, XEN and Bhyve Management Utility LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE Modified: head/sysutils/cbsd/distinfo ============================================================================== --- head/sysutils/cbsd/distinfo Sat Jun 22 04:33:53 2019 (r504845) +++ head/sysutils/cbsd/distinfo Sat Jun 22 06:41:16 2019 (r504846) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558018931 -SHA256 (cbsd-cbsd-12.0.11_GH0.tar.gz) = df9c1c60eb57b14406971c63df6a76a5c74972b093d65dce9cb458c410b7b85b -SIZE (cbsd-cbsd-12.0.11_GH0.tar.gz) = 5809731 +TIMESTAMP = 1561159892 +SHA256 (cbsd-cbsd-12.0.12_GH0.tar.gz) = 9874d8956bb6eacf9d6f95370403d86f6ecd0902c6b0fc51a77e1d30348854de +SIZE (cbsd-cbsd-12.0.12_GH0.tar.gz) = 5823712 From owner-svn-ports-all@freebsd.org Sat Jun 22 06:51:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9270415CD6E8; Sat, 22 Jun 2019 06:51:27 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 390D16C586; Sat, 22 Jun 2019 06:51:27 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 120747068; Sat, 22 Jun 2019 06:51:27 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M6pQ9Q005470; Sat, 22 Jun 2019 06:51:26 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M6pQE1005469; Sat, 22 Jun 2019 06:51:26 GMT (envelope-from krion@FreeBSD.org) Message-Id: <201906220651.x5M6pQE1005469@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Sat, 22 Jun 2019 06:51:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r504847 - branches/2019Q2/sysutils/cbsd X-SVN-Group: ports-branches X-SVN-Commit-Author: krion X-SVN-Commit-Paths: branches/2019Q2/sysutils/cbsd X-SVN-Commit-Revision: 504847 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 390D16C586 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.94 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.94)[-0.942,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 06:51:27 -0000 Author: krion Date: Sat Jun 22 06:51:26 2019 New Revision: 504847 URL: https://svnweb.freebsd.org/changeset/ports/504847 Log: MFH: r504846 Update to 12.0.12 Changes: https://github.com/cbsd/cbsd/releases/tag/v12.0.12 Submitted by: maintainer Approved by: portmgr (blanket fixes) Modified: branches/2019Q2/sysutils/cbsd/Makefile branches/2019Q2/sysutils/cbsd/distinfo Directory Properties: branches/2019Q2/ (props changed) Modified: branches/2019Q2/sysutils/cbsd/Makefile ============================================================================== --- branches/2019Q2/sysutils/cbsd/Makefile Sat Jun 22 06:41:16 2019 (r504846) +++ branches/2019Q2/sysutils/cbsd/Makefile Sat Jun 22 06:51:26 2019 (r504847) @@ -1,11 +1,11 @@ # $FreeBSD$ PORTNAME= cbsd -DISTVERSION= 12.0.7 +DISTVERSION= 12.0.12 CATEGORIES= sysutils MAINTAINER= olevole@olevole.ru -COMMENT= Yet another FreeBSD Jail and Bhyve Management Utility +COMMENT= Yet another FreeBSD Jail, XEN and Bhyve Management Utility LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE Modified: branches/2019Q2/sysutils/cbsd/distinfo ============================================================================== --- branches/2019Q2/sysutils/cbsd/distinfo Sat Jun 22 06:41:16 2019 (r504846) +++ branches/2019Q2/sysutils/cbsd/distinfo Sat Jun 22 06:51:26 2019 (r504847) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553094215 -SHA256 (cbsd-cbsd-12.0.7_GH0.tar.gz) = 5e5502ac5b3f344db3c19fd46652a9677169defc974b07a6dd4f7e7182b38ee3 -SIZE (cbsd-cbsd-12.0.7_GH0.tar.gz) = 5802413 +TIMESTAMP = 1561159892 +SHA256 (cbsd-cbsd-12.0.12_GH0.tar.gz) = 9874d8956bb6eacf9d6f95370403d86f6ecd0902c6b0fc51a77e1d30348854de +SIZE (cbsd-cbsd-12.0.12_GH0.tar.gz) = 5823712 From owner-svn-ports-all@freebsd.org Sat Jun 22 07:33:35 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8528415CE725; Sat, 22 Jun 2019 07:33:35 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 239AB6D5DF; Sat, 22 Jun 2019 07:33:35 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F11167856; Sat, 22 Jun 2019 07:33:34 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M7XY52031124; Sat, 22 Jun 2019 07:33:34 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M7XYOK031122; Sat, 22 Jun 2019 07:33:34 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201906220733.x5M7XYOK031122@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sat, 22 Jun 2019 07:33:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504848 - head/lang/gcc8-devel X-SVN-Group: ports-head X-SVN-Commit-Author: gerald X-SVN-Commit-Paths: head/lang/gcc8-devel X-SVN-Commit-Revision: 504848 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 239AB6D5DF X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 07:33:35 -0000 Author: gerald Date: Sat Jun 22 07:33:34 2019 New Revision: 504848 URL: https://svnweb.freebsd.org/changeset/ports/504848 Log: Update to the 20180621 snapshot of GCC 8.3.1. Modified: head/lang/gcc8-devel/Makefile head/lang/gcc8-devel/distinfo Modified: head/lang/gcc8-devel/Makefile ============================================================================== --- head/lang/gcc8-devel/Makefile Sat Jun 22 06:51:26 2019 (r504847) +++ head/lang/gcc8-devel/Makefile Sat Jun 22 07:33:34 2019 (r504848) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gcc -PORTVERSION= 8.3.1.s20190614 +PORTVERSION= 8.3.1.s20190621 CATEGORIES= lang MASTER_SITES= GCC/snapshots/${DIST_VERSION} PKGNAMESUFFIX= ${SUFFIX}-devel Modified: head/lang/gcc8-devel/distinfo ============================================================================== --- head/lang/gcc8-devel/distinfo Sat Jun 22 06:51:26 2019 (r504847) +++ head/lang/gcc8-devel/distinfo Sat Jun 22 07:33:34 2019 (r504848) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560590161 -SHA256 (gcc-8-20190614.tar.xz) = 7626bfb25fc42ef636404b8a33b5a06eb367d569f06934efec29103394378f6d -SIZE (gcc-8-20190614.tar.xz) = 61895160 +TIMESTAMP = 1561156849 +SHA256 (gcc-8-20190621.tar.xz) = 410a5af090f865c7c45c923cbdd20aa838130a42c30d5c0ac29846748d0e763c +SIZE (gcc-8-20190621.tar.xz) = 61895200 From owner-svn-ports-all@freebsd.org Sat Jun 22 08:08:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 09E6715CF578; Sat, 22 Jun 2019 08:08:31 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A4CA16E1E4; Sat, 22 Jun 2019 08:08:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7CFDD7D5E; Sat, 22 Jun 2019 08:08:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M88UZ5047107; Sat, 22 Jun 2019 08:08:30 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M88Uxk047105; Sat, 22 Jun 2019 08:08:30 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220808.x5M88Uxk047105@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 08:08:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504849 - head/misc/bitwise X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/misc/bitwise X-SVN-Commit-Revision: 504849 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A4CA16E1E4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 08:08:31 -0000 Author: yuri Date: Sat Jun 22 08:08:29 2019 New Revision: 504849 URL: https://svnweb.freebsd.org/changeset/ports/504849 Log: misc/bitwise: Update 0.21 -> 0.22 Reported by: portscout Modified: head/misc/bitwise/Makefile head/misc/bitwise/distinfo Modified: head/misc/bitwise/Makefile ============================================================================== --- head/misc/bitwise/Makefile Sat Jun 22 07:33:34 2019 (r504848) +++ head/misc/bitwise/Makefile Sat Jun 22 08:08:29 2019 (r504849) @@ -2,7 +2,7 @@ PORTNAME= bitwise DISTVERSIONPREFIX= v -DISTVERSION= 0.21 +DISTVERSION= 0.22 CATEGORIES= misc MAINTAINER= yuri@FreeBSD.org Modified: head/misc/bitwise/distinfo ============================================================================== --- head/misc/bitwise/distinfo Sat Jun 22 07:33:34 2019 (r504848) +++ head/misc/bitwise/distinfo Sat Jun 22 08:08:29 2019 (r504849) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561073167 -SHA256 (mellowcandle-bitwise-v0.21_GH0.tar.gz) = db0f85d7f44bc8ddc6bcd84aa9112dd2e824f75be107789603b8356928d49586 -SIZE (mellowcandle-bitwise-v0.21_GH0.tar.gz) = 263304 +TIMESTAMP = 1561190747 +SHA256 (mellowcandle-bitwise-v0.22_GH0.tar.gz) = dbbd45d2b6f1f7158396dbe96d480f42d4422d08682c2fb7f7af9f29cae4ef66 +SIZE (mellowcandle-bitwise-v0.22_GH0.tar.gz) = 263231 From owner-svn-ports-all@freebsd.org Sat Jun 22 08:11:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1CB7715CF709; Sat, 22 Jun 2019 08:11:03 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B85F06E31F; Sat, 22 Jun 2019 08:11:02 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 929437E88; Sat, 22 Jun 2019 08:11:02 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M8B2ji047388; Sat, 22 Jun 2019 08:11:02 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M8B2DH047387; Sat, 22 Jun 2019 08:11:02 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220811.x5M8B2DH047387@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 08:11:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504850 - head/devel/py-PyUtilib X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/devel/py-PyUtilib X-SVN-Commit-Revision: 504850 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B85F06E31F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 08:11:03 -0000 Author: yuri Date: Sat Jun 22 08:11:01 2019 New Revision: 504850 URL: https://svnweb.freebsd.org/changeset/ports/504850 Log: devel/py-PyUtilib: Update 5.7.0 -> 5.7.1 Reported by: portscout Modified: head/devel/py-PyUtilib/Makefile head/devel/py-PyUtilib/distinfo Modified: head/devel/py-PyUtilib/Makefile ============================================================================== --- head/devel/py-PyUtilib/Makefile Sat Jun 22 08:08:29 2019 (r504849) +++ head/devel/py-PyUtilib/Makefile Sat Jun 22 08:11:01 2019 (r504850) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= PyUtilib -DISTVERSION= 5.7.0 +DISTVERSION= 5.7.1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-PyUtilib/distinfo ============================================================================== --- head/devel/py-PyUtilib/distinfo Sat Jun 22 08:08:29 2019 (r504849) +++ head/devel/py-PyUtilib/distinfo Sat Jun 22 08:11:01 2019 (r504850) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557377936 -SHA256 (PyUtilib-5.7.0.tar.gz) = 540c9bcdffe4b9a258e4cfcb5891584a54e5d9136cc3f0a09b4f56b1e4fbce20 -SIZE (PyUtilib-5.7.0.tar.gz) = 1500754 +TIMESTAMP = 1561190934 +SHA256 (PyUtilib-5.7.1.tar.gz) = b9cff12af85e3b3d4af528294d26f5c7b105cfe9d124223d7910ed8a0b93b1d4 +SIZE (PyUtilib-5.7.1.tar.gz) = 1501801 From owner-svn-ports-all@freebsd.org Sat Jun 22 08:14:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F1CD15CF753; Sat, 22 Jun 2019 08:14:30 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id F02986E635; Sat, 22 Jun 2019 08:14:29 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C57A27EFD; Sat, 22 Jun 2019 08:14:29 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M8ET0I052382; Sat, 22 Jun 2019 08:14:29 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M8ETKv052380; Sat, 22 Jun 2019 08:14:29 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220814.x5M8ETKv052380@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 08:14:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504851 - head/math/py-Pyomo X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/math/py-Pyomo X-SVN-Commit-Revision: 504851 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: F02986E635 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.953,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 08:14:30 -0000 Author: yuri Date: Sat Jun 22 08:14:29 2019 New Revision: 504851 URL: https://svnweb.freebsd.org/changeset/ports/504851 Log: math/py-Pyomo: Update 5.6.5 -> 5.6.6 Reported by: portscout Modified: head/math/py-Pyomo/Makefile head/math/py-Pyomo/distinfo Modified: head/math/py-Pyomo/Makefile ============================================================================== --- head/math/py-Pyomo/Makefile Sat Jun 22 08:11:01 2019 (r504850) +++ head/math/py-Pyomo/Makefile Sat Jun 22 08:14:29 2019 (r504851) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= Pyomo -DISTVERSION= 5.6.5 +DISTVERSION= 5.6.6 CATEGORIES= math python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/math/py-Pyomo/distinfo ============================================================================== --- head/math/py-Pyomo/distinfo Sat Jun 22 08:11:01 2019 (r504850) +++ head/math/py-Pyomo/distinfo Sat Jun 22 08:14:29 2019 (r504851) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560469167 -SHA256 (Pyomo-5.6.5.tar.gz) = 3e6ca748c4d53ef275edcaa909eb7ec74f1b2b5fcdef0d792a48c99ca01db584 -SIZE (Pyomo-5.6.5.tar.gz) = 17956227 +TIMESTAMP = 1561191114 +SHA256 (Pyomo-5.6.6.tar.gz) = 813e14a604b9d3ac63bdd0880c07f5f4e1b8f0a8a10345f1b42bee762219c001 +SIZE (Pyomo-5.6.6.tar.gz) = 17967862 From owner-svn-ports-all@freebsd.org Sat Jun 22 08:48:23 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E3C7B15D0212; Sat, 22 Jun 2019 08:48:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 755C46F325; Sat, 22 Jun 2019 08:48:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 41ED48403; Sat, 22 Jun 2019 08:48:22 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M8mLVl068143; Sat, 22 Jun 2019 08:48:21 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M8mLTp068138; Sat, 22 Jun 2019 08:48:21 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220848.x5M8mLTp068138@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 08:48:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504852 - in head/net: . coturn X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/net: . coturn X-SVN-Commit-Revision: 504852 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 755C46F325 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.93)[-0.935,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 08:48:23 -0000 Author: yuri Date: Sat Jun 22 08:48:20 2019 New Revision: 504852 URL: https://svnweb.freebsd.org/changeset/ports/504852 Log: New port: net/coturn: TURN server Added: head/net/coturn/ head/net/coturn/Makefile (contents, props changed) head/net/coturn/distinfo (contents, props changed) head/net/coturn/pkg-descr (contents, props changed) head/net/coturn/pkg-plist (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Sat Jun 22 08:14:29 2019 (r504851) +++ head/net/Makefile Sat Jun 22 08:48:20 2019 (r504852) @@ -91,6 +91,7 @@ SUBDIR += corkscrew SUBDIR += corosync2 SUBDIR += corosync3 + SUBDIR += coturn SUBDIR += courier-authlib-ldap SUBDIR += cppzmq SUBDIR += cryptcat Added: head/net/coturn/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/coturn/Makefile Sat Jun 22 08:48:20 2019 (r504852) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= coturn +DISTVERSION= 4.5.1.1 +CATEGORIES= net + +MAINTAINER= yuri@FreeBSD.org +COMMENT= TURN server + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libevent_core.so:devel/libevent + +USES= gettext-runtime gmake mysql shebangfix sqlite ssl +USE_GITHUB= yes + +SHEBANG_FILES= examples/scripts/oauth.sh examples/scripts/restapi/shared_secret_maintainer.pl + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-static --enable-shared --turndbdir=/var/db/${PORTNAME} + +DOCSDIR= ${PREFIX}/share/doc/turnserver +EXAMPLESDIR= ${PREFIX}/share/examples/turnserver + +OPTIONS_DEFINE= DOCS EXAMPLES + +PORTDOCS= * +PORTEXAMPLES= * + +.include Added: head/net/coturn/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/coturn/distinfo Sat Jun 22 08:48:20 2019 (r504852) @@ -0,0 +1,3 @@ +TIMESTAMP = 1561191516 +SHA256 (coturn-coturn-4.5.1.1_GH0.tar.gz) = 8eabe4c241ad9a74655d8516c69b1fa3275e020e7f7fca50a6cb822809e7c220 +SIZE (coturn-coturn-4.5.1.1_GH0.tar.gz) = 420069 Added: head/net/coturn/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/coturn/pkg-descr Sat Jun 22 08:48:20 2019 (r504852) @@ -0,0 +1,9 @@ +The TURN Server is a VoIP media traffic NAT traversal server and gateway. It can +be used as a general-purpose network traffic TURN server and gateway, too. + +On-line management interface (over telnet or over HTTPS) for the TURN server is +available. + +The implementation also includes some extra experimental features. + +WWW: https://github.com/coturn/coturn Added: head/net/coturn/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/coturn/pkg-plist Sat Jun 22 08:48:20 2019 (r504852) @@ -0,0 +1,34 @@ +bin/turnadmin +bin/turnserver +bin/turnutils_natdiscovery +bin/turnutils_oauth +bin/turnutils_peer +bin/turnutils_stunclient +bin/turnutils_uclient +etc/turnserver.conf.default +include/turn/client/TurnMsgLib.h +include/turn/client/ns_turn_ioaddr.h +include/turn/client/ns_turn_msg.h +include/turn/client/ns_turn_msg_addr.h +include/turn/client/ns_turn_msg_defs.h +include/turn/client/ns_turn_msg_defs_experimental.h +include/turn/ns_turn_defs.h +lib/libturnclient.a +man/man1/coturn.1.gz +man/man1/turnadmin.1.gz +man/man1/turnserver.1.gz +man/man1/turnutils.1.gz +man/man1/turnutils_natdiscovery.1.gz +man/man1/turnutils_oauth.1.gz +man/man1/turnutils_peer.1.gz +man/man1/turnutils_stunclient.1.gz +man/man1/turnutils_uclient.1.gz +share/turnserver/schema.mongo.sh +share/turnserver/schema.sql +share/turnserver/schema.stats.redis +share/turnserver/schema.userdb.redis +share/turnserver/testmongosetup.sh +share/turnserver/testredisdbsetup.sh +share/turnserver/testsqldbsetup.sql +/var/db/coturn/turndb +@dir /var/db/coturn From owner-svn-ports-all@freebsd.org Sat Jun 22 08:51:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A891C15D029B; Sat, 22 Jun 2019 08:51:03 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 503B46F47B; Sat, 22 Jun 2019 08:51:03 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2CFCB842B; Sat, 22 Jun 2019 08:51:03 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M8p3Xq068392; Sat, 22 Jun 2019 08:51:03 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M8p2Xd068391; Sat, 22 Jun 2019 08:51:02 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906220851.x5M8p2Xd068391@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Sat, 22 Jun 2019 08:51:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504853 - head/www/gitea X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/www/gitea X-SVN-Commit-Revision: 504853 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 503B46F47B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.93)[-0.932,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 08:51:03 -0000 Author: kai Date: Sat Jun 22 08:51:02 2019 New Revision: 504853 URL: https://svnweb.freebsd.org/changeset/ports/504853 Log: www/gitea: Update to 1.8.3 * Pet portclippy while I'm here. Changelog: https://github.com/go-gitea/gitea/releases/tag/v1.8.3 PR: 238738 Submitted by: stb@lassitu.de (maintainer) Modified: head/www/gitea/Makefile head/www/gitea/distinfo Modified: head/www/gitea/Makefile ============================================================================== --- head/www/gitea/Makefile Sat Jun 22 08:48:20 2019 (r504852) +++ head/www/gitea/Makefile Sat Jun 22 08:51:02 2019 (r504853) @@ -3,7 +3,7 @@ PORTNAME= gitea DISTVERSIONPREFIX= v -DISTVERSION= 1.8.2 +DISTVERSION= 1.8.3 CATEGORIES= www MAINTAINER= stb@lassitu.de @@ -17,11 +17,11 @@ RUN_DEPENDS= git:devel/git USES= go USE_GITHUB= yes GH_ACCOUNT= go-gitea +USE_RC_SUBR= gitea GO_PKGNAME= code.gitea.io/${PORTNAME} GO_TARGET= -tags "${GO_TAGS}" -USE_RC_SUBR= gitea SUB_FILES+= app.ini.sample SUB_LIST+= GITUSER=${USERS} @@ -29,10 +29,10 @@ USERS= git GROUPS= git OPTIONS_DEFINE= CERT PAM SQLITE +OPTIONS_DEFAULT= ${OPTIONS_DEFINE} + CERT_DESC= Automatic creation of self-signed certificates PAM_DESC= Authentication using PAM - -OPTIONS_DEFAULT= ${OPTIONS_DEFINE} CERT_VARS= GO_TAGS+=cert PAM_VARS= GO_TAGS+=pam Modified: head/www/gitea/distinfo ============================================================================== --- head/www/gitea/distinfo Sat Jun 22 08:48:20 2019 (r504852) +++ head/www/gitea/distinfo Sat Jun 22 08:51:02 2019 (r504853) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559214128 -SHA256 (go-gitea-gitea-v1.8.2_GH0.tar.gz) = bb4a641776b0cbd50d2405e9efd785dec998c42f7267737dad401163ea16b61d -SIZE (go-gitea-gitea-v1.8.2_GH0.tar.gz) = 24321492 +TIMESTAMP = 1561107456 +SHA256 (go-gitea-gitea-v1.8.3_GH0.tar.gz) = 77ca5fe4468a94454c05c433eace1a7e282a588aeae268387d8651751f8d4e27 +SIZE (go-gitea-gitea-v1.8.3_GH0.tar.gz) = 24320679 From owner-svn-ports-all@freebsd.org Sat Jun 22 08:57:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D561215D0574; Sat, 22 Jun 2019 08:56:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3250B6F84E; Sat, 22 Jun 2019 08:56:59 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7263A85A6; Sat, 22 Jun 2019 08:56:58 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M8uwrX073756; Sat, 22 Jun 2019 08:56:58 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M8uwjY073755; Sat, 22 Jun 2019 08:56:58 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906220856.x5M8uwjY073755@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 08:56:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504854 - head/audio/zrythm X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: head/audio/zrythm X-SVN-Commit-Revision: 504854 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3250B6F84E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.93)[-0.932,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 08:57:00 -0000 Author: yuri Date: Sat Jun 22 08:56:57 2019 New Revision: 504854 URL: https://svnweb.freebsd.org/changeset/ports/504854 Log: audio/zrythm: Update 0.5.074 -> 0.5.097 Modified: head/audio/zrythm/Makefile head/audio/zrythm/distinfo Modified: head/audio/zrythm/Makefile ============================================================================== --- head/audio/zrythm/Makefile Sat Jun 22 08:51:02 2019 (r504853) +++ head/audio/zrythm/Makefile Sat Jun 22 08:56:57 2019 (r504854) @@ -2,7 +2,7 @@ PORTNAME= zrythm DISTVERSIONPREFIX= v -DISTVERSION= 0.5.074 +DISTVERSION= 0.5.097 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org @@ -32,7 +32,7 @@ RUN_DEPENDS= gsettings-desktop-schemas>=0:devel/gsetti USES= gettext-tools meson python:3.5+,build gettext-runtime gnome libtool pkgconfig shebangfix USE_GITLAB= yes GL_SITE= https://git.zrythm.org -GL_COMMIT= 5a57bff53facbf914bfbc90ac0113d2eedd0d0f3 +GL_COMMIT= 5b1f4efa53ca33090ef7795204dfc387072f58f5 SHEBANG_FILES= resources/gen-gtk-gresources-xml.py scripts/collect_translatables.sh scripts/meson_post_install.py USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 libxml2 pango USE_XORG= x11 Modified: head/audio/zrythm/distinfo ============================================================================== --- head/audio/zrythm/distinfo Sat Jun 22 08:51:02 2019 (r504853) +++ head/audio/zrythm/distinfo Sat Jun 22 08:56:57 2019 (r504854) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560563655 -SHA256 (zrythm-zrythm-5a57bff53facbf914bfbc90ac0113d2eedd0d0f3_GL0.tar.gz) = f1f699b17cc9cc647b181b3dae36ed5f9c0edac2f562d5a91e6ea1e99f577cb6 -SIZE (zrythm-zrythm-5a57bff53facbf914bfbc90ac0113d2eedd0d0f3_GL0.tar.gz) = 7338777 +TIMESTAMP = 1561193487 +SHA256 (zrythm-zrythm-5b1f4efa53ca33090ef7795204dfc387072f58f5_GL0.tar.gz) = 9b1617cf22005215c8dfdc8148d4c449df86038f28cd769563d1c607d0909b11 +SIZE (zrythm-zrythm-5b1f4efa53ca33090ef7795204dfc387072f58f5_GL0.tar.gz) = 7060491 From owner-svn-ports-all@freebsd.org Sat Jun 22 09:01:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EC1D115D08F2; Sat, 22 Jun 2019 09:01:14 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 933BD6FB11; Sat, 22 Jun 2019 09:01:14 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6E3DE85F2; Sat, 22 Jun 2019 09:01:14 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M91E6M074820; Sat, 22 Jun 2019 09:01:14 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M91ENM074817; Sat, 22 Jun 2019 09:01:14 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906220901.x5M91ENM074817@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Sat, 22 Jun 2019 09:01:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504855 - head/shells/ammonite X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/shells/ammonite X-SVN-Commit-Revision: 504855 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 933BD6FB11 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.93)[-0.932,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 09:01:15 -0000 Author: kai Date: Sat Jun 22 09:01:13 2019 New Revision: 504855 URL: https://svnweb.freebsd.org/changeset/ports/504855 Log: shells/ammonite: Update to 1.6.8 Changelog since 1.6.5: * Support for Scala 2.13.0 * Fix regression in "source" builtin * Autocomplete for "import $ivy" statements PR: 238599 Submitted by: Jens Grassel (maintainer) Modified: head/shells/ammonite/Makefile head/shells/ammonite/distinfo Modified: head/shells/ammonite/Makefile ============================================================================== --- head/shells/ammonite/Makefile Sat Jun 22 08:56:57 2019 (r504854) +++ head/shells/ammonite/Makefile Sat Jun 22 09:01:13 2019 (r504855) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= ammonite -DISTVERSION= 1.6.5 +DISTVERSION= 1.6.8 CATEGORIES= shells java MASTER_SITES= https://github.com/lihaoyi/Ammonite/releases/download/${PORTVERSION}/ DISTNAME= 2.12-${PORTVERSION} Modified: head/shells/ammonite/distinfo ============================================================================== --- head/shells/ammonite/distinfo Sat Jun 22 08:56:57 2019 (r504854) +++ head/shells/ammonite/distinfo Sat Jun 22 09:01:13 2019 (r504855) @@ -1,3 +1,3 @@ -TIMESTAMP = 1553710263 -SHA256 (ammonite/2.12-1.6.5) = 06666a1ae95e5b3960130ed0128947f26199184ccba2fef3d62eb69a9e48674e -SIZE (ammonite/2.12-1.6.5) = 29301883 +TIMESTAMP = 1561118278 +SHA256 (ammonite/2.12-1.6.8) = adc85533fb81909a5efc3fd2bf953714ddc4dd023419a35af00db9b2c3010cd3 +SIZE (ammonite/2.12-1.6.8) = 33951394 From owner-svn-ports-all@freebsd.org Sat Jun 22 09:02:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ADC6615D094B; Sat, 22 Jun 2019 09:02:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 54F5B6FC94; Sat, 22 Jun 2019 09:02:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2FB178634; Sat, 22 Jun 2019 09:02:03 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M9230e078027; Sat, 22 Jun 2019 09:02:03 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M923tc078026; Sat, 22 Jun 2019 09:02:03 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906220902.x5M923tc078026@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 22 Jun 2019 09:02:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504856 - head/sysutils/zfsnap X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/sysutils/zfsnap X-SVN-Commit-Revision: 504856 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 54F5B6FC94 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.93)[-0.932,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 09:02:03 -0000 Author: amdmi3 Date: Sat Jun 22 09:02:02 2019 New Revision: 504856 URL: https://svnweb.freebsd.org/changeset/ports/504856 Log: - Update WWW Approved by: portmgr blanket Modified: head/sysutils/zfsnap/pkg-descr Modified: head/sysutils/zfsnap/pkg-descr ============================================================================== --- head/sysutils/zfsnap/pkg-descr Sat Jun 22 09:01:13 2019 (r504855) +++ head/sysutils/zfsnap/pkg-descr Sat Jun 22 09:02:02 2019 (r504856) @@ -7,4 +7,4 @@ zfSnap keeps all information about snapshot in snapsho names are in form: Timestamp--TTL where timestamp is date and time of snapshot creation and TTL is Time To Live in human readable form. -WWW: https://github.com/graudeejs/zfSnap/ +WWW: https://github.com/zfsnap/zfsnap From owner-svn-ports-all@freebsd.org Sat Jun 22 09:32:00 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5929815D0E76; Sat, 22 Jun 2019 09:32:00 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E317B706ED; Sat, 22 Jun 2019 09:31:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BBC878C43; Sat, 22 Jun 2019 09:31:59 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M9VxQC093537; Sat, 22 Jun 2019 09:31:59 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M9VxNm093536; Sat, 22 Jun 2019 09:31:59 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201906220931.x5M9VxNm093536@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Sat, 22 Jun 2019 09:31:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504857 - head/databases/ldb X-SVN-Group: ports-head X-SVN-Commit-Author: amdmi3 X-SVN-Commit-Paths: head/databases/ldb X-SVN-Commit-Revision: 504857 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E317B706ED X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.93 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.93)[-0.932,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 09:32:00 -0000 Author: amdmi3 Date: Sat Jun 22 09:31:59 2019 New Revision: 504857 URL: https://svnweb.freebsd.org/changeset/ports/504857 Log: - Update WWW Approved by: portmgr blanket Modified: head/databases/ldb/pkg-descr Modified: head/databases/ldb/pkg-descr ============================================================================== --- head/databases/ldb/pkg-descr Sat Jun 22 09:02:02 2019 (r504856) +++ head/databases/ldb/pkg-descr Sat Jun 22 09:31:59 2019 (r504857) @@ -6,4 +6,4 @@ within an application. In some ways it can be seen as a intermediate solution between key-value pair databases and a real LDAP database. -WWW: http://ldb.samba.org/ +WWW: https://ldb.samba.org/ From owner-svn-ports-all@freebsd.org Sat Jun 22 09:57:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6239615D1217; Sat, 22 Jun 2019 09:57:37 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EEC1870FD1; Sat, 22 Jun 2019 09:57:36 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BC6CF8FE1; Sat, 22 Jun 2019 09:57:36 +0000 (UTC) (envelope-from araujo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5M9vaWU005240; Sat, 22 Jun 2019 09:57:36 GMT (envelope-from araujo@FreeBSD.org) Received: (from araujo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5M9vaBJ005238; Sat, 22 Jun 2019 09:57:36 GMT (envelope-from araujo@FreeBSD.org) Message-Id: <201906220957.x5M9vaBJ005238@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: araujo set sender to araujo@FreeBSD.org using -f From: Marcelo Araujo Date: Sat, 22 Jun 2019 09:57:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504858 - head/www/youtube_dl X-SVN-Group: ports-head X-SVN-Commit-Author: araujo X-SVN-Commit-Paths: head/www/youtube_dl X-SVN-Commit-Revision: 504858 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EEC1870FD1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.96)[-0.958,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 09:57:37 -0000 Author: araujo Date: Sat Jun 22 09:57:36 2019 New Revision: 504858 URL: https://svnweb.freebsd.org/changeset/ports/504858 Log: Update to 2019.06.21. Reported by: tj@mrsk.me (via email) Modified: head/www/youtube_dl/Makefile head/www/youtube_dl/distinfo Modified: head/www/youtube_dl/Makefile ============================================================================== --- head/www/youtube_dl/Makefile Sat Jun 22 09:31:59 2019 (r504857) +++ head/www/youtube_dl/Makefile Sat Jun 22 09:57:36 2019 (r504858) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= youtube_dl -PORTVERSION= 2019.06.08 +PORTVERSION= 2019.06.21 CATEGORIES= www MASTER_SITES= https://yt-dl.org/downloads/${PORTVERSION}/ DISTNAME= youtube-dl-${PORTVERSION} Modified: head/www/youtube_dl/distinfo ============================================================================== --- head/www/youtube_dl/distinfo Sat Jun 22 09:31:59 2019 (r504857) +++ head/www/youtube_dl/distinfo Sat Jun 22 09:57:36 2019 (r504858) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560778086 -SHA256 (youtube-dl-2019.06.08.tar.gz) = 275a8506ecd6c72589bfc66b749cd80847e7393df1d6e1becd1d11ba90980837 -SIZE (youtube-dl-2019.06.08.tar.gz) = 3169571 +TIMESTAMP = 1561197467 +SHA256 (youtube-dl-2019.06.21.tar.gz) = 85872e23add44409711bd0eb5620c663d67c578a3df663578ff07f944212470d +SIZE (youtube-dl-2019.06.21.tar.gz) = 3169975 From owner-svn-ports-all@freebsd.org Sat Jun 22 12:09:51 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C2C2A15D3913; Sat, 22 Jun 2019 12:09:50 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 65DB673D06; Sat, 22 Jun 2019 12:09:50 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3E346A564; Sat, 22 Jun 2019 12:09:50 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MC9ojX073093; Sat, 22 Jun 2019 12:09:50 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MC9lZ5073082; Sat, 22 Jun 2019 12:09:47 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906221209.x5MC9lZ5073082@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 22 Jun 2019 12:09:47 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504859 - in head/net-mgmt: zabbix22-server zabbix22-server/files zabbix3-server zabbix3-server/files zabbix4-server zabbix4-server/files zabbix42-server zabbix42-server/files X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: in head/net-mgmt: zabbix22-server zabbix22-server/files zabbix3-server zabbix3-server/files zabbix4-server zabbix4-server/files zabbix42-server zabbix42-server/files X-SVN-Commit-Revision: 504859 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 65DB673D06 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.967,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 12:09:51 -0000 Author: dbaio Date: Sat Jun 22 12:09:47 2019 New Revision: 504859 URL: https://svnweb.freebsd.org/changeset/ports/504859 Log: net-mgmt/zabbix*: Fix MySQL order in rc scripts MySQL and MariaDB uses `PROVIDE: mysql`. PR: 238211 Submitted by: Miroslav Lachman <000.fbsd@quip.cz> Approved by: maintainer timeout (pg@pakhom.spb.ru, > 3 weeks) Modified: head/net-mgmt/zabbix22-server/Makefile head/net-mgmt/zabbix22-server/files/zabbix_proxy.in head/net-mgmt/zabbix22-server/files/zabbix_server.in head/net-mgmt/zabbix3-server/Makefile head/net-mgmt/zabbix3-server/files/zabbix_proxy.in head/net-mgmt/zabbix3-server/files/zabbix_server.in head/net-mgmt/zabbix4-server/Makefile head/net-mgmt/zabbix4-server/files/zabbix_proxy.in head/net-mgmt/zabbix4-server/files/zabbix_server.in head/net-mgmt/zabbix42-server/Makefile head/net-mgmt/zabbix42-server/files/zabbix_proxy.in head/net-mgmt/zabbix42-server/files/zabbix_server.in Modified: head/net-mgmt/zabbix22-server/Makefile ============================================================================== --- head/net-mgmt/zabbix22-server/Makefile Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix22-server/Makefile Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ PORTNAME= zabbix22 PORTVERSION= 2.2.23 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} PKGNAMESUFFIX?= -server Modified: head/net-mgmt/zabbix22-server/files/zabbix_proxy.in ============================================================================== --- head/net-mgmt/zabbix22-server/files/zabbix_proxy.in Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix22-server/files/zabbix_proxy.in Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ # PROVIDE: zabbix_proxy # REQUIRE: DAEMON %%PGSQL%%# REQUIRE: postgresql -%%MYSQL%%# REQUIRE: mysql-server +%%MYSQL%%# REQUIRE: mysql # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf to Modified: head/net-mgmt/zabbix22-server/files/zabbix_server.in ============================================================================== --- head/net-mgmt/zabbix22-server/files/zabbix_server.in Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix22-server/files/zabbix_server.in Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ # PROVIDE: zabbix_server # REQUIRE: DAEMON %%PGSQL%%# REQUIRE: postgresql -%%MYSQL%%# REQUIRE: mysql-server +%%MYSQL%%# REQUIRE: mysql # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf to Modified: head/net-mgmt/zabbix3-server/Makefile ============================================================================== --- head/net-mgmt/zabbix3-server/Makefile Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix3-server/Makefile Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ PORTNAME= zabbix3 PORTVERSION= 3.0.28 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} PKGNAMESUFFIX?= -server Modified: head/net-mgmt/zabbix3-server/files/zabbix_proxy.in ============================================================================== --- head/net-mgmt/zabbix3-server/files/zabbix_proxy.in Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix3-server/files/zabbix_proxy.in Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ # PROVIDE: zabbix_proxy # REQUIRE: DAEMON %%PGSQL%%# REQUIRE: postgresql -%%MYSQL%%# REQUIRE: mysql-server +%%MYSQL%%# REQUIRE: mysql # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf to Modified: head/net-mgmt/zabbix3-server/files/zabbix_server.in ============================================================================== --- head/net-mgmt/zabbix3-server/files/zabbix_server.in Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix3-server/files/zabbix_server.in Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ # PROVIDE: zabbix_server # REQUIRE: DAEMON %%PGSQL%%# REQUIRE: postgresql -%%MYSQL%%# REQUIRE: mysql-server +%%MYSQL%%# REQUIRE: mysql # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf to Modified: head/net-mgmt/zabbix4-server/Makefile ============================================================================== --- head/net-mgmt/zabbix4-server/Makefile Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix4-server/Makefile Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ PORTNAME= zabbix4 PORTVERSION= 4.0.9 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} PKGNAMESUFFIX?= -server Modified: head/net-mgmt/zabbix4-server/files/zabbix_proxy.in ============================================================================== --- head/net-mgmt/zabbix4-server/files/zabbix_proxy.in Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix4-server/files/zabbix_proxy.in Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ # PROVIDE: zabbix_proxy # REQUIRE: DAEMON %%PGSQL%%# REQUIRE: postgresql -%%MYSQL%%# REQUIRE: mysql-server +%%MYSQL%%# REQUIRE: mysql # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf to Modified: head/net-mgmt/zabbix4-server/files/zabbix_server.in ============================================================================== --- head/net-mgmt/zabbix4-server/files/zabbix_server.in Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix4-server/files/zabbix_server.in Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ # PROVIDE: zabbix_server # REQUIRE: DAEMON %%PGSQL%%# REQUIRE: postgresql -%%MYSQL%%# REQUIRE: mysql-server +%%MYSQL%%# REQUIRE: mysql # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf to Modified: head/net-mgmt/zabbix42-server/Makefile ============================================================================== --- head/net-mgmt/zabbix42-server/Makefile Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix42-server/Makefile Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ PORTNAME= zabbix42 PORTVERSION= 4.2.3 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= net-mgmt MASTER_SITES= SF/zabbix/ZABBIX%20Latest%20Stable/${PORTVERSION} PKGNAMESUFFIX?= -server Modified: head/net-mgmt/zabbix42-server/files/zabbix_proxy.in ============================================================================== --- head/net-mgmt/zabbix42-server/files/zabbix_proxy.in Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix42-server/files/zabbix_proxy.in Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ # PROVIDE: zabbix_proxy # REQUIRE: DAEMON %%PGSQL%%# REQUIRE: postgresql -%%MYSQL%%# REQUIRE: mysql-server +%%MYSQL%%# REQUIRE: mysql # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf to Modified: head/net-mgmt/zabbix42-server/files/zabbix_server.in ============================================================================== --- head/net-mgmt/zabbix42-server/files/zabbix_server.in Sat Jun 22 09:57:36 2019 (r504858) +++ head/net-mgmt/zabbix42-server/files/zabbix_server.in Sat Jun 22 12:09:47 2019 (r504859) @@ -3,7 +3,7 @@ # PROVIDE: zabbix_server # REQUIRE: DAEMON %%PGSQL%%# REQUIRE: postgresql -%%MYSQL%%# REQUIRE: mysql-server +%%MYSQL%%# REQUIRE: mysql # KEYWORD: shutdown # # Add the following lines to /etc/rc.conf.local or /etc/rc.conf to From owner-svn-ports-all@freebsd.org Sat Jun 22 12:16:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4E0E215D3B19; Sat, 22 Jun 2019 12:16:17 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E81A374516; Sat, 22 Jun 2019 12:16:16 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BF7D7A705; Sat, 22 Jun 2019 12:16:16 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MCGGuZ078072; Sat, 22 Jun 2019 12:16:16 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MCGGr6078070; Sat, 22 Jun 2019 12:16:16 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201906221216.x5MCGGr6078070@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 22 Jun 2019 12:16:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504860 - head/x11/rsibreak X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/x11/rsibreak X-SVN-Commit-Revision: 504860 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E81A374516 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.966,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 12:16:17 -0000 Author: tcberner Date: Sat Jun 22 12:16:15 2019 New Revision: 504860 URL: https://svnweb.freebsd.org/changeset/ports/504860 Log: astro/rsibreak: update to 0.12.10 Modified: head/x11/rsibreak/Makefile head/x11/rsibreak/distinfo head/x11/rsibreak/pkg-plist Modified: head/x11/rsibreak/Makefile ============================================================================== --- head/x11/rsibreak/Makefile Sat Jun 22 12:09:47 2019 (r504859) +++ head/x11/rsibreak/Makefile Sat Jun 22 12:16:15 2019 (r504860) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= rsibreak -PORTVERSION= 0.12.9 -PORTREVISION= 1 +DISTVERSION= 0.12.10 CATEGORIES= x11 kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION:R}/ Modified: head/x11/rsibreak/distinfo ============================================================================== --- head/x11/rsibreak/distinfo Sat Jun 22 12:09:47 2019 (r504859) +++ head/x11/rsibreak/distinfo Sat Jun 22 12:16:15 2019 (r504860) @@ -1,3 +1,3 @@ -TIMESTAMP = 1539114911 -SHA256 (rsibreak-0.12.9.tar.xz) = badf32d66e961e99006da942b8026a7c7b648f09ccf1322157812028229b9798 -SIZE (rsibreak-0.12.9.tar.xz) = 541368 +TIMESTAMP = 1561201677 +SHA256 (rsibreak-0.12.10.tar.xz) = 93f790e107c9ec98c6a5f45f89b318a0b72c906c69828f2f91094b859510cc51 +SIZE (rsibreak-0.12.10.tar.xz) = 546044 Modified: head/x11/rsibreak/pkg-plist ============================================================================== --- head/x11/rsibreak/pkg-plist Sat Jun 22 12:09:47 2019 (r504859) +++ head/x11/rsibreak/pkg-plist Sat Jun 22 12:16:15 2019 (r504860) @@ -1,6 +1,6 @@ bin/rsibreak etc/xdg/autostart/rsibreak_autostart.desktop -share/applications/rsibreak.desktop +share/applications/org.kde.rsibreak.desktop share/dbus-1/interfaces/org.rsibreak.rsiwidget.xml share/doc/HTML/ca/rsibreak/index.cache.bz2 share/doc/HTML/ca/rsibreak/index.docbook @@ -62,7 +62,6 @@ share/icons/hicolor/48x48/actions/rsibreak4.png share/icons/hicolor/48x48/actions/rsibreakx.png share/knotifications5/rsibreak.notifyrc share/locale/ar/LC_MESSAGES/rsibreak.mo -share/locale/ast/LC_MESSAGES/rsibreak.mo share/locale/be/LC_MESSAGES/rsibreak.mo share/locale/bs/LC_MESSAGES/rsibreak.mo share/locale/ca/LC_MESSAGES/rsibreak.mo @@ -109,3 +108,4 @@ share/locale/ug/LC_MESSAGES/rsibreak.mo share/locale/uk/LC_MESSAGES/rsibreak.mo share/locale/zh_CN/LC_MESSAGES/rsibreak.mo share/locale/zh_TW/LC_MESSAGES/rsibreak.mo +share/metainfo/org.kde.rsibreak.appdata.xml From owner-svn-ports-all@freebsd.org Sat Jun 22 12:47:28 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 85B7115D46B6; Sat, 22 Jun 2019 12:47:28 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2883E75221; Sat, 22 Jun 2019 12:47:28 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F1D2CABFA; Sat, 22 Jun 2019 12:47:27 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MClR7f093883; Sat, 22 Jun 2019 12:47:27 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MClRC3093882; Sat, 22 Jun 2019 12:47:27 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906221247.x5MClRC3093882@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 22 Jun 2019 12:47:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504861 - head/security/vuxml X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/security/vuxml X-SVN-Commit-Revision: 504861 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 2883E75221 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.983,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 12:47:28 -0000 Author: dbaio Date: Sat Jun 22 12:47:27 2019 New Revision: 504861 URL: https://svnweb.freebsd.org/changeset/ports/504861 Log: security/vuxml: Document irc/znc issue Security: CVE-2019-12816 Modified: head/security/vuxml/vuln.xml Modified: head/security/vuxml/vuln.xml ============================================================================== --- head/security/vuxml/vuln.xml Sat Jun 22 12:16:15 2019 (r504860) +++ head/security/vuxml/vuln.xml Sat Jun 22 12:47:27 2019 (r504861) @@ -58,6 +58,34 @@ Notes: * Do not forget port variants (linux-f10-libxml2, libxml2, etc.) --> + + znc -- privilege escalation + + + znc + 1.7.4 + + + + +

Mitre reports:

+
+

Modules.cpp in ZNC before 1.7.4-rc1 allows remote authenticated + non-admin users to escalate privileges and execute arbitrary + code by loading a module with a crafted name.

+
+ +
+ + CVE-2019-12816 + https://wiki.znc.in/ChangeLog/1.7.4 + + + 2019-06-13 + 2019-06-22 + +
+ Mozilla -- multiple vulnerabilities From owner-svn-ports-all@freebsd.org Sat Jun 22 12:51:50 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A5D5815D477F; Sat, 22 Jun 2019 12:51:50 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 403CA75633; Sat, 22 Jun 2019 12:51:50 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1AA02AD58; Sat, 22 Jun 2019 12:51:50 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MCpnjS095770; Sat, 22 Jun 2019 12:51:49 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MCpnxg095766; Sat, 22 Jun 2019 12:51:49 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201906221251.x5MCpnxg095766@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Sat, 22 Jun 2019 12:51:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504862 - in head/sysutils/tmux: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mat X-SVN-Commit-Paths: in head/sysutils/tmux: . files X-SVN-Commit-Revision: 504862 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 403CA75633 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.983,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 12:51:51 -0000 Author: mat Date: Sat Jun 22 12:51:49 2019 New Revision: 504862 URL: https://svnweb.freebsd.org/changeset/ports/504862 Log: Update to 2.9a Modified: head/sysutils/tmux/Makefile (contents, props changed) head/sysutils/tmux/distinfo (contents, props changed) head/sysutils/tmux/files/extra-patch-tty-keys.c (contents, props changed) Modified: head/sysutils/tmux/Makefile ============================================================================== --- head/sysutils/tmux/Makefile Sat Jun 22 12:47:27 2019 (r504861) +++ head/sysutils/tmux/Makefile Sat Jun 22 12:51:49 2019 (r504862) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= tmux -PORTVERSION= 2.8 -PORTREVISION= 1 +PORTVERSION= 2.9a CATEGORIES= sysutils MASTER_SITES= https://github.com/tmux/tmux/releases/download/${PORTVERSION}/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} Modified: head/sysutils/tmux/distinfo ============================================================================== --- head/sysutils/tmux/distinfo Sat Jun 22 12:47:27 2019 (r504861) +++ head/sysutils/tmux/distinfo Sat Jun 22 12:51:49 2019 (r504862) @@ -1,5 +1,5 @@ -TIMESTAMP = 1540476146 -SHA256 (tmux-2.8.tar.gz) = 7f6bf335634fafecff878d78de389562ea7f73a7367f268b66d37ea13617a2ba -SIZE (tmux-2.8.tar.gz) = 491195 +TIMESTAMP = 1561207576 +SHA256 (tmux-2.9a.tar.gz) = 839d167a4517a6bffa6b6074e89a9a8630547b2dea2086f1fad15af12ab23b25 +SIZE (tmux-2.9a.tar.gz) = 510915 SHA256 (imomaliev-tmux-bash-completion-ef56d3e_GH0.tar.gz) = 2f8f3fe586bbdeec9b251ce3ef74f5edef19ba371968a8011acef860ddac59e1 SIZE (imomaliev-tmux-bash-completion-ef56d3e_GH0.tar.gz) = 1526 Modified: head/sysutils/tmux/files/extra-patch-tty-keys.c ============================================================================== --- head/sysutils/tmux/files/extra-patch-tty-keys.c Sat Jun 22 12:47:27 2019 (r504861) +++ head/sysutils/tmux/files/extra-patch-tty-keys.c Sat Jun 22 12:51:49 2019 (r504862) @@ -1,6 +1,6 @@ ---- tty-keys.c.orig 2018-10-17 18:28:08 UTC +--- tty-keys.c.orig 2019-05-01 06:07:32 UTC +++ tty-keys.c -@@ -681,8 +681,6 @@ complete_key: +@@ -704,8 +704,6 @@ complete_key: * used. termios should have a better idea. */ bspace = tty->tio.c_cc[VERASE]; From owner-svn-ports-all@freebsd.org Sat Jun 22 13:08:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A1C2315D4B24; Sat, 22 Jun 2019 13:08:19 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48BFC760C4; Sat, 22 Jun 2019 13:08:19 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1DD82AF3D; Sat, 22 Jun 2019 13:08:19 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MD8JxX004796; Sat, 22 Jun 2019 13:08:19 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MD8It3004795; Sat, 22 Jun 2019 13:08:18 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906221308.x5MD8It3004795@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 22 Jun 2019 13:08:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504863 - head/irc/znc X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/irc/znc X-SVN-Commit-Revision: 504863 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 48BFC760C4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 13:08:19 -0000 Author: dbaio Date: Sat Jun 22 13:08:18 2019 New Revision: 504863 URL: https://svnweb.freebsd.org/changeset/ports/504863 Log: irc/znc: Update to 1.7.4, Fix Privilege Escalation issue Changelog: https://wiki.znc.in/ChangeLog/1.7.4 MFH: 2019Q2 Security: 6f15730d-94ea-11e9-a83e-641c67a117d8 Modified: head/irc/znc/Makefile head/irc/znc/distinfo Modified: head/irc/znc/Makefile ============================================================================== --- head/irc/znc/Makefile Sat Jun 22 12:51:49 2019 (r504862) +++ head/irc/znc/Makefile Sat Jun 22 13:08:18 2019 (r504863) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= znc -PORTVERSION= 1.7.3 -PORTREVISION= 1 +PORTVERSION= 1.7.4 CATEGORIES= irc ipv6 MASTER_SITES= https://znc.in/releases/ \ https://znc.in/releases/archive/ Modified: head/irc/znc/distinfo ============================================================================== --- head/irc/znc/distinfo Sat Jun 22 12:51:49 2019 (r504862) +++ head/irc/znc/distinfo Sat Jun 22 13:08:18 2019 (r504863) @@ -1,3 +1,3 @@ -TIMESTAMP = 1554036303 -SHA256 (znc-1.7.3.tar.gz) = 1e4cc31837a1e8e6cc310873659a167cec16a3fd4281cbc3bf364e42352c113d -SIZE (znc-1.7.3.tar.gz) = 2084575 +TIMESTAMP = 1561206751 +SHA256 (znc-1.7.4.tar.gz) = b1a32921a8e6d79ee6c5900c8d07293026966db7c05aaac48984231befc49b71 +SIZE (znc-1.7.4.tar.gz) = 2084756 From owner-svn-ports-all@freebsd.org Sat Jun 22 13:51:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 45CA915D552B; Sat, 22 Jun 2019 13:51:15 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D05E976EF7; Sat, 22 Jun 2019 13:51:14 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ACD1EB611; Sat, 22 Jun 2019 13:51:14 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MDpE1h025932; Sat, 22 Jun 2019 13:51:14 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MDpEYd025930; Sat, 22 Jun 2019 13:51:14 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201906221351.x5MDpEYd025930@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 22 Jun 2019 13:51:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504864 - in head/astro/kstars: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/astro/kstars: . files X-SVN-Commit-Revision: 504864 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D05E976EF7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 13:51:15 -0000 Author: tcberner Date: Sat Jun 22 13:51:13 2019 New Revision: 504864 URL: https://svnweb.freebsd.org/changeset/ports/504864 Log: astro/kstars: update to 3.3.0 Added: head/astro/kstars/files/patch-kstars_kstars.cpp (contents, props changed) Modified: head/astro/kstars/Makefile head/astro/kstars/distinfo Modified: head/astro/kstars/Makefile ============================================================================== --- head/astro/kstars/Makefile Sat Jun 22 13:08:18 2019 (r504863) +++ head/astro/kstars/Makefile Sat Jun 22 13:51:13 2019 (r504864) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= kstars -DISTVERSION= 3.2.3 +DISTVERSION= 3.3.0 PORTEPOCH= 1 CATEGORIES= astro kde MASTER_SITES= KDE/stable/${PORTNAME} Modified: head/astro/kstars/distinfo ============================================================================== --- head/astro/kstars/distinfo Sat Jun 22 13:08:18 2019 (r504863) +++ head/astro/kstars/distinfo Sat Jun 22 13:51:13 2019 (r504864) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559409868 -SHA256 (kstars-3.2.3.tar.xz) = e854e1a10f11351a3cada32184ede5df76619a7188d98d06b395d2cd865b3370 -SIZE (kstars-3.2.3.tar.xz) = 70750660 +TIMESTAMP = 1561200114 +SHA256 (kstars-3.3.0.tar.xz) = 6d776e37ba2ccf35508078b91628b8f904062af03e0e879967b45094698077ae +SIZE (kstars-3.3.0.tar.xz) = 70811404 Added: head/astro/kstars/files/patch-kstars_kstars.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/kstars/files/patch-kstars_kstars.cpp Sat Jun 22 13:51:13 2019 (r504864) @@ -0,0 +1,10 @@ +--- kstars/kstars.cpp.orig 2019-06-22 13:23:27 UTC ++++ kstars/kstars.cpp +@@ -30,6 +30,7 @@ + #include "skymap.h" + #include "skyqpainter.h" + #include "texturemanager.h" ++#include "auxiliary/imageviewer.h" + #include "dialogs/finddialog.h" + #include "dialogs/exportimagedialog.h" + #include "skycomponents/starblockfactory.h" From owner-svn-ports-all@freebsd.org Sat Jun 22 13:51:34 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0352E15D554A; Sat, 22 Jun 2019 13:51:34 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 99D2477116; Sat, 22 Jun 2019 13:51:33 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 75B73B626; Sat, 22 Jun 2019 13:51:33 +0000 (UTC) (envelope-from arrowd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MDpX1b027508; Sat, 22 Jun 2019 13:51:33 GMT (envelope-from arrowd@FreeBSD.org) Received: (from arrowd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MDpXTB027506; Sat, 22 Jun 2019 13:51:33 GMT (envelope-from arrowd@FreeBSD.org) Message-Id: <201906221351.x5MDpXTB027506@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: arrowd set sender to arrowd@FreeBSD.org using -f From: Gleb Popov Date: Sat, 22 Jun 2019 13:51:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504865 - head/devel/tortoisehg X-SVN-Group: ports-head X-SVN-Commit-Author: arrowd X-SVN-Commit-Paths: head/devel/tortoisehg X-SVN-Commit-Revision: 504865 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 99D2477116 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.961,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 13:51:34 -0000 Author: arrowd Date: Sat Jun 22 13:51:32 2019 New Revision: 504865 URL: https://svnweb.freebsd.org/changeset/ports/504865 Log: devel/tortoisehg: Update to 4.9.1. Approved by: tcberner (mentor, implicit) Modified: head/devel/tortoisehg/Makefile head/devel/tortoisehg/distinfo Modified: head/devel/tortoisehg/Makefile ============================================================================== --- head/devel/tortoisehg/Makefile Sat Jun 22 13:51:13 2019 (r504864) +++ head/devel/tortoisehg/Makefile Sat Jun 22 13:51:32 2019 (r504865) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tortoisehg -DISTVERSION= 4.9 +DISTVERSION= 4.9.1 CATEGORIES= devel MASTER_SITES= https://bitbucket.org/tortoisehg/targz/downloads/ Modified: head/devel/tortoisehg/distinfo ============================================================================== --- head/devel/tortoisehg/distinfo Sat Jun 22 13:51:13 2019 (r504864) +++ head/devel/tortoisehg/distinfo Sat Jun 22 13:51:32 2019 (r504865) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551180830 -SHA256 (tortoisehg-4.9.tar.gz) = 4c7eb58cf6d7155bb06d4e72e644d30385acf5dc03d71744683641daaa0fca06 -SIZE (tortoisehg-4.9.tar.gz) = 7960163 +TIMESTAMP = 1561193582 +SHA256 (tortoisehg-4.9.1.tar.gz) = 8bccf9921419ffa62fd766419d82184aa18d850338f8ff0547d047e579b9af30 +SIZE (tortoisehg-4.9.1.tar.gz) = 7960667 From owner-svn-ports-all@freebsd.org Sat Jun 22 13:54:39 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B214415D5707; Sat, 22 Jun 2019 13:54:39 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 51F15772D7; Sat, 22 Jun 2019 13:54:39 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 43A87B792; Sat, 22 Jun 2019 13:54:39 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MDsdOo030797; Sat, 22 Jun 2019 13:54:39 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MDsdNN030796; Sat, 22 Jun 2019 13:54:39 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201906221354.x5MDsdNN030796@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Sat, 22 Jun 2019 13:54:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504866 - head/games/pinball X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: head/games/pinball X-SVN-Commit-Revision: 504866 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 51F15772D7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 13:54:39 -0000 Author: thierry Date: Sat Jun 22 13:54:38 2019 New Revision: 504866 URL: https://svnweb.freebsd.org/changeset/ports/504866 Log: Modernize a bit this port. Remark: there remain many problem with pinball, more fixes to come. Modified: head/games/pinball/Makefile Modified: head/games/pinball/Makefile ============================================================================== --- head/games/pinball/Makefile Sat Jun 22 13:51:32 2019 (r504865) +++ head/games/pinball/Makefile Sat Jun 22 13:54:38 2019 (r504866) @@ -3,7 +3,7 @@ PORTNAME= pinball PORTVERSION= 0.3.1 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} @@ -13,11 +13,13 @@ COMMENT= Emilia Pinball is a free pinball game LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USES= gmake localbase:ldflags libtool:keepla # .la needed for plugin loading +USES= gl gmake localbase:ldflags libtool:keepla # .la needed for plugin loading +USE_XORG= ice sm USE_GL= gl glu +USE_LDCONFIG= yes + GNU_CONFIGURE= yes CONFIGURE_ARGS= --without-debug -USE_LDCONFIG= yes CPPFLAGS+= -DRZR_LIBSTATIC @@ -29,21 +31,21 @@ LIB_DEPENDS+= liballeg.so:devel/allegro CONFIGURE_ARGS+= --with-allegro USE_GL+= glu .else +USES+= sdl USE_SDL= image mixer sdl .endif -#MAKE_JOBS_UNSAFE= yes # For gmake>=3.82 pre-configure: - @${FIND} ${WRKSRC} -name Makefile.in -print | ${XARGS} \ + ${FIND} ${WRKSRC} -name Makefile.in -print | ${XARGS} \ ${REINPLACE_CMD} -e 's,^dnl,# dnl,' post-install: - @${MV} ${STAGEDIR}/var/games/pinball/professor/highscores \ + ${MV} ${STAGEDIR}/var/games/pinball/professor/highscores \ ${STAGEDIR}/var/games/pinball/professor/highscores.sample - @${MV} ${STAGEDIR}/var/games/pinball/tux/highscores \ + ${MV} ${STAGEDIR}/var/games/pinball/tux/highscores \ ${STAGEDIR}/var/games/pinball/tux/highscores.sample - @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/pinball/lib*.so* + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/pinball/lib*.so* post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-all@freebsd.org Sat Jun 22 13:55:02 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 71C7415D5730; Sat, 22 Jun 2019 13:55:02 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 17028773A9; Sat, 22 Jun 2019 13:55:02 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E30FDB793; Sat, 22 Jun 2019 13:55:01 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MDt1Ps030949; Sat, 22 Jun 2019 13:55:01 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MDt100030948; Sat, 22 Jun 2019 13:55:01 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201906221355.x5MDt100030948@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 22 Jun 2019 13:55:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504867 - head/deskutils/zanshin X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/deskutils/zanshin X-SVN-Commit-Revision: 504867 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 17028773A9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 13:55:02 -0000 Author: tcberner Date: Sat Jun 22 13:55:01 2019 New Revision: 504867 URL: https://svnweb.freebsd.org/changeset/ports/504867 Log: deskutils/zanshin: mark broken until fixed upstream Modified: head/deskutils/zanshin/Makefile Modified: head/deskutils/zanshin/Makefile ============================================================================== --- head/deskutils/zanshin/Makefile Sat Jun 22 13:54:38 2019 (r504866) +++ head/deskutils/zanshin/Makefile Sat Jun 22 13:55:01 2019 (r504867) @@ -9,6 +9,8 @@ MASTER_SITES= KDE/stable/${PORTNAME}/ MAINTAINER= kde@FreeBSD.org COMMENT= Daily organizer for KDE +BROKEN= Broken by update to appliations 19.04.2 + LIB_DEPENDS= libical.so:devel/libical USES= cmake compiler:c++14-lang gettext kde:5 qt:5 tar:xz From owner-svn-ports-all@freebsd.org Sat Jun 22 14:04:19 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C764015D5957; Sat, 22 Jun 2019 14:04:19 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6BD6377757; Sat, 22 Jun 2019 14:04:19 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4300BB934; Sat, 22 Jun 2019 14:04:19 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5ME4JCN035986; Sat, 22 Jun 2019 14:04:19 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5ME4I3w035984; Sat, 22 Jun 2019 14:04:18 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201906221404.x5ME4I3w035984@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Sat, 22 Jun 2019 14:04:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504868 - head/x11-fonts/stix-fonts X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: head/x11-fonts/stix-fonts X-SVN-Commit-Revision: 504868 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 6BD6377757 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 14:04:19 -0000 Author: thierry Date: Sat Jun 22 14:04:18 2019 New Revision: 504868 URL: https://svnweb.freebsd.org/changeset/ports/504868 Log: Minor update to v2.0.2 (no changes to glyphs or associated data). Modified: head/x11-fonts/stix-fonts/Makefile head/x11-fonts/stix-fonts/distinfo Modified: head/x11-fonts/stix-fonts/Makefile ============================================================================== --- head/x11-fonts/stix-fonts/Makefile Sat Jun 22 13:55:01 2019 (r504867) +++ head/x11-fonts/stix-fonts/Makefile Sat Jun 22 14:04:18 2019 (r504868) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= stixfonts -PORTVERSION= 2.0.1 +PORTVERSION= 2.0.2 DISTVERSIONPREFIX= v CATEGORIES= x11-fonts Modified: head/x11-fonts/stix-fonts/distinfo ============================================================================== --- head/x11-fonts/stix-fonts/distinfo Sat Jun 22 13:55:01 2019 (r504867) +++ head/x11-fonts/stix-fonts/distinfo Sat Jun 22 14:04:18 2019 (r504868) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555445365 -SHA256 (stipub-stixfonts-v2.0.1_GH0.tar.gz) = 65754e3c02742d5c37b15d3422a26a6629724373667e39fe484f093fb82998b7 -SIZE (stipub-stixfonts-v2.0.1_GH0.tar.gz) = 44360521 +TIMESTAMP = 1561212022 +SHA256 (stipub-stixfonts-v2.0.2_GH0.tar.gz) = b8eb0e63739e839ad620c82db1f6f38d8927f7fd30abcc8f147700ba3bc71918 +SIZE (stipub-stixfonts-v2.0.2_GH0.tar.gz) = 49356536 From owner-svn-ports-all@freebsd.org Sat Jun 22 14:10:10 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A8FD615D59D7; Sat, 22 Jun 2019 14:10:10 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3EF367786F; Sat, 22 Jun 2019 14:10:10 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 13CE7B939; Sat, 22 Jun 2019 14:10:10 +0000 (UTC) (envelope-from bmah@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MEA9YR036348; Sat, 22 Jun 2019 14:10:09 GMT (envelope-from bmah@FreeBSD.org) Received: (from bmah@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MEA9HG036347; Sat, 22 Jun 2019 14:10:09 GMT (envelope-from bmah@FreeBSD.org) Message-Id: <201906221410.x5MEA9HG036347@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bmah set sender to bmah@FreeBSD.org using -f From: "Bruce A. Mah" Date: Sat, 22 Jun 2019 14:10:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504869 - head/benchmarks/iperf3 X-SVN-Group: ports-head X-SVN-Commit-Author: bmah X-SVN-Commit-Paths: head/benchmarks/iperf3 X-SVN-Commit-Revision: 504869 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3EF367786F X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 14:10:10 -0000 Author: bmah Date: Sat Jun 22 14:10:09 2019 New Revision: 504869 URL: https://svnweb.freebsd.org/changeset/ports/504869 Log: Fix stupid rookie mistake in Makefile and unbreak port staging. PR: 238759 Sponsored by: ESnet Modified: head/benchmarks/iperf3/Makefile Modified: head/benchmarks/iperf3/Makefile ============================================================================== --- head/benchmarks/iperf3/Makefile Sat Jun 22 14:04:18 2019 (r504868) +++ head/benchmarks/iperf3/Makefile Sat Jun 22 14:10:09 2019 (r504869) @@ -17,7 +17,7 @@ GNU_CONFIGURE= yes USES= libtool ssl USE_LDCONFIG= yes -PORTDOCS= README.md RELEASE_NOTES +PORTDOCS= README.md RELNOTES.md # Set ${DOCSDIR} to avoid conflict with benchmarks/iperf ${DOCSDIR} DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX} From owner-svn-ports-all@freebsd.org Sat Jun 22 14:15:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3879E15D5C14; Sat, 22 Jun 2019 14:15:53 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CC59177CD3; Sat, 22 Jun 2019 14:15:52 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A5F7ABC75; Sat, 22 Jun 2019 14:15:52 +0000 (UTC) (envelope-from thierry@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MEFqqD041793; Sat, 22 Jun 2019 14:15:52 GMT (envelope-from thierry@FreeBSD.org) Received: (from thierry@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MEFqF6041791; Sat, 22 Jun 2019 14:15:52 GMT (envelope-from thierry@FreeBSD.org) Message-Id: <201906221415.x5MEFqF6041791@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: thierry set sender to thierry@FreeBSD.org using -f From: Thierry Thomas Date: Sat, 22 Jun 2019 14:15:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504870 - head/graphics/cimg X-SVN-Group: ports-head X-SVN-Commit-Author: thierry X-SVN-Commit-Paths: head/graphics/cimg X-SVN-Commit-Revision: 504870 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CC59177CD3 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 14:15:53 -0000 Author: thierry Date: Sat Jun 22 14:15:52 2019 New Revision: 504870 URL: https://svnweb.freebsd.org/changeset/ports/504870 Log: Upgrade to v.2.6.6. Modified: head/graphics/cimg/Makefile head/graphics/cimg/distinfo Modified: head/graphics/cimg/Makefile ============================================================================== --- head/graphics/cimg/Makefile Sat Jun 22 14:10:09 2019 (r504869) +++ head/graphics/cimg/Makefile Sat Jun 22 14:15:52 2019 (r504870) @@ -3,7 +3,7 @@ PORTNAME= cimg DISTVERSIONPREFIX= v. -DISTVERSION= 2.6.5 +DISTVERSION= 2.6.6 PORTEPOCH= 3 CATEGORIES= graphics devel Modified: head/graphics/cimg/distinfo ============================================================================== --- head/graphics/cimg/distinfo Sat Jun 22 14:10:09 2019 (r504869) +++ head/graphics/cimg/distinfo Sat Jun 22 14:15:52 2019 (r504870) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560112435 -SHA256 (dtschump-CImg-v.2.6.5_GH0.tar.gz) = fd871cacc945d4f35923e427939715e253458511e9a931e6893c9bfdc1cab0df -SIZE (dtschump-CImg-v.2.6.5_GH0.tar.gz) = 11071672 +TIMESTAMP = 1561212360 +SHA256 (dtschump-CImg-v.2.6.6_GH0.tar.gz) = f327a8a7663af5cde9b84f0fa3601edacb97a5062a22f7c09bd114a0fd8b463f +SIZE (dtschump-CImg-v.2.6.6_GH0.tar.gz) = 11071997 From owner-svn-ports-all@freebsd.org Sat Jun 22 14:46:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6CE3F15D6377; Sat, 22 Jun 2019 14:46:11 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 12EDA807B8; Sat, 22 Jun 2019 14:46:11 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DF367C17C; Sat, 22 Jun 2019 14:46:10 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MEkASZ057241; Sat, 22 Jun 2019 14:46:10 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MEkAJq057240; Sat, 22 Jun 2019 14:46:10 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906221446.x5MEkAJq057240@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 22 Jun 2019 14:46:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504871 - head/security/py-bcrypt X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/security/py-bcrypt X-SVN-Commit-Revision: 504871 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 12EDA807B8 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 14:46:11 -0000 Author: dbaio Date: Sat Jun 22 14:46:10 2019 New Revision: 504871 URL: https://svnweb.freebsd.org/changeset/ports/504871 Log: security/py-bcrypt: Update to 3.1.7 Modified: head/security/py-bcrypt/Makefile head/security/py-bcrypt/distinfo Modified: head/security/py-bcrypt/Makefile ============================================================================== --- head/security/py-bcrypt/Makefile Sat Jun 22 14:15:52 2019 (r504870) +++ head/security/py-bcrypt/Makefile Sat Jun 22 14:46:10 2019 (r504871) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bcrypt -PORTVERSION= 3.1.6 +PORTVERSION= 3.1.7 CATEGORIES= security python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/security/py-bcrypt/distinfo ============================================================================== --- head/security/py-bcrypt/distinfo Sat Jun 22 14:15:52 2019 (r504870) +++ head/security/py-bcrypt/distinfo Sat Jun 22 14:46:10 2019 (r504871) @@ -1,3 +1,3 @@ -TIMESTAMP = 1548510997 -SHA256 (bcrypt-3.1.6.tar.gz) = 44636759d222baa62806bbceb20e96f75a015a6381690d1bc2eda91c01ec02ea -SIZE (bcrypt-3.1.6.tar.gz) = 42216 +TIMESTAMP = 1561214512 +SHA256 (bcrypt-3.1.7.tar.gz) = 0b0069c752ec14172c5f78208f1863d7ad6755a6fae6fe76ec2c80d13be41e42 +SIZE (bcrypt-3.1.7.tar.gz) = 42512 From owner-svn-ports-all@freebsd.org Sat Jun 22 14:52:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E544215D6584; Sat, 22 Jun 2019 14:52:36 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 89EC080B47; Sat, 22 Jun 2019 14:52:36 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 65684C31B; Sat, 22 Jun 2019 14:52:36 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MEqa8L062684; Sat, 22 Jun 2019 14:52:36 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MEqaAm062683; Sat, 22 Jun 2019 14:52:36 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906221452.x5MEqaAm062683@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 22 Jun 2019 14:52:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504872 - head/textproc/itstool22 X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/textproc/itstool22 X-SVN-Commit-Revision: 504872 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 89EC080B47 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 14:52:37 -0000 Author: dbaio Date: Sat Jun 22 14:52:35 2019 New Revision: 504872 URL: https://svnweb.freebsd.org/changeset/ports/504872 Log: textproc/itstool22: Disable portscout Modified: head/textproc/itstool22/Makefile Modified: head/textproc/itstool22/Makefile ============================================================================== --- head/textproc/itstool22/Makefile Sat Jun 22 14:46:10 2019 (r504871) +++ head/textproc/itstool22/Makefile Sat Jun 22 14:52:35 2019 (r504872) @@ -22,6 +22,8 @@ GNU_CONFIGURE= yes CONFLICTS_INSTALL= itstool +PORTSCOUT= ignore:1 + post-patch: @${REINPLACE_CMD} -e 's|@PYTHON@|${PYTHON_CMD}|g' \ ${WRKSRC}/itstool.in From owner-svn-ports-all@freebsd.org Sat Jun 22 15:00:50 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 63FF715D6728; Sat, 22 Jun 2019 15:00:50 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 04DC080D68; Sat, 22 Jun 2019 15:00:50 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D50AAC33E; Sat, 22 Jun 2019 15:00:49 +0000 (UTC) (envelope-from dbaio@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MF0nPA064010; Sat, 22 Jun 2019 15:00:49 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MF0nwk064009; Sat, 22 Jun 2019 15:00:49 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <201906221500.x5MF0nwk064009@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Sat, 22 Jun 2019 15:00:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504873 - head/sysutils/f3 X-SVN-Group: ports-head X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: head/sysutils/f3 X-SVN-Commit-Revision: 504873 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 04DC080D68 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 15:00:50 -0000 Author: dbaio Date: Sat Jun 22 15:00:49 2019 New Revision: 504873 URL: https://svnweb.freebsd.org/changeset/ports/504873 Log: sysutils/f3: Update to 7.2 Changelog: https://raw.githubusercontent.com/AltraMayor/f3/v7.2/changelog Modified: head/sysutils/f3/Makefile head/sysutils/f3/distinfo Modified: head/sysutils/f3/Makefile ============================================================================== --- head/sysutils/f3/Makefile Sat Jun 22 14:52:35 2019 (r504872) +++ head/sysutils/f3/Makefile Sat Jun 22 15:00:49 2019 (r504873) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= f3 -PORTVERSION= 7.1 +PORTVERSION= 7.2 DISTVERSIONPREFIX= v CATEGORIES= sysutils Modified: head/sysutils/f3/distinfo ============================================================================== --- head/sysutils/f3/distinfo Sat Jun 22 14:52:35 2019 (r504872) +++ head/sysutils/f3/distinfo Sat Jun 22 15:00:49 2019 (r504873) @@ -1,3 +1,3 @@ -TIMESTAMP = 1532777582 -SHA256 (AltraMayor-f3-v7.1_GH0.tar.gz) = 1d9edf12d3f40c03a552dfc3ed36371c62933b9213483182f7a561e1a5b8e1cc -SIZE (AltraMayor-f3-v7.1_GH0.tar.gz) = 67934 +TIMESTAMP = 1561215408 +SHA256 (AltraMayor-f3-v7.2_GH0.tar.gz) = ba9210a0fc3a42c2595fe19bf13b8114bb089c4f274b4813c8f525a695467f64 +SIZE (AltraMayor-f3-v7.2_GH0.tar.gz) = 68471 From owner-svn-ports-all@freebsd.org Sat Jun 22 15:48:14 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A1FDB15D71A7; Sat, 22 Jun 2019 15:48:14 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4101E8231D; Sat, 22 Jun 2019 15:48:14 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 27787CB60; Sat, 22 Jun 2019 15:48:14 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MFmDsD088826; Sat, 22 Jun 2019 15:48:13 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MFmDr8088824; Sat, 22 Jun 2019 15:48:13 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <201906221548.x5MFmDr8088824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Sat, 22 Jun 2019 15:48:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504874 - head/graphics/imv X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: head/graphics/imv X-SVN-Commit-Revision: 504874 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4101E8231D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.960,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 15:48:14 -0000 Author: fernape Date: Sat Jun 22 15:48:13 2019 New Revision: 504874 URL: https://svnweb.freebsd.org/changeset/ports/504874 Log: graphics/imv: update to 3.1.0 From ChangeLog (https://github.com/eXeC64/imv/blob/master/CHANGELOG): * Added support for multiple image loaders, allowing imv to use libraries other than FreeImage. This adds support for SVGs, and in the future, other formats as required. * Loaders added for libpng, libtiff, librsvg, libturbojpeg. * Added support for binding multiple commands to a single key * Support for hidpi rendering with SDL >= 2.0.10 * Added -v flag to show version number * Allow 'Escape' to be bound, changing bind abort sequence to 2x'Escape' * Fixed bug where path list from stdin would sometime be truncated * New releases only published under the MIT license, with FreeImage optionally used under the FIPL * Fixed several memory leaks * Miscellaneous code cleanup and documentation fixes While here, pet portlint. Reported by: portscout Modified: head/graphics/imv/Makefile head/graphics/imv/distinfo Modified: head/graphics/imv/Makefile ============================================================================== --- head/graphics/imv/Makefile Sat Jun 22 15:00:49 2019 (r504873) +++ head/graphics/imv/Makefile Sat Jun 22 15:48:13 2019 (r504874) @@ -3,7 +3,7 @@ PORTNAME= imv DISTVERSIONPREFIX= v -DISTVERSION= 3.0.0 +DISTVERSION= 3.1.0 CATEGORIES= graphics MAINTAINER= ports@FreeBSD.org @@ -13,11 +13,14 @@ LICENSE= GPLv2 BUILD_DEPENDS= asciidoc:textproc/asciidoc LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ - libfreeimage.so:graphics/freeimage + libfreeimage.so:graphics/freeimage \ + librsvg-2.so:graphics/librsvg2 TEST_DEPENDS= ${LOCALBASE}/lib/libcmocka.so:sysutils/cmocka -USES= desktop-file-utils localbase gmake +USES= desktop-file-utils gmake gnome \ + localbase pkgconfig sdl USE_SDL= sdl2 ttf2 +USE_GNOME= glib20 USE_GITHUB= yes GH_ACCOUNT= eXeC64 Modified: head/graphics/imv/distinfo ============================================================================== --- head/graphics/imv/distinfo Sat Jun 22 15:00:49 2019 (r504873) +++ head/graphics/imv/distinfo Sat Jun 22 15:48:13 2019 (r504874) @@ -1,3 +1,3 @@ -TIMESTAMP = 1525879303 -SHA256 (eXeC64-imv-v3.0.0_GH0.tar.gz) = 51c3fc49b4db8b13f55816a502b68f4f660a8dfccd109cdea5af23cc9f613fad -SIZE (eXeC64-imv-v3.0.0_GH0.tar.gz) = 42611 +TIMESTAMP = 1560875164 +SHA256 (eXeC64-imv-v3.1.0_GH0.tar.gz) = d03ecd73221b77a4ae08c9625499d84525f0ec31113691367fb727d4c0ba1db8 +SIZE (eXeC64-imv-v3.1.0_GH0.tar.gz) = 45118 From owner-svn-ports-all@freebsd.org Sat Jun 22 15:51:36 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 44A4115D745A; Sat, 22 Jun 2019 15:51:36 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DE32C82623; Sat, 22 Jun 2019 15:51:35 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 86E28CCD0; Sat, 22 Jun 2019 15:51:35 +0000 (UTC) (envelope-from fernape@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MFpZDd090650; Sat, 22 Jun 2019 15:51:35 GMT (envelope-from fernape@FreeBSD.org) Received: (from fernape@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MFpYiJ090648; Sat, 22 Jun 2019 15:51:34 GMT (envelope-from fernape@FreeBSD.org) Message-Id: <201906221551.x5MFpYiJ090648@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fernape set sender to fernape@FreeBSD.org using -f From: =?UTF-8?Q?Fernando_Apestegu=c3=ada?= Date: Sat, 22 Jun 2019 15:51:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504875 - head/multimedia/shotcut X-SVN-Group: ports-head X-SVN-Commit-Author: fernape X-SVN-Commit-Paths: head/multimedia/shotcut X-SVN-Commit-Revision: 504875 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DE32C82623 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.960,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 15:51:36 -0000 Author: fernape Date: Sat Jun 22 15:51:34 2019 New Revision: 504875 URL: https://svnweb.freebsd.org/changeset/ports/504875 Log: multimedia/shotcut: update to 19.06.15 Too many changes to be listed here. See ChangeLog: https://shotcut.org/blog/new-release-190615/ Reported by: portscout Modified: head/multimedia/shotcut/Makefile head/multimedia/shotcut/distinfo head/multimedia/shotcut/pkg-plist Modified: head/multimedia/shotcut/Makefile ============================================================================== --- head/multimedia/shotcut/Makefile Sat Jun 22 15:48:13 2019 (r504874) +++ head/multimedia/shotcut/Makefile Sat Jun 22 15:51:34 2019 (r504875) @@ -3,7 +3,6 @@ PORTNAME= shotcut DISTVERSIONPREFIX= v DISTVERSION= ${FULLVERSION} -PORTREVISION= 2 CATEGORIES= multimedia MAINTAINER= ports@FreeBSD.org @@ -16,12 +15,16 @@ RUN_DEPENDS= ffmpeg:multimedia/ffmpeg \ ${LOCALBASE}/lib/libjack.so:audio/jack \ ${LOCALBASE}/lib/libSDL.so:devel/sdl12 +USES= desktop-file-utils gl pkgconfig \ + qmake qt:5 sdl shared-mime-info + USE_GITHUB= yes GH_ACCOUNT= mltframework + # Needed to be able to correctly check for updates in-app. -FULLVERSION= 19.02.28 +FULLVERSION= 19.06.15 -USES= pkgconfig qmake qt:5 +USE_GL+= gl USE_QT= buildtools_build concurrent_build core declarative \ graphicaleffects_run gui multimedia network opengl \ printsupport quickcontrols_run sql \ @@ -54,6 +57,7 @@ WEBVFX_RUN_DEPENDS= ${LOCALBASE}/lib/mlt/libmltwebvfx. post-patch: ${REINPLACE_CMD} -e 's/"qmelt"/"melt"/' \ ${WRKSRC}/src/jobs/meltjob.cpp + ${REINPLACE_CMD} -e 's|/share/man/man1|/man/man1|' ${WRKSRC}/src/src.pro pre-build: @${FIND} ${WRKSRC} -name '.depend' -delete Modified: head/multimedia/shotcut/distinfo ============================================================================== --- head/multimedia/shotcut/distinfo Sat Jun 22 15:48:13 2019 (r504874) +++ head/multimedia/shotcut/distinfo Sat Jun 22 15:51:34 2019 (r504875) @@ -1,3 +1,3 @@ -TIMESTAMP = 1552140272 -SHA256 (mltframework-shotcut-v19.02.28_GH0.tar.gz) = 04b52bf0c7d9d42b3311e3d0a17930d47f93ce9eea1b7ab5ab77bafaa4afb4a6 -SIZE (mltframework-shotcut-v19.02.28_GH0.tar.gz) = 4922996 +TIMESTAMP = 1560875333 +SHA256 (mltframework-shotcut-v19.06.15_GH0.tar.gz) = 3fdfe711f1567136b7d967bd620053d5e26f6fe585826875ef66301d19f07f03 +SIZE (mltframework-shotcut-v19.06.15_GH0.tar.gz) = 5066141 Modified: head/multimedia/shotcut/pkg-plist ============================================================================== --- head/multimedia/shotcut/pkg-plist Sat Jun 22 15:48:13 2019 (r504874) +++ head/multimedia/shotcut/pkg-plist Sat Jun 22 15:51:34 2019 (r504875) @@ -1,8 +1,8 @@ bin/shotcut +man/man1/shotcut.1.gz share/applications/org.shotcut.Shotcut.desktop share/icons/hicolor/64x64/apps/org.shotcut.Shotcut.png share/icons/hicolor/64x64/apps/shotcut.png -share/man/man1/shotcut.1 share/metainfo/org.shotcut.Shotcut.appdata.xml share/mime/packages/org.shotcut.Shotcut.xml %%DATADIR%%/qml/export-edl/export-edl.js @@ -62,6 +62,12 @@ share/mime/packages/org.shotcut.Shotcut.xml %%DATADIR%%/qml/filters/blur/meta_movit.qml %%DATADIR%%/qml/filters/blur/ui_boxblur.qml %%DATADIR%%/qml/filters/blur/ui_movit.qml +%%DATADIR%%/qml/filters/blur_exponential/meta.qml +%%DATADIR%%/qml/filters/blur_exponential/ui.qml +%%DATADIR%%/qml/filters/blur_gaussian/meta.qml +%%DATADIR%%/qml/filters/blur_gaussian/ui.qml +%%DATADIR%%/qml/filters/blur_lowpass/meta.qml +%%DATADIR%%/qml/filters/blur_lowpass/ui.qml %%DATADIR%%/qml/filters/brightness/meta.qml %%DATADIR%%/qml/filters/brightness/meta_movit.qml %%DATADIR%%/qml/filters/brightness/ui.qml @@ -79,6 +85,10 @@ share/mime/packages/org.shotcut.Shotcut.xml %%DATADIR%%/qml/filters/crop/meta.qml %%DATADIR%%/qml/filters/crop/meta_movit.qml %%DATADIR%%/qml/filters/crop/ui.qml +%%DATADIR%%/qml/filters/dance/meta_dance.qml +%%DATADIR%%/qml/filters/dance/ui_dance.qml +%%DATADIR%%/qml/filters/distort/meta.qml +%%DATADIR%%/qml/filters/distort/ui.qml %%DATADIR%%/qml/filters/dust/meta.qml %%DATADIR%%/qml/filters/dust/ui.qml %%DATADIR%%/qml/filters/dynamictext/meta.qml @@ -92,12 +102,20 @@ share/mime/packages/org.shotcut.Shotcut.xml %%DATADIR%%/qml/filters/fadeout_brightness/ui.qml %%DATADIR%%/qml/filters/fadeout_movit/meta.qml %%DATADIR%%/qml/filters/fadeout_movit/ui.qml +%%DATADIR%%/qml/filters/flip/meta.qml +%%DATADIR%%/qml/filters/flip/meta_movit.qml +%%DATADIR%%/qml/filters/glitch/meta.qml +%%DATADIR%%/qml/filters/glitch/ui.qml %%DATADIR%%/qml/filters/glow/meta_frei0r.qml %%DATADIR%%/qml/filters/glow/meta_movit.qml %%DATADIR%%/qml/filters/glow/ui_frei0r.qml %%DATADIR%%/qml/filters/glow/ui_movit.qml %%DATADIR%%/qml/filters/grain/meta.qml %%DATADIR%%/qml/filters/grain/ui.qml +%%DATADIR%%/qml/filters/grid/meta.qml +%%DATADIR%%/qml/filters/grid/ui.qml +%%DATADIR%%/qml/filters/hqdn3d/meta.qml +%%DATADIR%%/qml/filters/hqdn3d/ui.qml %%DATADIR%%/qml/filters/hue_lightness_saturation/meta.qml %%DATADIR%%/qml/filters/hue_lightness_saturation/ui.qml %%DATADIR%%/qml/filters/invert/meta.qml @@ -108,6 +126,9 @@ share/mime/packages/org.shotcut.Shotcut.xml %%DATADIR%%/qml/filters/lenscorrection/ui.qml %%DATADIR%%/qml/filters/levels/meta.qml %%DATADIR%%/qml/filters/levels/ui.qml +%%DATADIR%%/qml/filters/lightshow/meta_lightshow.qml +%%DATADIR%%/qml/filters/lightshow/ui_lightshow.qml +%%DATADIR%%/qml/filters/lightshow/vui.qml %%DATADIR%%/qml/filters/lines/meta.qml %%DATADIR%%/qml/filters/lines/ui.qml %%DATADIR%%/qml/filters/lut3d/meta.qml @@ -126,11 +147,17 @@ share/mime/packages/org.shotcut.Shotcut.xml %%DATADIR%%/qml/filters/mosaic/ui.qml %%DATADIR%%/qml/filters/movit_diffusion/meta.qml %%DATADIR%%/qml/filters/movit_diffusion/ui.qml +%%DATADIR%%/qml/filters/noise_fast/meta.qml +%%DATADIR%%/qml/filters/noise_fast/ui.qml +%%DATADIR%%/qml/filters/noise_keyframes/meta.qml +%%DATADIR%%/qml/filters/noise_keyframes/ui.qml %%DATADIR%%/qml/filters/oldfilm/meta.qml %%DATADIR%%/qml/filters/oldfilm/ui.qml %%DATADIR%%/qml/filters/opacity/meta.qml %%DATADIR%%/qml/filters/opacity/meta_movit.qml %%DATADIR%%/qml/filters/opacity/ui.qml +%%DATADIR%%/qml/filters/rgbsplit0r/meta.qml +%%DATADIR%%/qml/filters/rgbsplit0r/ui.qml %%DATADIR%%/qml/filters/rotate/meta.qml %%DATADIR%%/qml/filters/rotate/ui.qml %%DATADIR%%/qml/filters/saturation/meta_frei0r.qml @@ -199,6 +226,10 @@ share/mime/packages/org.shotcut.Shotcut.xml %%DATADIR%%/qml/filters/webvfx_circular_frame/filter-demo.html %%DATADIR%%/qml/filters/webvfx_circular_frame/meta.qml %%DATADIR%%/qml/filters/webvfx_circular_frame/ui.qml +%%DATADIR%%/qml/filters/webvfx_clip/filter-clip.html +%%DATADIR%%/qml/filters/webvfx_clip/meta.qml +%%DATADIR%%/qml/filters/webvfx_clip/ui.qml +%%DATADIR%%/qml/filters/webvfx_clip/vui.qml %%DATADIR%%/qml/filters/webvfx_ruttetraizer/meta.qml %%DATADIR%%/qml/filters/webvfx_ruttetraizer/ruttetraizer.html %%DATADIR%%/qml/filters/webvfx_ruttetraizer/three.js @@ -229,6 +260,7 @@ share/mime/packages/org.shotcut.Shotcut.xml %%DATADIR%%/qml/htmleditor/text_outline.qml %%DATADIR%%/qml/htmleditor/text_shadow.qml %%DATADIR%%/qml/modules/Shotcut/Controls/ColorPicker.qml +%%DATADIR%%/qml/modules/Shotcut/Controls/KeyframableFilter.qml %%DATADIR%%/qml/modules/Shotcut/Controls/KeyframesButton.qml %%DATADIR%%/qml/modules/Shotcut/Controls/Preset.qml %%DATADIR%%/qml/modules/Shotcut/Controls/RectangleControl.qml @@ -270,6 +302,8 @@ share/mime/packages/org.shotcut.Shotcut.xml %%DATADIR%%/qml/views/keyframes/ToggleButton.qml %%DATADIR%%/qml/views/keyframes/ZoomSlider.qml %%DATADIR%%/qml/views/keyframes/keyframes.qml +%%DATADIR%%/translations/shotcut_nn.qm +%%DATADIR%%/translations/shotcut_sv.qm %%NLS%%%%DATADIR%%/translations/shotcut_ca.qm %%NLS%%%%DATADIR%%/translations/shotcut_cs.qm %%NLS%%%%DATADIR%%/translations/shotcut_da.qm From owner-svn-ports-all@freebsd.org Sat Jun 22 16:52:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E08CE15D86E6; Sat, 22 Jun 2019 16:52:23 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 78E1A84048; Sat, 22 Jun 2019 16:52:23 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 55E33D6FD; Sat, 22 Jun 2019 16:52:23 +0000 (UTC) (envelope-from leres@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MGqNoF025176; Sat, 22 Jun 2019 16:52:23 GMT (envelope-from leres@FreeBSD.org) Received: (from leres@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MGqNeS025175; Sat, 22 Jun 2019 16:52:23 GMT (envelope-from leres@FreeBSD.org) Message-Id: <201906221652.x5MGqNeS025175@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: leres set sender to leres@FreeBSD.org using -f From: Craig Leres Date: Sat, 22 Jun 2019 16:52:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504876 - head/net-mgmt/check_nwc_health X-SVN-Group: ports-head X-SVN-Commit-Author: leres X-SVN-Commit-Paths: head/net-mgmt/check_nwc_health X-SVN-Commit-Revision: 504876 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 78E1A84048 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 16:52:24 -0000 Author: leres Date: Sat Jun 22 16:52:22 2019 New Revision: 504876 URL: https://svnweb.freebsd.org/changeset/ports/504876 Log: net-mgmt/check_nwc_health: Update to 7.10. From the ChangeLog: - remove duplicate routes (ip-table + inet-table) - --report long+address shows ip addresses for interfaces Reported by: portscout Approved by: ler (mentor, implicit) Modified: head/net-mgmt/check_nwc_health/Makefile head/net-mgmt/check_nwc_health/distinfo Modified: head/net-mgmt/check_nwc_health/Makefile ============================================================================== --- head/net-mgmt/check_nwc_health/Makefile Sat Jun 22 15:51:34 2019 (r504875) +++ head/net-mgmt/check_nwc_health/Makefile Sat Jun 22 16:52:22 2019 (r504876) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= check_nwc_health -PORTVERSION= 7.9.0.4 +PORTVERSION= 7.10 CATEGORIES= net-mgmt MASTER_SITES= https://labs.consol.de/assets/downloads/nagios/ Modified: head/net-mgmt/check_nwc_health/distinfo ============================================================================== --- head/net-mgmt/check_nwc_health/distinfo Sat Jun 22 15:51:34 2019 (r504875) +++ head/net-mgmt/check_nwc_health/distinfo Sat Jun 22 16:52:22 2019 (r504876) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561166243 -SHA256 (check_nwc_health-7.9.0.4.tar.gz) = 25ab1a8637c0f897e4bc36d61940bf4851e46d4f8f2573ca14d22ba44223a04f -SIZE (check_nwc_health-7.9.0.4.tar.gz) = 653388 +TIMESTAMP = 1561219963 +SHA256 (check_nwc_health-7.10.tar.gz) = 96397f03e4260de21b5a907b385bb4287d605779eec7c0f4a9a3064f29d4cd3e +SIZE (check_nwc_health-7.10.tar.gz) = 654705 From owner-svn-ports-all@freebsd.org Sat Jun 22 16:55:31 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ABD5615D878D; Sat, 22 Jun 2019 16:55:31 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4E436842C1; Sat, 22 Jun 2019 16:55:31 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 29687D71F; Sat, 22 Jun 2019 16:55:31 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MGtVHL025499; Sat, 22 Jun 2019 16:55:31 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MGtUN0025497; Sat, 22 Jun 2019 16:55:30 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906221655.x5MGtUN0025497@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Sat, 22 Jun 2019 16:55:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504877 - head/misc/py-tqdm X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/misc/py-tqdm X-SVN-Commit-Revision: 504877 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4E436842C1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 16:55:31 -0000 Author: kai Date: Sat Jun 22 16:55:30 2019 New Revision: 504877 URL: https://svnweb.freebsd.org/changeset/ports/504877 Log: misc/py-tqdm: Update to 4.32.2 Changelog: https://github.com/tqdm/tqdm/releases/tag/v4.32.2 PR: 238746 Submitted by: Neel Chauhan (maintainer) Modified: head/misc/py-tqdm/Makefile head/misc/py-tqdm/distinfo Modified: head/misc/py-tqdm/Makefile ============================================================================== --- head/misc/py-tqdm/Makefile Sat Jun 22 16:52:22 2019 (r504876) +++ head/misc/py-tqdm/Makefile Sat Jun 22 16:55:30 2019 (r504877) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= tqdm -DISTVERSION= 4.32.1 +DISTVERSION= 4.32.2 CATEGORIES= misc MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/misc/py-tqdm/distinfo ============================================================================== --- head/misc/py-tqdm/distinfo Sat Jun 22 16:52:22 2019 (r504876) +++ head/misc/py-tqdm/distinfo Sat Jun 22 16:55:30 2019 (r504877) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559944357 -SHA256 (tqdm-4.32.1.tar.gz) = 0a860bf2683fdbb4812fe539a6c22ea3f1777843ea985cb8c3807db448a0f7ab -SIZE (tqdm-4.32.1.tar.gz) = 120465 +TIMESTAMP = 1561118941 +SHA256 (tqdm-4.32.2.tar.gz) = 25d4c0ea02a305a688e7e9c2cdc8f862f989ef2a4701ab28ee963295f5b109ab +SIZE (tqdm-4.32.2.tar.gz) = 121017 From owner-svn-ports-all@freebsd.org Sat Jun 22 17:06:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97CCF15D8C1F; Sat, 22 Jun 2019 17:06:37 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 38EA384808; Sat, 22 Jun 2019 17:06:37 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A9CCFD8D9; Sat, 22 Jun 2019 17:06:36 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MH6aCR030919; Sat, 22 Jun 2019 17:06:36 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MH6ZQO030915; Sat, 22 Jun 2019 17:06:35 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906221706.x5MH6ZQO030915@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 17:06:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504878 - in head/devel: . cli11 X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . cli11 X-SVN-Commit-Revision: 504878 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 38EA384808 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 17:06:37 -0000 Author: yuri Date: Sat Jun 22 17:06:35 2019 New Revision: 504878 URL: https://svnweb.freebsd.org/changeset/ports/504878 Log: New port: devel/cli11: Command line parser for C++11 and beyond Added: head/devel/cli11/ head/devel/cli11/Makefile (contents, props changed) head/devel/cli11/distinfo (contents, props changed) head/devel/cli11/pkg-descr (contents, props changed) head/devel/cli11/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jun 22 16:55:30 2019 (r504877) +++ head/devel/Makefile Sat Jun 22 17:06:35 2019 (r504878) @@ -326,6 +326,7 @@ SUBDIR += clazy SUBDIR += cld2 SUBDIR += clewn + SUBDIR += cli11 SUBDIR += clig SUBDIR += cligen SUBDIR += clinfo Added: head/devel/cli11/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cli11/Makefile Sat Jun 22 17:06:35 2019 (r504878) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= cli11 +DISTVERSIONPREFIX= v +DISTVERSION= 1.8.0 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Command line parser for C++11 and beyond + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= cmake compiler:c++11-lang +USE_GITHUB= yes +GH_ACCOUNT= CLIUtils +GH_PROJECT= CLI11 + +CMAKE_OFF= BUILD_TESTING + +NO_ARCH= yes + +.include Added: head/devel/cli11/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cli11/distinfo Sat Jun 22 17:06:35 2019 (r504878) @@ -0,0 +1,3 @@ +TIMESTAMP = 1561222672 +SHA256 (CLIUtils-CLI11-v1.8.0_GH0.tar.gz) = 8a0dc1526797d441cc0bd7c735097f60eea39b9775de7fdbcd99a3f635a6bd5e +SIZE (CLIUtils-CLI11-v1.8.0_GH0.tar.gz) = 206495 Added: head/devel/cli11/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cli11/pkg-descr Sat Jun 22 17:06:35 2019 (r504878) @@ -0,0 +1,4 @@ +CLI11 is a command line parser for C++11 and beyond that provides a rich feature +set with a simple and intuitive interface. + +WWW: https://github.com/CLIUtils/CLI11 Added: head/devel/cli11/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/cli11/pkg-plist Sat Jun 22 17:06:35 2019 (r504878) @@ -0,0 +1,18 @@ +include/CLI/App.hpp +include/CLI/CLI.hpp +include/CLI/Config.hpp +include/CLI/ConfigFwd.hpp +include/CLI/Error.hpp +include/CLI/Formatter.hpp +include/CLI/FormatterFwd.hpp +include/CLI/Macros.hpp +include/CLI/Option.hpp +include/CLI/Optional.hpp +include/CLI/Split.hpp +include/CLI/StringTools.hpp +include/CLI/Timer.hpp +include/CLI/TypeTools.hpp +include/CLI/Validators.hpp +include/CLI/Version.hpp +lib/cmake/CLI11/CLI11Config.cmake +lib/cmake/CLI11/CLI11ConfigVersion.cmake From owner-svn-ports-all@freebsd.org Sat Jun 22 17:36:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 13A2015D9305; Sat, 22 Jun 2019 17:36:11 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AB050855EC; Sat, 22 Jun 2019 17:36:10 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5838BDDD0; Sat, 22 Jun 2019 17:36:10 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MHaAd8046396; Sat, 22 Jun 2019 17:36:10 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MHa96R046394; Sat, 22 Jun 2019 17:36:09 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906221736.x5MHa96R046394@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 17:36:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504879 - in head/textproc: discount markdown X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/textproc: discount markdown X-SVN-Commit-Revision: 504879 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: AB050855EC X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 17:36:11 -0000 Author: yuri Date: Sat Jun 22 17:36:09 2019 New Revision: 504879 URL: https://svnweb.freebsd.org/changeset/ports/504879 Log: textproc/markdown and textproc/discount: Add CONFLICTS_INSTALL Approved by: portmgr blanket Modified: head/textproc/discount/Makefile head/textproc/markdown/Makefile Modified: head/textproc/discount/Makefile ============================================================================== --- head/textproc/discount/Makefile Sat Jun 22 17:06:35 2019 (r504878) +++ head/textproc/discount/Makefile Sat Jun 22 17:36:09 2019 (r504879) @@ -51,4 +51,6 @@ SAMPLES_PLIST_FILES= bin/makepage bin/mkd2html bin/the man/man1/makepage.1.gz man/man1/mkd2html.1.gz \ man/man1/theme.1.gz +CONFLICTS_INSTALL= markdown + .include Modified: head/textproc/markdown/Makefile ============================================================================== --- head/textproc/markdown/Makefile Sat Jun 22 17:06:35 2019 (r504878) +++ head/textproc/markdown/Makefile Sat Jun 22 17:36:09 2019 (r504879) @@ -24,6 +24,8 @@ PORTDOCS= Markdown-Readme.text PLIST_FILES= bin/markdown +CONFLICTS_INSTALL= discount + do-install: ${INSTALL_SCRIPT} ${WRKSRC}/Markdown.pl ${STAGEDIR}${PREFIX}/bin/markdown @${MKDIR} ${STAGEDIR}${DOCSDIR} From owner-svn-ports-all@freebsd.org Sat Jun 22 18:46:03 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A897815B35DE; Sat, 22 Jun 2019 18:46:03 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1CAC38763A; Sat, 22 Jun 2019 18:46:03 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EE359E9BD; Sat, 22 Jun 2019 18:46:02 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MIk2Yx082557; Sat, 22 Jun 2019 18:46:02 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MIk2v5082556; Sat, 22 Jun 2019 18:46:02 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906221846.x5MIk2v5082556@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 22 Jun 2019 18:46:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504880 - head/deskutils/showdown X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/deskutils/showdown X-SVN-Commit-Revision: 504880 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1CAC38763A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 18:46:03 -0000 Author: linimon Date: Sat Jun 22 18:46:02 2019 New Revision: 504880 URL: https://svnweb.freebsd.org/changeset/ports/504880 Log: Fix build on powerpc64 by adding c++11-lang to USES and modifying GNUmakefile: unrecognized command line option "-Wno-incompatible-pointer-types" Approved by: portmgr (tier-2 blanket) Modified: head/deskutils/showdown/Makefile Modified: head/deskutils/showdown/Makefile ============================================================================== --- head/deskutils/showdown/Makefile Sat Jun 22 17:36:09 2019 (r504879) +++ head/deskutils/showdown/Makefile Sat Jun 22 18:46:02 2019 (r504880) @@ -10,14 +10,13 @@ COMMENT= Simple markdown viewer, written in Vala and G LICENSE= GPLv3 -BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-incompatible-pointer-types" - BUILD_DEPENDS= ${LOCALBASE}/lib/libmarkdown.a:textproc/discount \ valac:lang/vala LIB_DEPENDS= libsoup-2.4.so:devel/libsoup \ libwebkit2gtk-4.0.so:www/webkit2-gtk3 -USES= desktop-file-utils gmake pkgconfig +USES= compiler:c++11-lang desktop-file-utils gmake gnome \ + pkgconfig USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk30 pango USE_XORG= x11 USE_GITHUB= yes @@ -35,6 +34,12 @@ PLIST_FILES= bin/showdown \ OPTIONS_DEFINE= DOCS +.include + +.if ${CHOSEN_COMPILER_TYPE} == gcc +EXTRA_PATCHES= ${FILESDIR}/extra-patch-GNUmakefile +.endif + post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/showdown @@ -42,4 +47,4 @@ post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} -.include +.include From owner-svn-ports-all@freebsd.org Sat Jun 22 18:46:36 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5E67015B3633; Sat, 22 Jun 2019 18:46:36 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 053BD87761; Sat, 22 Jun 2019 18:46:36 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id D2DB3E9BF; Sat, 22 Jun 2019 18:46:35 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MIkZGJ082673; Sat, 22 Jun 2019 18:46:35 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MIkZO8082672; Sat, 22 Jun 2019 18:46:35 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906221846.x5MIkZO8082672@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 22 Jun 2019 18:46:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504881 - head/deskutils/showdown/files X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/deskutils/showdown/files X-SVN-Commit-Revision: 504881 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 053BD87761 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 18:46:36 -0000 Author: linimon Date: Sat Jun 22 18:46:35 2019 New Revision: 504881 URL: https://svnweb.freebsd.org/changeset/ports/504881 Log: Add patchfile forgotten in r504880. Approved by: portmgr (tier-2 blanket) Added: head/deskutils/showdown/files/ head/deskutils/showdown/files/extra-patch-GNUmakefile (contents, props changed) Added: head/deskutils/showdown/files/extra-patch-GNUmakefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/deskutils/showdown/files/extra-patch-GNUmakefile Sat Jun 22 18:46:35 2019 (r504881) @@ -0,0 +1,11 @@ +--- GNUmakefile.orig 2017-12-22 05:00:34 UTC ++++ GNUmakefile +@@ -41,7 +41,7 @@ INSTALL_DIR = $(INSTALL) -d -m755 + RM = rm -f + + VALAPKGS = --pkg gtk+-3.0 --pkg webkit2gtk-4.0 --vapidir src --pkg libmarkdown +-CWARNFLAGS = -Wno-incompatible-pointer-types -Wno-discarded-qualifiers ++CWARNFLAGS = -Wno-discarded-qualifiers + + VALAFLAGS = \ + --target-glib=2.48 \ From owner-svn-ports-all@freebsd.org Sat Jun 22 19:03:27 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD95515B3CEC; Sat, 22 Jun 2019 19:03:27 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 749D08813B; Sat, 22 Jun 2019 19:03:27 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4C962ED6A; Sat, 22 Jun 2019 19:03:27 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MJ3RuO093133; Sat, 22 Jun 2019 19:03:27 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MJ3RfJ093132; Sat, 22 Jun 2019 19:03:27 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201906221903.x5MJ3RfJ093132@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Sat, 22 Jun 2019 19:03:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504882 - head/sysutils/freeipmi X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/sysutils/freeipmi X-SVN-Commit-Revision: 504882 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 749D08813B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 19:03:28 -0000 Author: pkubaj Date: Sat Jun 22 19:03:26 2019 New Revision: 504882 URL: https://svnweb.freebsd.org/changeset/ports/504882 Log: sysutils/freeipmi: works on powerpc64 Also, remove ONLY_FOR_ARCHS_REASON since it's obviously wrong. Approved by: mentors (implicite approval) Modified: head/sysutils/freeipmi/Makefile Modified: head/sysutils/freeipmi/Makefile ============================================================================== --- head/sysutils/freeipmi/Makefile Sat Jun 22 18:46:35 2019 (r504881) +++ head/sysutils/freeipmi/Makefile Sat Jun 22 19:03:26 2019 (r504882) @@ -13,8 +13,7 @@ COMMENT= Library and tools to support IPMI-capable har LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/COPYING -ONLY_FOR_ARCHS= amd64 i386 -ONLY_FOR_ARCHS_REASON= invokes x86 assembler +ONLY_FOR_ARCHS= amd64 i386 powerpc64 LIB_DEPENDS= libargp.so:devel/argp-standalone \ libgcrypt.so:security/libgcrypt From owner-svn-ports-all@freebsd.org Sat Jun 22 19:10:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CA5A615B4101; Sat, 22 Jun 2019 19:10:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3D3AB885E1; Sat, 22 Jun 2019 19:10:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 14536ED71; Sat, 22 Jun 2019 19:10:24 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MJANem093576; Sat, 22 Jun 2019 19:10:23 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MJANca093575; Sat, 22 Jun 2019 19:10:23 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906221910.x5MJANca093575@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 22 Jun 2019 19:10:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504883 - head/misc/kdeedu X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: head/misc/kdeedu X-SVN-Commit-Revision: 504883 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3D3AB885E1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.959,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 19:10:25 -0000 Author: linimon Date: Sat Jun 22 19:10:23 2019 New Revision: 504883 URL: https://svnweb.freebsd.org/changeset/ports/504883 Log: Recently, kdeedu gained a dependency on math/kig, which brings in some heavyweight dependencies: devel/boost-python-libs devel/libunwind math/blas math/cblas math/lapack math/metis math/openblas math/py-numpy math/suitesparse This is particularly painful on powerpc64, where openblas does not even build (yet). This patch turns on option KIG on x86 only. The impact on arm is TBD. PR: 238721 Approved by: tcberner Modified: head/misc/kdeedu/Makefile Modified: head/misc/kdeedu/Makefile ============================================================================== --- head/misc/kdeedu/Makefile Sat Jun 22 19:03:26 2019 (r504882) +++ head/misc/kdeedu/Makefile Sat Jun 22 19:10:23 2019 (r504883) @@ -12,7 +12,11 @@ USES= kde:5 metaport OPTIONS_DEFINE= ARTIKULATE BLINKEN CANTOR KALGEBRA KALZIUM KANAGRAM KBRUCH KGEOGRAPHY \ KHANGMAN KIG KITEN KLETTRES KMPLOT KTOUCH KTURTLE \ KWORDQUIZ MARBLE PAIRS PARLEY ROCS STEP -OPTIONS_DEFAULT= ${OPTIONS_DEFINE} +OPTIONS_DEFAULT= ARTIKULATE BLINKEN CANTOR KALGEBRA KALZIUM KANAGRAM KBRUCH KGEOGRAPHY \ + KHANGMAN KITEN KLETTRES KMPLOT KTOUCH KTURTLE \ + KWORDQUIZ MARBLE PAIRS PARLEY ROCS STEP +OPTIONS_DEFAULT_amd64= KIG +OPTIONS_DEFAULT_i386= KIG ARTIKULATE_DESC= Pronunciation trainer ARTIKULATE_RUN_DEPENDS= artikulate>=${KDE_APPLICATIONS_VERSION}:misc/artikulate From owner-svn-ports-all@freebsd.org Sat Jun 22 19:19:40 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1821F15B44AF; Sat, 22 Jun 2019 19:19:40 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B350388A9A; Sat, 22 Jun 2019 19:19:39 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8E7F8EF32; Sat, 22 Jun 2019 19:19:39 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MJJdBN098572; Sat, 22 Jun 2019 19:19:39 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MJJdap098571; Sat, 22 Jun 2019 19:19:39 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906221919.x5MJJdap098571@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 22 Jun 2019 19:19:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504884 - in head/devel/xeus: . files X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/devel/xeus: . files X-SVN-Commit-Revision: 504884 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: B350388A9A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 19:19:40 -0000 Author: linimon Date: Sat Jun 22 19:19:38 2019 New Revision: 504884 URL: https://svnweb.freebsd.org/changeset/ports/504884 Log: For GCC-based systems, edit top-level CMakeLists.txt to eliminate either of the following two problems: g++8: error: unrecognized command line option '-march=native' g++8: error: unrecognized argument in option '-mtune=generic' Approved by: portmgr (tier-2 blanket) Added: head/devel/xeus/files/ head/devel/xeus/files/extra-patch-CMakeLists.txt (contents, props changed) Modified: head/devel/xeus/Makefile Modified: head/devel/xeus/Makefile ============================================================================== --- head/devel/xeus/Makefile Sat Jun 22 19:10:23 2019 (r504883) +++ head/devel/xeus/Makefile Sat Jun 22 19:19:38 2019 (r504884) @@ -23,4 +23,10 @@ GH_ACCOUNT= QuantStack CMAKE_OFF= BUILD_STATIC_LIBS USE_LDCONFIG= yes -.include +.include + +.if ${CHOSEN_COMPILER_TYPE} == gcc +EXTRA_PATCHES= ${FILESDIR}/extra-patch-CMakeLists.txt +.endif + +.include Added: head/devel/xeus/files/extra-patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/xeus/files/extra-patch-CMakeLists.txt Sat Jun 22 19:19:38 2019 (r504884) @@ -0,0 +1,15 @@ +--- CMakeLists.txt.orig 2019-05-24 14:55:26 UTC ++++ CMakeLists.txt +@@ -212,12 +212,6 @@ macro(xeus_create_target target_name lin + + target_compile_options(${target_name} PUBLIC -Wunused-parameter -Wextra -Wreorder) + +- if (DISABLE_ARCH_NATIVE) +- target_compile_options(${target_name} PUBLIC -mtune=generic) +- else () +- target_compile_options(${target_name} PUBLIC -march=native) +- endif () +- + # Enable link time optimization and set the default symbol + # visibility to hidden (very important to obtain small binaries) + if (NOT ${U_CMAKE_BUILD_TYPE} MATCHES DEBUG) From owner-svn-ports-all@freebsd.org Sat Jun 22 19:33:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E42F815B4BB1; Sat, 22 Jun 2019 19:33:16 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 832888986B; Sat, 22 Jun 2019 19:33:16 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 594E1F299; Sat, 22 Jun 2019 19:33:16 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MJXGF9008900; Sat, 22 Jun 2019 19:33:16 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MJXGUQ008897; Sat, 22 Jun 2019 19:33:16 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906221933.x5MJXGUQ008897@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sat, 22 Jun 2019 19:33:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504885 - in head/x11/xorgproto: . files X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: in head/x11/xorgproto: . files X-SVN-Commit-Revision: 504885 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 832888986B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.97)[-0.974,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 19:33:17 -0000 Author: zeising Date: Sat Jun 22 19:33:15 2019 New Revision: 504885 URL: https://svnweb.freebsd.org/changeset/ports/504885 Log: x11/xorgproto: update to 2019.1 Update x11/xorgproto to 2019.1 This release contains cleanups and and a few new keysyms. No functional changes to any protocols. Big thanks to antoine and portmgr for help with the exp-run! Changelog: https://lists.x.org/archives/xorg-announce/2019-June/003000.html PR: 238728 (exp-run) exp-run by: antoine Sponsored by: B3 Init (zeising) Deleted: head/x11/xorgproto/files/ Modified: head/x11/xorgproto/Makefile head/x11/xorgproto/distinfo Modified: head/x11/xorgproto/Makefile ============================================================================== --- head/x11/xorgproto/Makefile Sat Jun 22 19:19:38 2019 (r504884) +++ head/x11/xorgproto/Makefile Sat Jun 22 19:33:15 2019 (r504885) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= xorgproto -PORTVERSION= 2018.4 +PORTVERSION= 2019.1 CATEGORIES= x11 MAINTAINER= x11@FreeBSD.org @@ -12,6 +12,7 @@ XORG_CAT= proto CONFIGURE_ARGS= --without-fop \ --without-xmlto \ --without-xsltproc \ + --disable-specs \ --enable-legacy pre-patch: Modified: head/x11/xorgproto/distinfo ============================================================================== --- head/x11/xorgproto/distinfo Sat Jun 22 19:19:38 2019 (r504884) +++ head/x11/xorgproto/distinfo Sat Jun 22 19:33:15 2019 (r504885) @@ -1,3 +1,3 @@ -TIMESTAMP = 1532366892 -SHA256 (xorg/proto/xorgproto-2018.4.tar.bz2) = fee885e0512899ea5280c593fdb2735beb1693ad170c22ebcc844470eec415a0 -SIZE (xorg/proto/xorgproto-2018.4.tar.bz2) = 390293 +TIMESTAMP = 1561020414 +SHA256 (xorg/proto/xorgproto-2019.1.tar.bz2) = a6daaa7a6cbc8e374032d83ff7f47d41be98f1e0f4475d66a4da3aa766a0d49b +SIZE (xorg/proto/xorgproto-2019.1.tar.bz2) = 865840 From owner-svn-ports-all@freebsd.org Sat Jun 22 20:41:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BDF9215B8635; Sat, 22 Jun 2019 20:41:05 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5D35F8BAEE; Sat, 22 Jun 2019 20:41:05 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 35FC7FCB4; Sat, 22 Jun 2019 20:41:05 +0000 (UTC) (envelope-from ultima@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MKf5SK041070; Sat, 22 Jun 2019 20:41:05 GMT (envelope-from ultima@FreeBSD.org) Received: (from ultima@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MKf4LQ041069; Sat, 22 Jun 2019 20:41:04 GMT (envelope-from ultima@FreeBSD.org) Message-Id: <201906222041.x5MKf4LQ041069@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ultima set sender to ultima@FreeBSD.org using -f From: Richard Gallamore Date: Sat, 22 Jun 2019 20:41:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504886 - head/textproc/py-parso X-SVN-Group: ports-head X-SVN-Commit-Author: ultima X-SVN-Commit-Paths: head/textproc/py-parso X-SVN-Commit-Revision: 504886 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5D35F8BAEE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 20:41:05 -0000 Author: ultima Date: Sat Jun 22 20:41:04 2019 New Revision: 504886 URL: https://svnweb.freebsd.org/changeset/ports/504886 Log: Updated to 0.5.0 Changes: https://github.com/davidhalter/parso/blob/master/CHANGELOG.rst Modified: head/textproc/py-parso/Makefile head/textproc/py-parso/distinfo Modified: head/textproc/py-parso/Makefile ============================================================================== --- head/textproc/py-parso/Makefile Sat Jun 22 19:33:15 2019 (r504885) +++ head/textproc/py-parso/Makefile Sat Jun 22 20:41:04 2019 (r504886) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= parso -DISTVERSION= 0.4.0 +DISTVERSION= 0.5.0 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/textproc/py-parso/distinfo ============================================================================== --- head/textproc/py-parso/distinfo Sat Jun 22 19:33:15 2019 (r504885) +++ head/textproc/py-parso/distinfo Sat Jun 22 20:41:04 2019 (r504886) @@ -1,3 +1,3 @@ -TIMESTAMP = 1557086497 -SHA256 (parso-0.4.0.tar.gz) = 2e9574cb12e7112a87253e14e2c380ce312060269d04bd018478a3c92ea9a376 -SIZE (parso-0.4.0.tar.gz) = 388796 +TIMESTAMP = 1561228137 +SHA256 (parso-0.5.0.tar.gz) = db5881df1643bf3e66c097bfd8935cf03eae73f4cb61ae4433c9ea4fb6613446 +SIZE (parso-0.5.0.tar.gz) = 389820 From owner-svn-ports-all@freebsd.org Sat Jun 22 20:50:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AA67015B8764; Sat, 22 Jun 2019 20:50:11 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 51A768BEA4; Sat, 22 Jun 2019 20:50:11 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 38861FE2E; Sat, 22 Jun 2019 20:50:11 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MKoAO3045291; Sat, 22 Jun 2019 20:50:10 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MKoAY8045289; Sat, 22 Jun 2019 20:50:10 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906222050.x5MKoAY8045289@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sat, 22 Jun 2019 20:50:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504887 - in head/graphics/imv: . files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/graphics/imv: . files X-SVN-Commit-Revision: 504887 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 51A768BEA4 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.98)[-0.981,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 20:50:11 -0000 Author: tobik Date: Sat Jun 22 20:50:10 2019 New Revision: 504887 URL: https://svnweb.freebsd.org/changeset/ports/504887 Log: graphics/imv: Update to 3.1.1 This allows us to drop the custom Makefile patch and install files with the right permissions. Thanks to @eXeC64 for putting out a new release for this. While here - Take it back - Fix license - Make sure a2x runs during build instead of install - Expose options for the new backends - Make FREEIMAGE support optional - Use USE_GNOME=librsvg2 Changes: https://github.com/eXeC64/imv/blob/v3.1.1/CHANGELOG Deleted: head/graphics/imv/files/ Modified: head/graphics/imv/Makefile head/graphics/imv/distinfo Modified: head/graphics/imv/Makefile ============================================================================== --- head/graphics/imv/Makefile Sat Jun 22 20:41:04 2019 (r504886) +++ head/graphics/imv/Makefile Sat Jun 22 20:50:10 2019 (r504887) @@ -3,37 +3,63 @@ PORTNAME= imv DISTVERSIONPREFIX= v -DISTVERSION= 3.1.0 +DISTVERSION= 3.1.1 CATEGORIES= graphics -MAINTAINER= ports@FreeBSD.org +MAINTAINER= tobik@FreeBSD.org COMMENT= Simple image viewer -LICENSE= GPLv2 +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE -BUILD_DEPENDS= asciidoc:textproc/asciidoc -LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ - libfreeimage.so:graphics/freeimage \ - librsvg-2.so:graphics/librsvg2 +BUILD_DEPENDS= a2x:textproc/asciidoc +LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig TEST_DEPENDS= ${LOCALBASE}/lib/libcmocka.so:sysutils/cmocka -USES= desktop-file-utils gmake gnome \ - localbase pkgconfig sdl -USE_SDL= sdl2 ttf2 -USE_GNOME= glib20 - +USES= desktop-file-utils gmake pkgconfig sdl USE_GITHUB= yes GH_ACCOUNT= eXeC64 +USE_SDL= sdl2 ttf2 -ALL_TARGET= imv +MAKE_ARGS= CONFIGPREFIX=${PREFIX}/etc \ + INSTALL_DATA="${INSTALL_DATA}" \ + INSTALL_MAN="${INSTALL_MAN}" \ + INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ + MANPREFIX=${PREFIX}/man \ + V=1 +ALL_TARGET= imv doc TEST_TARGET= check -MAKE_ARGS= V=1 - PLIST_FILES= bin/imv \ etc/imv_config \ man/man1/imv.1.gz \ man/man5/imv.5.gz \ share/applications/imv.desktop + +OPTIONS_DEFINE= FREEIMAGE JPEG PNG SVG TIFF +OPTIONS_DEFAULT= FREEIMAGE SVG + +FREEIMAGE_DESC= FreeImage backend (support for many image formats) + +FREEIMAGE_LIB_DEPENDS= libfreeimage.so:graphics/freeimage +FREEIMAGE_MAKE_ARGS_OFF= BACKEND_FREEIMAGE=no +FREEIMAGE_MAKE_ARGS= BACKEND_FREEIMAGE=yes + +JPEG_LIB_DEPENDS= libturbojpeg.so:graphics/libjpeg-turbo +JPEG_MAKE_ARGS_OFF= BACKEND_LIBJPEG=no +JPEG_MAKE_ARGS= BACKEND_LIBJPEG=yes + +PNG_LIB_DEPENDS= libpng.so:graphics/png +PNG_MAKE_ARGS_OFF= BACKEND_LIBPNG=no +PNG_MAKE_ARGS= BACKEND_LIBPNG=yes + +SVG_USES= gnome +SVG_USE= GNOME=cairo,librsvg2 +SVG_MAKE_ARGS_OFF= BACKEND_LIBRSVG=no +SVG_MAKE_ARGS= BACKEND_LIBRSVG=yes + +TIFF_LIB_DEPENDS= libtiff.so:graphics/tiff +TIFF_MAKE_ARGS_OFF= BACKEND_LIBTIFF=no +TIFF_MAKE_ARGS= BACKEND_LIBTIFF=yes .include Modified: head/graphics/imv/distinfo ============================================================================== --- head/graphics/imv/distinfo Sat Jun 22 20:41:04 2019 (r504886) +++ head/graphics/imv/distinfo Sat Jun 22 20:50:10 2019 (r504887) @@ -1,3 +1,3 @@ -TIMESTAMP = 1560875164 -SHA256 (eXeC64-imv-v3.1.0_GH0.tar.gz) = d03ecd73221b77a4ae08c9625499d84525f0ec31113691367fb727d4c0ba1db8 -SIZE (eXeC64-imv-v3.1.0_GH0.tar.gz) = 45118 +TIMESTAMP = 1561235978 +SHA256 (eXeC64-imv-v3.1.1_GH0.tar.gz) = e6eca0c9f341ebb68444d12576291e5bcdeb31d5fb34da98fdb1e29ba16a7e15 +SIZE (eXeC64-imv-v3.1.1_GH0.tar.gz) = 45184 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:11:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F142415B8E79; Sat, 22 Jun 2019 21:11:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8D60D8C7D6; Sat, 22 Jun 2019 21:11:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 68CB2181A1; Sat, 22 Jun 2019 21:11:19 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLBJS7057691; Sat, 22 Jun 2019 21:11:19 GMT (envelope-from linimon@FreeBSD.org) Received: (from linimon@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLBJ3h057688; Sat, 22 Jun 2019 21:11:19 GMT (envelope-from linimon@FreeBSD.org) Message-Id: <201906222111.x5MLBJ3h057688@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: linimon set sender to linimon@FreeBSD.org using -f From: Mark Linimon Date: Sat, 22 Jun 2019 21:11:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504888 - in head/graphics/py-gphoto2: . files X-SVN-Group: ports-head X-SVN-Commit-Author: linimon X-SVN-Commit-Paths: in head/graphics/py-gphoto2: . files X-SVN-Commit-Revision: 504888 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8D60D8C7D6 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.98)[-0.980,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:11:20 -0000 Author: linimon Date: Sat Jun 22 21:11:18 2019 New Revision: 504888 URL: https://svnweb.freebsd.org/changeset/ports/504888 Log: Remove '-Wno-unused-but-set-variable' on GCC-based systems to fix build: cc1: error: unrecognized command line option "-Wno-unused-but-set-variable" Approved by: portmgr (tier-2 blanket) Added: head/graphics/py-gphoto2/files/ head/graphics/py-gphoto2/files/extra-patch-setup.py (contents, props changed) Modified: head/graphics/py-gphoto2/Makefile Modified: head/graphics/py-gphoto2/Makefile ============================================================================== --- head/graphics/py-gphoto2/Makefile Sat Jun 22 20:50:10 2019 (r504887) +++ head/graphics/py-gphoto2/Makefile Sat Jun 22 21:11:18 2019 (r504888) @@ -14,11 +14,9 @@ COMMENT= Python bindings for libgphoto2 LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE.txt -BROKEN_powerpc64= fails to compile: unrecognized command line option "-Wno-unused-but-set-variable" - LIB_DEPENDS= libgphoto2.so:graphics/libgphoto2 -USES= pkgconfig python shebangfix +USES= compiler pkgconfig python shebangfix USE_PYTHON= autoplist concurrent distutils SHEBANG_FILES= examples/*.py @@ -30,4 +28,10 @@ post-patch: -e 's|share/python-gphoto2|${DOCSDIR:S,${PREFIX}/,,}|' \ ${WRKSRC}/setup.py -.include +.include + +.if ${CHOSEN_COMPILER_TYPE} == gcc +EXTRA_PATCHES= ${FILESDIR}/extra-patch-setup.py +.endif + +.include Added: head/graphics/py-gphoto2/files/extra-patch-setup.py ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/py-gphoto2/files/extra-patch-setup.py Sat Jun 22 21:11:18 2019 (r504888) @@ -0,0 +1,11 @@ +--- setup.py.orig 2018-01-02 11:44:51 UTC ++++ setup.py +@@ -83,7 +83,7 @@ mod_src_dir = os.path.join( + 'src', mod_src_dir + '-gp' + '.'.join(map(str, best_match))) + + extra_compile_args = [ +- '-O3', '-Wno-unused-variable', '-Wno-unused-but-set-variable', ++ '-O3', '-Wno-unused-variable', + '-Wno-unused-label', '-Wno-strict-prototypes', + '-DGPHOTO2_VERSION=' + '0x{:02x}{:02x}{:02x}'.format(*gphoto2_version)] + if 'PYTHON_GPHOTO2_STRICT' in os.environ: From owner-svn-ports-all@freebsd.org Sat Jun 22 21:21:02 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D64715B8F64; Sat, 22 Jun 2019 21:21:02 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9EF4C8CC22; Sat, 22 Jun 2019 21:21:01 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 71A551834D; Sat, 22 Jun 2019 21:21:01 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLL1as061198; Sat, 22 Jun 2019 21:21:01 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLL0Up061196; Sat, 22 Jun 2019 21:21:00 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906222121.x5MLL0Up061196@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Sat, 22 Jun 2019 21:21:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504889 - head/graphics/cloudcompare X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/graphics/cloudcompare X-SVN-Commit-Revision: 504889 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 9EF4C8CC22 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.958,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:21:02 -0000 Author: kai Date: Sat Jun 22 21:21:00 2019 New Revision: 504889 URL: https://svnweb.freebsd.org/changeset/ports/504889 Log: graphics/cloudcompare: Update to 2.10.3 While I'm here: * Fix the build if option PLUGINS is disabled by adding the appropriate placeholders to the pkg-plist. Changelog: https://github.com/CloudCompare/CloudCompare/releases/tag/v2.10.3 PR: 238744 Submitted by: Neel Chauhan (maintainer) Modified: head/graphics/cloudcompare/Makefile head/graphics/cloudcompare/distinfo head/graphics/cloudcompare/pkg-plist Modified: head/graphics/cloudcompare/Makefile ============================================================================== --- head/graphics/cloudcompare/Makefile Sat Jun 22 21:11:18 2019 (r504888) +++ head/graphics/cloudcompare/Makefile Sat Jun 22 21:21:00 2019 (r504889) @@ -2,8 +2,7 @@ PORTNAME= cloudcompare DISTVERSIONPREFIX= v -DISTVERSION= 2.10.2 -PORTREVISION= 1 +DISTVERSION= 2.10.3 CATEGORIES= graphics MAINTAINER= neel@neelc.org Modified: head/graphics/cloudcompare/distinfo ============================================================================== --- head/graphics/cloudcompare/distinfo Sat Jun 22 21:11:18 2019 (r504888) +++ head/graphics/cloudcompare/distinfo Sat Jun 22 21:21:00 2019 (r504889) @@ -1,3 +1,3 @@ -TIMESTAMP = 1551102329 -SHA256 (CloudCompare-CloudCompare-v2.10.2_GH0.tar.gz) = 32d8660f17824547eec48263be08226ce707034175a55b54290dee48e4926e30 -SIZE (CloudCompare-CloudCompare-v2.10.2_GH0.tar.gz) = 35367617 +TIMESTAMP = 1561072132 +SHA256 (CloudCompare-CloudCompare-v2.10.3_GH0.tar.gz) = 6c38f9c1c8f705ac7c2c4d63afff78a7d499ac9bfbf24ca7516f0664bb2bf642 +SIZE (CloudCompare-CloudCompare-v2.10.3_GH0.tar.gz) = 35500995 Modified: head/graphics/cloudcompare/pkg-plist ============================================================================== --- head/graphics/cloudcompare/pkg-plist Sat Jun 22 21:11:18 2019 (r504888) +++ head/graphics/cloudcompare/pkg-plist Sat Jun 22 21:21:00 2019 (r504889) @@ -3,20 +3,20 @@ bin/ccViewer lib/cloudcompare/libCC_CORE_LIB.so lib/cloudcompare/libQCC_DB_LIB.so lib/cloudcompare/libQCC_IO_LIB.so -lib/cloudcompare/plugins/libQANIMATION_PLUGIN.so -lib/cloudcompare/plugins/libQBROOM_PLUGIN.so -lib/cloudcompare/plugins/libQCOMPASS_PLUGIN.so -lib/cloudcompare/plugins/libQCSF_PLUGIN.so -lib/cloudcompare/plugins/libQCSV_MATRIX_IO_PLUGIN.so -lib/cloudcompare/plugins/libQEDL_PLUGIN.so -lib/cloudcompare/plugins/libQFACETS_PLUGIN_DLL.so -lib/cloudcompare/plugins/libQHPR_PLUGIN.so -lib/cloudcompare/plugins/libQM3C2_PLUGIN_DLL.so -lib/cloudcompare/plugins/libQPCV_PLUGIN.so -lib/cloudcompare/plugins/libQPHOTOSCAN_IO_PLUGIN.so -lib/cloudcompare/plugins/libQRANSAC_SD_PLUGIN.so -lib/cloudcompare/plugins/libQSRA_PLUGIN.so -lib/cloudcompare/plugins/libQSSAO_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQANIMATION_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQBROOM_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQCOMPASS_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQCSF_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQCSV_MATRIX_IO_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQEDL_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQFACETS_PLUGIN_DLL.so +%%PLUGINS%%lib/cloudcompare/plugins/libQHPR_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQM3C2_PLUGIN_DLL.so +%%PLUGINS%%lib/cloudcompare/plugins/libQPCV_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQPHOTOSCAN_IO_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQRANSAC_SD_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQSRA_PLUGIN.so +%%PLUGINS%%lib/cloudcompare/plugins/libQSSAO_PLUGIN.so share/applications/ccViewer.desktop share/applications/cloudcompare.desktop %%DATADIR%%/CHANGELOG.md @@ -25,12 +25,13 @@ share/applications/cloudcompare.desktop %%DATADIR%%/shaders/Bilateral/bilateral.frag %%DATADIR%%/shaders/Bilateral/bilateral.vert %%DATADIR%%/shaders/ColorRamp/color_ramp.frag -%%DATADIR%%/shaders/EDL/edl_mix.frag -%%DATADIR%%/shaders/EDL/edl_mix.vert -%%DATADIR%%/shaders/EDL/edl_shade.frag -%%DATADIR%%/shaders/EDL/edl_shade.vert -%%DATADIR%%/shaders/SSAO/ssao.frag -%%DATADIR%%/shaders/SSAO/ssao.vert +%%PLUGINS%%%%DATADIR%%/shaders/EDL/edl_mix.frag +%%PLUGINS%%%%DATADIR%%/shaders/EDL/edl_mix.vert +%%PLUGINS%%%%DATADIR%%/shaders/EDL/edl_shade.frag +%%PLUGINS%%%%DATADIR%%/shaders/EDL/edl_shade.vert +%%PLUGINS%%%%DATADIR%%/shaders/SSAO/ssao.frag +%%PLUGINS%%%%DATADIR%%/shaders/SSAO/ssao.vert +%%DATADIR%%/translations/CloudCompare_es_AR.qm %%DATADIR%%/translations/CloudCompare_fr.qm %%DATADIR%%/translations/CloudCompare_ja.qm %%DATADIR%%/translations/CloudCompare_pt.qm From owner-svn-ports-all@freebsd.org Sat Jun 22 21:48:15 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 475AB15B97B3; Sat, 22 Jun 2019 21:48:15 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D7EFB8D5CE; Sat, 22 Jun 2019 21:48:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 990561881B; Sat, 22 Jun 2019 21:48:14 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLmEuY076767; Sat, 22 Jun 2019 21:48:14 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLmEIN076766; Sat, 22 Jun 2019 21:48:14 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222148.x5MLmEIN076766@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:48:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504890 - head/biology/libsbml X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/biology/libsbml X-SVN-Commit-Revision: 504890 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D7EFB8D5CE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.96)[-0.958,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:48:15 -0000 Author: sunpoet Date: Sat Jun 22 21:48:14 2019 New Revision: 504890 URL: https://svnweb.freebsd.org/changeset/ports/504890 Log: Use USES=pathfix - Add USES=gnome - Use = instead of += for PLIST_SUB - Use CMAKE_BOOL - Cosmetic change - Take maintainership Modified: head/biology/libsbml/Makefile Modified: head/biology/libsbml/Makefile ============================================================================== --- head/biology/libsbml/Makefile Sat Jun 22 21:21:00 2019 (r504889) +++ head/biology/libsbml/Makefile Sat Jun 22 21:48:14 2019 (r504890) @@ -4,52 +4,45 @@ PORTNAME= libsbml PORTVERSION= 5.18.0 CATEGORIES= biology devel -MASTER_SITES= SF/sbml/${PORTNAME}/${PORTVERSION}/stable +MASTER_SITES= SF/sbml/libsbml/${PORTVERSION}/stable DISTNAME= libSBML-${PORTVERSION}-core-src -MAINTAINER= ports@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= API Library for Working with SBML File LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING.txt -WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} +USES= cmake gnome iconv:build pathfix +USE_GNOME= libxml2 -USES= cmake iconv:build USE_CXXSTD= c++98 -USE_GNOME= libxml2 USE_LDCONFIG= yes +WRKSRC= ${WRKDIR}/libsbml-${PORTVERSION} -CFLAGS+= -I${ICONV_PREFIX}/include -LDFLAGS+= -L${ICONV_PREFIX}/lib +PLIST_SUB= PORTVERSION=${PORTVERSION} OPTIONS_DEFINE= EXAMPLES PYTHON RUBY OPTIONS_SUB= yes -PLIST_SUB+= PORTVERSION=${PORTVERSION} PYTHON_BUILD_DEPENDS= swig3.0:devel/swig30 PYTHON_USES= python:2.7 -PYTHON_CMAKE_ON= -DWITH_PYTHON:BOOL=ON \ - -DPYTHON_INCLUDE_DIR:STRING="${PYTHON_INCLUDEDIR}" \ - -DPYTHON_LIBRARY:STRING="${PYTHONBASE}/lib/lib${PYTHON_VERSION}.so" \ - -DPYTHON_EXECUTABLE:STRING="${PYTHON_CMD}" +PYTHON_CMAKE_BOOL= WITH_PYTHON +PYTHON_CMAKE_ON= -DPYTHON_EXECUTABLE="${PYTHON_CMD}" \ + -DPYTHON_INCLUDE_DIR="${PYTHON_INCLUDEDIR}" \ + -DPYTHON_LIBRARY="${PYTHONBASE}/lib/lib${PYTHON_VERSION}.so" PYTHON_BINARY_ALIAS= swig=swig3.0 - RUBY_BUILD_DEPENDS= swig3.0:devel/swig30 RUBY_USE= ruby=yes -RUBY_CMAKE_ON= -DWITH_RUBY:BOOL=ON +RUBY_CMAKE_BOOL= WITH_RUBY RUBY_BINARY_ALIAS= swig=swig3.0 post-patch: - @${REINPLACE_CMD} -e \ - 's|/usr/local/include|${LOCALBASE}/include| ; \ - s|/usr/local/lib|${LOCALBASE}/lib| ; \ - s|$${CMAKE_INSTALL_LIBDIR}/pkgconfig|libdata/pkgconfig| ; \ - /$${DOCUMENTATION_FILES}/s|^|#|' ${WRKSRC}/CMakeLists.txt + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g; /$${DOCUMENTATION_FILES}/ s|^|#|' ${WRKSRC}/CMakeLists.txt +# -e 's|$${CMAKE_INSTALL_LIBDIR}/pkgconfig|libdata/pkgconfig|' post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR} - cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . \ - ${STAGEDIR}${EXAMPLESDIR} '! -name *Makefile*' + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} '! -name *Makefile*' .include From owner-svn-ports-all@freebsd.org Sat Jun 22 21:48:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5731F15B97DB; Sat, 22 Jun 2019 21:48:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id ED7878D5FE; Sat, 22 Jun 2019 21:48:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 6CA591881C; Sat, 22 Jun 2019 21:48:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLmJnc076876; Sat, 22 Jun 2019 21:48:19 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLmJgf076875; Sat, 22 Jun 2019 21:48:19 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222148.x5MLmJgf076875@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:48:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504891 - head/security/libfido2 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/libfido2 X-SVN-Commit-Revision: 504891 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: ED7878D5FE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:48:20 -0000 Author: sunpoet Date: Sat Jun 22 21:48:19 2019 New Revision: 504891 URL: https://svnweb.freebsd.org/changeset/ports/504891 Log: Clean up Makefile Modified: head/security/libfido2/Makefile Modified: head/security/libfido2/Makefile ============================================================================== --- head/security/libfido2/Makefile Sat Jun 22 21:48:14 2019 (r504890) +++ head/security/libfido2/Makefile Sat Jun 22 21:48:19 2019 (r504891) @@ -26,8 +26,6 @@ post-patch: @${REINPLACE_CMD} -e '/libcrypto/d' ${WRKSRC}/CMakeLists.txt @${REINPLACE_CMD} -e 's|share/man|man|' ${WRKSRC}/man/CMakeLists.txt @${REINPLACE_CMD} -e 's|endian.h|sys/&|' ${WRKSRC}/CMakeLists.txt ${WRKSRC}/openbsd-compat/openbsd-compat.h -#.if exists(/usr/lib/libstdc++.so) @${REINPLACE_CMD} -e '/-Wno-unused-result/d; /-Wno-discarded-qualifiers/d' ${WRKSRC}/CMakeLists.txt -#.endif .include From owner-svn-ports-all@freebsd.org Sat Jun 22 21:48:26 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE6D415B9807; Sat, 22 Jun 2019 21:48:26 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5E3F28D66D; Sat, 22 Jun 2019 21:48:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 284D21881E; Sat, 22 Jun 2019 21:48:24 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLmOXu076985; Sat, 22 Jun 2019 21:48:24 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLmOeC076984; Sat, 22 Jun 2019 21:48:24 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222148.x5MLmOeC076984@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:48:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504892 - head/audio/py-audioread X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/audio/py-audioread X-SVN-Commit-Revision: 504892 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5E3F28D66D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:48:26 -0000 Author: sunpoet Date: Sat Jun 22 21:48:23 2019 New Revision: 504892 URL: https://svnweb.freebsd.org/changeset/ports/504892 Log: Add GSTREAMER option Modified: head/audio/py-audioread/Makefile Modified: head/audio/py-audioread/Makefile ============================================================================== --- head/audio/py-audioread/Makefile Sat Jun 22 21:48:19 2019 (r504891) +++ head/audio/py-audioread/Makefile Sat Jun 22 21:48:23 2019 (r504892) @@ -22,12 +22,15 @@ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes OPTIONS_MULTI= BACKEND -OPTIONS_MULTI_BACKEND= FFMPEG PYMAD +OPTIONS_MULTI_BACKEND= FFMPEG GSTREAMER PYMAD OPTIONS_DEFAULT=PYMAD FFMPEG_DESC= Use ffmpeg as backend +GSTREAMER_DESC= Use gstreamer as backend PYMAD_DESC= Use pymad as backend FFMPEG_RUN_DEPENDS= ffmpeg:multimedia/ffmpeg +GSTREAMER_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gobject3>=0:devel/py-gobject3@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}gstreamer1>=1.0:multimedia/py-gstreamer1@${PY_FLAVOR} PYMAD_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pymad>=0:audio/py-pymad@${PY_FLAVOR} .include From owner-svn-ports-all@freebsd.org Sat Jun 22 21:48:34 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0094D15B9835; Sat, 22 Jun 2019 21:48:34 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 581228D757; Sat, 22 Jun 2019 21:48:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id B9C7C1881F; Sat, 22 Jun 2019 21:48:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLmTbM077124; Sat, 22 Jun 2019 21:48:29 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLmTbu077122; Sat, 22 Jun 2019 21:48:29 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222148.x5MLmTbu077122@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:48:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504893 - head/audio/py-pyacoustid X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/audio/py-pyacoustid X-SVN-Commit-Revision: 504893 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 581228D757 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:48:34 -0000 Author: sunpoet Date: Sat Jun 22 21:48:28 2019 New Revision: 504893 URL: https://svnweb.freebsd.org/changeset/ports/504893 Log: Update to 1.1.7 - Update WWW Changes: https://github.com/beetbox/pyacoustid/blob/master/README.rst#version-history Modified: head/audio/py-pyacoustid/Makefile head/audio/py-pyacoustid/distinfo head/audio/py-pyacoustid/pkg-descr Modified: head/audio/py-pyacoustid/Makefile ============================================================================== --- head/audio/py-pyacoustid/Makefile Sat Jun 22 21:48:23 2019 (r504892) +++ head/audio/py-pyacoustid/Makefile Sat Jun 22 21:48:28 2019 (r504893) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= pyacoustid -PORTVERSION= 1.1.5 -PORTREVISION= 0 +PORTVERSION= 1.1.7 CATEGORIES= audio python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -14,6 +13,8 @@ COMMENT= Bindings for Chromaprint acoustic fingerprint LICENSE= MIT LIB_DEPENDS= libchromaprint.so:audio/chromaprint +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}audioread>=0:audio/py-audioread@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} USES= python USE_PYTHON= autoplist concurrent distutils Modified: head/audio/py-pyacoustid/distinfo ============================================================================== --- head/audio/py-pyacoustid/distinfo Sat Jun 22 21:48:23 2019 (r504892) +++ head/audio/py-pyacoustid/distinfo Sat Jun 22 21:48:28 2019 (r504893) @@ -1,3 +1,3 @@ -TIMESTAMP = 1496245320 -SHA256 (pyacoustid-1.1.5.tar.gz) = efb6337a470c9301a108a539af7b775678ff67aa63944e9e04ce4216676cc777 -SIZE (pyacoustid-1.1.5.tar.gz) = 11846 +TIMESTAMP = 1561199696 +SHA256 (pyacoustid-1.1.7.tar.gz) = 07394a8ae84625a0a6fef2d891d19687ff59cd955caaf48097da2826043356fd +SIZE (pyacoustid-1.1.7.tar.gz) = 14990 Modified: head/audio/py-pyacoustid/pkg-descr ============================================================================== --- head/audio/py-pyacoustid/pkg-descr Sat Jun 22 21:48:23 2019 (r504892) +++ head/audio/py-pyacoustid/pkg-descr Sat Jun 22 21:48:28 2019 (r504893) @@ -1,3 +1,3 @@ Bindings for Chromaprint acoustic fingerprinting and the Acoustid API -WWW: https://github.com/sampsyo/pyacoustid +WWW: https://github.com/beetbox/pyacoustid From owner-svn-ports-all@freebsd.org Sat Jun 22 21:48:40 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 051EC15B9877; Sat, 22 Jun 2019 21:48:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7EF578D7FA; Sat, 22 Jun 2019 21:48:39 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1300B18821; Sat, 22 Jun 2019 21:48:35 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLmYWe077249; Sat, 22 Jun 2019 21:48:34 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLmY72077247; Sat, 22 Jun 2019 21:48:34 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222148.x5MLmY72077247@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:48:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504894 - head/devel/py-django-rq X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-django-rq X-SVN-Commit-Revision: 504894 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7EF578D7FA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:48:40 -0000 Author: sunpoet Date: Sat Jun 22 21:48:34 2019 New Revision: 504894 URL: https://svnweb.freebsd.org/changeset/ports/504894 Log: Update to 2.1.0 Changes: https://github.com/rq/django-rq/blob/master/CHANGELOG.md Modified: head/devel/py-django-rq/Makefile head/devel/py-django-rq/distinfo Modified: head/devel/py-django-rq/Makefile ============================================================================== --- head/devel/py-django-rq/Makefile Sat Jun 22 21:48:28 2019 (r504893) +++ head/devel/py-django-rq/Makefile Sat Jun 22 21:48:34 2019 (r504894) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= django-rq -PORTVERSION= 2.0 +PORTVERSION= 2.1.0 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MASTER_SITES= CHEESESHOP @@ -13,7 +13,7 @@ COMMENT= Provides Django integration for RQ (Redis Que LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=0:www/py-django111@${PY_FLAVOR} \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}django111>=1.8.0:www/py-django111@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}rq>=1.0:devel/py-rq@${PY_FLAVOR} TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}coverage>=0:devel/py-coverage@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}docutils>=0:textproc/py-docutils@${PY_FLAVOR} \ Modified: head/devel/py-django-rq/distinfo ============================================================================== --- head/devel/py-django-rq/distinfo Sat Jun 22 21:48:28 2019 (r504893) +++ head/devel/py-django-rq/distinfo Sat Jun 22 21:48:34 2019 (r504894) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558010783 -SHA256 (django-rq-2.0.tar.gz) = 2855d50dcf909b69a36268347d38b3ca8e5111bbb7503a322d85137c13907a5f -SIZE (django-rq-2.0.tar.gz) = 37772 +TIMESTAMP = 1561199698 +SHA256 (django-rq-2.1.0.tar.gz) = 1eda0efe0ad1638c5671412edc28a3574a9a69fdc567be56dc86a7a0a8687343 +SIZE (django-rq-2.1.0.tar.gz) = 38237 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:48:41 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C5A6F15B9895; Sat, 22 Jun 2019 21:48:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 69A0E8D82B; Sat, 22 Jun 2019 21:48:41 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 65BFA18822; Sat, 22 Jun 2019 21:48:40 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLmeCD077371; Sat, 22 Jun 2019 21:48:40 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLmexr077369; Sat, 22 Jun 2019 21:48:40 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222148.x5MLmexr077369@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:48:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504895 - head/devel/py-hypothesis X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/py-hypothesis X-SVN-Commit-Revision: 504895 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 69A0E8D82B X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:48:42 -0000 Author: sunpoet Date: Sat Jun 22 21:48:39 2019 New Revision: 504895 URL: https://svnweb.freebsd.org/changeset/ports/504895 Log: Update to 4.24.4 Changes: https://github.com/HypothesisWorks/hypothesis/blob/master/hypothesis-python/docs/changes.rst Modified: head/devel/py-hypothesis/Makefile head/devel/py-hypothesis/distinfo Modified: head/devel/py-hypothesis/Makefile ============================================================================== --- head/devel/py-hypothesis/Makefile Sat Jun 22 21:48:34 2019 (r504894) +++ head/devel/py-hypothesis/Makefile Sat Jun 22 21:48:39 2019 (r504895) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= hypothesis -PORTVERSION= 4.24.3 +PORTVERSION= 4.24.4 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/devel/py-hypothesis/distinfo ============================================================================== --- head/devel/py-hypothesis/distinfo Sat Jun 22 21:48:34 2019 (r504894) +++ head/devel/py-hypothesis/distinfo Sat Jun 22 21:48:39 2019 (r504895) @@ -1,3 +1,3 @@ -TIMESTAMP = 1559998013 -SHA256 (hypothesis-4.24.3.tar.gz) = fd90a319f409f34a173156ca704d6c0c6c0bb30a2e43dbf26aced2c75569e5d5 -SIZE (hypothesis-4.24.3.tar.gz) = 201295 +TIMESTAMP = 1561199700 +SHA256 (hypothesis-4.24.4.tar.gz) = af1282f034f34611127aa50f23c7d5df3e7233cbcb72db77a163de40d686519c +SIZE (hypothesis-4.24.4.tar.gz) = 201343 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:48:50 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 46D0215B98E9; Sat, 22 Jun 2019 21:48:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DEEC88D92E; Sat, 22 Jun 2019 21:48:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 82FDE18823; Sat, 22 Jun 2019 21:48:45 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLmjmj077496; Sat, 22 Jun 2019 21:48:45 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLmjqD077495; Sat, 22 Jun 2019 21:48:45 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222148.x5MLmjqD077495@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:48:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504896 - head/www/py-instabot X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/py-instabot X-SVN-Commit-Revision: 504896 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DEEC88D92E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:48:50 -0000 Author: sunpoet Date: Sat Jun 22 21:48:44 2019 New Revision: 504896 URL: https://svnweb.freebsd.org/changeset/ports/504896 Log: Update to 0.50.0 Changes: https://github.com/instagrambot/instabot/commits/master Modified: head/www/py-instabot/Makefile head/www/py-instabot/distinfo Modified: head/www/py-instabot/Makefile ============================================================================== --- head/www/py-instabot/Makefile Sat Jun 22 21:48:39 2019 (r504895) +++ head/www/py-instabot/Makefile Sat Jun 22 21:48:44 2019 (r504896) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= instabot -PORTVERSION= 0.49.0 +PORTVERSION= 0.50.0 CATEGORIES= www python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: head/www/py-instabot/distinfo ============================================================================== --- head/www/py-instabot/distinfo Sat Jun 22 21:48:39 2019 (r504895) +++ head/www/py-instabot/distinfo Sat Jun 22 21:48:44 2019 (r504896) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561049508 -SHA256 (instabot-0.49.0.tar.gz) = de37cd3e0460ce488068d22d28a1333f23b7d88adcae58419fc141a9f7a349b9 -SIZE (instabot-0.49.0.tar.gz) = 58610 +TIMESTAMP = 1561199702 +SHA256 (instabot-0.50.0.tar.gz) = 98b52c4778a42accd9ddaa4b92511f10d919401f70ede26985375c4e1989ee5a +SIZE (instabot-0.50.0.tar.gz) = 59500 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:48:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E33FA15B9935; Sat, 22 Jun 2019 21:48:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7A99E8D9D9; Sat, 22 Jun 2019 21:48:56 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 90C9C18824; Sat, 22 Jun 2019 21:48:50 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLmo9d077623; Sat, 22 Jun 2019 21:48:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLmorO077621; Sat, 22 Jun 2019 21:48:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222148.x5MLmorO077621@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:48:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504897 - head/databases/xapian-bindings12 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/databases/xapian-bindings12 X-SVN-Commit-Revision: 504897 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7A99E8D9D9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:48:57 -0000 Author: sunpoet Date: Sat Jun 22 21:48:49 2019 New Revision: 504897 URL: https://svnweb.freebsd.org/changeset/ports/504897 Log: Remove RUBY option and unbreak this port Modified: head/databases/xapian-bindings12/Makefile head/databases/xapian-bindings12/pkg-plist Modified: head/databases/xapian-bindings12/Makefile ============================================================================== --- head/databases/xapian-bindings12/Makefile Sat Jun 22 21:48:44 2019 (r504896) +++ head/databases/xapian-bindings12/Makefile Sat Jun 22 21:48:49 2019 (r504897) @@ -15,26 +15,22 @@ COMMENT= Bindings allowing Xapian to be used from vari LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -BROKEN_RUBY25= yes - LIB_DEPENDS= libxapian.so:databases/xapian-core12 CONFLICTS= xapian-bindings -OPTIONS_DEFINE= DOCS LUA PYTHON RUBY -OPTIONS_DEFAULT=PYTHON RUBY +OPTIONS_DEFINE= DOCS LUA PYTHON +OPTIONS_DEFAULT=PYTHON OPTIONS_SUB= yes -# BROKEN: ruby.h: error: wrong number of arguments specified for 'deprecated' attribute -OPTIONS_EXCLUDE_powerpc64= RUBY - PORTSCOUT= limitw:1,even +USES= libtool tar:xz + CONFIGURE_ARGS= --datarootdir=${DATADIR} --docdir=${DOCSDIR} \ - --without-csharp --without-java --without-perl --without-tcl + --without-csharp --without-java --without-perl --without-ruby --without-tcl GNU_CONFIGURE= yes INSTALL_TARGET= install-strip -USES= libtool tar:xz PORTDOCS= * @@ -44,12 +40,8 @@ LUA_USES= lua PYTHON_CONFIGURE_ENV= PYTHON_LIB=${PYTHON_SITELIBDIR} PYTHON_CONFIGURE_WITH= python PYTHON_USES= python:2.7 -RUBY_CONFIGURE_WITH= ruby -RUBY_USE= RUBY=yes post-patch: @${REINPLACE_CMD} -e 's|-lstdc++||g' ${WRKSRC}/configure -# do not install rdoc - @${REINPLACE_CMD} -e '/^install-data-am:/ s|install-data-local||' ${WRKSRC}/ruby/Makefile.in .include Modified: head/databases/xapian-bindings12/pkg-plist ============================================================================== --- head/databases/xapian-bindings12/pkg-plist Sat Jun 22 21:48:44 2019 (r504896) +++ head/databases/xapian-bindings12/pkg-plist Sat Jun 22 21:48:49 2019 (r504897) @@ -3,5 +3,3 @@ %%PYTHON%%%%PYTHON_SITELIBDIR%%/xapian/__init__.pyc %%PYTHON%%%%PYTHON_SITELIBDIR%%/xapian/__init__.pyo %%PYTHON%%%%PYTHON_SITELIBDIR%%/xapian/_xapian.so -%%RUBY%%%%RUBY_SITELIBDIR%%/xapian.rb -%%RUBY%%%%RUBY_SITEARCHLIBDIR%%/_xapian.so From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:01 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA9FD15B995E; Sat, 22 Jun 2019 21:49:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 67FC18DA53; Sat, 22 Jun 2019 21:49:00 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id DD64B18825; Sat, 22 Jun 2019 21:48:55 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLmtFt077745; Sat, 22 Jun 2019 21:48:55 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLmt7C077744; Sat, 22 Jun 2019 21:48:55 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222148.x5MLmt7C077744@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:48:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504898 - head/devel/rubygem-aws-sdk X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk X-SVN-Commit-Revision: 504898 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 67FC18DA53 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:01 -0000 Author: sunpoet Date: Sat Jun 22 21:48:55 2019 New Revision: 504898 URL: https://svnweb.freebsd.org/changeset/ports/504898 Log: Update to 2.11.299 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk/Makefile head/devel/rubygem-aws-sdk/distinfo Modified: head/devel/rubygem-aws-sdk/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk/Makefile Sat Jun 22 21:48:49 2019 (r504897) +++ head/devel/rubygem-aws-sdk/Makefile Sat Jun 22 21:48:55 2019 (r504898) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk -DISTVERSION= 2.11.298 +DISTVERSION= 2.11.299 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk/distinfo Sat Jun 22 21:48:49 2019 (r504897) +++ head/devel/rubygem-aws-sdk/distinfo Sat Jun 22 21:48:55 2019 (r504898) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561147711 -SHA256 (rubygem/aws-sdk-2.11.298.gem) = 546647591bc6b5cb6c6318b33939c3a6cc1277d22844304ad73824b0cffbca47 -SIZE (rubygem/aws-sdk-2.11.298.gem) = 4608 +TIMESTAMP = 1561199704 +SHA256 (rubygem/aws-sdk-2.11.299.gem) = 30cd307d802cadf30ce06930e093f8d768c66c77ad5af6f861522f6b778adbfe +SIZE (rubygem/aws-sdk-2.11.299.gem) = 4608 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:05 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B63615B9988; Sat, 22 Jun 2019 21:49:05 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E20BA8DACE; Sat, 22 Jun 2019 21:49:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3BDD718826; Sat, 22 Jun 2019 21:49:01 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLn1IC077876; Sat, 22 Jun 2019 21:49:01 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLn0EF077874; Sat, 22 Jun 2019 21:49:00 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLn0EF077874@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504899 - head/devel/rubygem-aws-sdk-core X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk-core X-SVN-Commit-Revision: 504899 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E20BA8DACE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:05 -0000 Author: sunpoet Date: Sat Jun 22 21:49:00 2019 New Revision: 504899 URL: https://svnweb.freebsd.org/changeset/ports/504899 Log: Update to 2.11.299 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk-core/Makefile head/devel/rubygem-aws-sdk-core/distinfo Modified: head/devel/rubygem-aws-sdk-core/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-core/Makefile Sat Jun 22 21:48:55 2019 (r504898) +++ head/devel/rubygem-aws-sdk-core/Makefile Sat Jun 22 21:49:00 2019 (r504899) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-core -DISTVERSION= 2.11.298 +DISTVERSION= 2.11.299 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-core/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-core/distinfo Sat Jun 22 21:48:55 2019 (r504898) +++ head/devel/rubygem-aws-sdk-core/distinfo Sat Jun 22 21:49:00 2019 (r504899) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561147714 -SHA256 (rubygem/aws-sdk-core-2.11.298.gem) = 5568efe853719b205d87864ad020db7b149a50ba9f08f09feccb3fc5686e1883 -SIZE (rubygem/aws-sdk-core-2.11.298.gem) = 1604608 +TIMESTAMP = 1561199706 +SHA256 (rubygem/aws-sdk-core-2.11.299.gem) = 59432352ac82a7f1fec1344de922be5cc2103682b6c89dccf8848dad5b8f5b9f +SIZE (rubygem/aws-sdk-core-2.11.299.gem) = 1606144 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6DF2115B99BE; Sat, 22 Jun 2019 21:49:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 058C38DBB0; Sat, 22 Jun 2019 21:49:13 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 8F82418827; Sat, 22 Jun 2019 21:49:06 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLn6Om078001; Sat, 22 Jun 2019 21:49:06 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLn6Yg077999; Sat, 22 Jun 2019 21:49:06 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLn6Yg077999@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504900 - head/devel/rubygem-aws-sdk-resources X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-aws-sdk-resources X-SVN-Commit-Revision: 504900 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 058C38DBB0 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:13 -0000 Author: sunpoet Date: Sat Jun 22 21:49:05 2019 New Revision: 504900 URL: https://svnweb.freebsd.org/changeset/ports/504900 Log: Update to 2.11.299 Changes: https://github.com/aws/aws-sdk-ruby/releases Modified: head/devel/rubygem-aws-sdk-resources/Makefile head/devel/rubygem-aws-sdk-resources/distinfo Modified: head/devel/rubygem-aws-sdk-resources/Makefile ============================================================================== --- head/devel/rubygem-aws-sdk-resources/Makefile Sat Jun 22 21:49:00 2019 (r504899) +++ head/devel/rubygem-aws-sdk-resources/Makefile Sat Jun 22 21:49:05 2019 (r504900) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= aws-sdk-resources -DISTVERSION= 2.11.298 +DISTVERSION= 2.11.299 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-aws-sdk-resources/distinfo ============================================================================== --- head/devel/rubygem-aws-sdk-resources/distinfo Sat Jun 22 21:49:00 2019 (r504899) +++ head/devel/rubygem-aws-sdk-resources/distinfo Sat Jun 22 21:49:05 2019 (r504900) @@ -1,3 +1,3 @@ -TIMESTAMP = 1561147715 -SHA256 (rubygem/aws-sdk-resources-2.11.298.gem) = bfc89f3b3838f0cff8b18572ba065c0844f573e111e4c470ef7f5d13b27e9010 -SIZE (rubygem/aws-sdk-resources-2.11.298.gem) = 48640 +TIMESTAMP = 1561199708 +SHA256 (rubygem/aws-sdk-resources-2.11.299.gem) = b10a598855fd8f606d8fd944cad0af34cb22c4dbac6b56554124ca8abd75c262 +SIZE (rubygem/aws-sdk-resources-2.11.299.gem) = 48640 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E94F215B99DA; Sat, 22 Jun 2019 21:49:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8B1848DC0E; Sat, 22 Jun 2019 21:49:16 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EB5CA18828; Sat, 22 Jun 2019 21:49:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLnBO1078126; Sat, 22 Jun 2019 21:49:11 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLnBA7078124; Sat, 22 Jun 2019 21:49:11 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLnBA7078124@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504901 - head/devel/rubygem-devise X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-devise X-SVN-Commit-Revision: 504901 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8B1848DC0E X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:17 -0000 Author: sunpoet Date: Sat Jun 22 21:49:11 2019 New Revision: 504901 URL: https://svnweb.freebsd.org/changeset/ports/504901 Log: Update to 4.6.2 - Change from Rails 4.2 to Rails 5.0 - Take maintainership Changes: https://github.com/plataformatec/devise/blob/master/CHANGELOG.md Modified: head/devel/rubygem-devise/Makefile head/devel/rubygem-devise/distinfo Modified: head/devel/rubygem-devise/Makefile ============================================================================== --- head/devel/rubygem-devise/Makefile Sat Jun 22 21:49:05 2019 (r504900) +++ head/devel/rubygem-devise/Makefile Sat Jun 22 21:49:11 2019 (r504901) @@ -2,11 +2,11 @@ # $FreeBSD$ PORTNAME= devise -PORTVERSION= 4.5.0 +PORTVERSION= 4.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Flexible authentication solution for Rails with Warden LICENSE= MIT @@ -14,13 +14,14 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-bcrypt>=3.0:security/rubygem-bcrypt \ rubygem-orm_adapter>=0.1:devel/rubygem-orm_adapter \ - rubygem-railties4>=4.1.0:www/rubygem-railties4 \ + rubygem-railties50>=4.1.0:www/rubygem-railties50 \ rubygem-responders>=0:www/rubygem-responders \ rubygem-warden>=1.2.3:devel/rubygem-warden -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes post-patch: @${REINPLACE_CMD} -e 's|, "test/rails_app/config/routes.rb"||' ${WRKSRC}/${PORTNAME}.gemspec Modified: head/devel/rubygem-devise/distinfo ============================================================================== --- head/devel/rubygem-devise/distinfo Sat Jun 22 21:49:05 2019 (r504900) +++ head/devel/rubygem-devise/distinfo Sat Jun 22 21:49:11 2019 (r504901) @@ -1,3 +1,3 @@ -TIMESTAMP = 1534456694 -SHA256 (rubygem/devise-4.5.0.gem) = 5db2fd482b7f9df8eded2cdfe91fa9eba3cd5e377cc1a34c850f994257b448ef -SIZE (rubygem/devise-4.5.0.gem) = 174592 +TIMESTAMP = 1561199710 +SHA256 (rubygem/devise-4.6.2.gem) = 8e4d99335393140debd6c9aee96d949217d2a6dd1552a191a566395c83b96211 +SIZE (rubygem/devise-4.6.2.gem) = 88064 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:20 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A6D715B9A06; Sat, 22 Jun 2019 21:49:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1C82F8DC81; Sat, 22 Jun 2019 21:49:20 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id AEB3218829; Sat, 22 Jun 2019 21:49:17 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLnHjj078251; Sat, 22 Jun 2019 21:49:17 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLnHkQ078249; Sat, 22 Jun 2019 21:49:17 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLnHkQ078249@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504902 - head/devel/rubygem-devise-rails5 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-devise-rails5 X-SVN-Commit-Revision: 504902 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1C82F8DC81 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:20 -0000 Author: sunpoet Date: Sat Jun 22 21:49:17 2019 New Revision: 504902 URL: https://svnweb.freebsd.org/changeset/ports/504902 Log: Update to 4.6.2 - Take maintainership Changes: https://github.com/plataformatec/devise/blob/master/CHANGELOG.md Modified: head/devel/rubygem-devise-rails5/Makefile head/devel/rubygem-devise-rails5/distinfo Modified: head/devel/rubygem-devise-rails5/Makefile ============================================================================== --- head/devel/rubygem-devise-rails5/Makefile Sat Jun 22 21:49:11 2019 (r504901) +++ head/devel/rubygem-devise-rails5/Makefile Sat Jun 22 21:49:17 2019 (r504902) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= devise -PORTVERSION= 4.5.0 +PORTVERSION= 4.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Flexible authentication solution for Rails with Warden LICENSE= MIT @@ -19,9 +19,10 @@ RUN_DEPENDS= rubygem-bcrypt>=3.0:security/rubygem-bcry rubygem-responders-rails5>=0:www/rubygem-responders-rails5 \ rubygem-warden>=1.2.3:devel/rubygem-warden -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes post-patch: @${REINPLACE_CMD} -e 's|, "test/rails_app/config/routes.rb"||' ${WRKSRC}/${PORTNAME}.gemspec Modified: head/devel/rubygem-devise-rails5/distinfo ============================================================================== --- head/devel/rubygem-devise-rails5/distinfo Sat Jun 22 21:49:11 2019 (r504901) +++ head/devel/rubygem-devise-rails5/distinfo Sat Jun 22 21:49:17 2019 (r504902) @@ -1,3 +1,3 @@ -TIMESTAMP = 1534456694 -SHA256 (rubygem/devise-4.5.0.gem) = 5db2fd482b7f9df8eded2cdfe91fa9eba3cd5e377cc1a34c850f994257b448ef -SIZE (rubygem/devise-4.5.0.gem) = 174592 +TIMESTAMP = 1561199710 +SHA256 (rubygem/devise-4.6.2.gem) = 8e4d99335393140debd6c9aee96d949217d2a6dd1552a191a566395c83b96211 +SIZE (rubygem/devise-4.6.2.gem) = 88064 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:25 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 79E3015B9A32; Sat, 22 Jun 2019 21:49:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1B9078DD17; Sat, 22 Jun 2019 21:49:25 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3D16D1882A; Sat, 22 Jun 2019 21:49:23 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLnNvI078360; Sat, 22 Jun 2019 21:49:23 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLnNlC078359; Sat, 22 Jun 2019 21:49:23 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLnNlC078359@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504903 - head/devel/rubygem-devise-rails50 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-devise-rails50 X-SVN-Commit-Revision: 504903 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 1B9078DD17 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:25 -0000 Author: sunpoet Date: Sat Jun 22 21:49:22 2019 New Revision: 504903 URL: https://svnweb.freebsd.org/changeset/ports/504903 Log: Mark DEPRECATED and set EXPIRATION_DATE to 2019-06-30 Modified: head/devel/rubygem-devise-rails50/Makefile Modified: head/devel/rubygem-devise-rails50/Makefile ============================================================================== --- head/devel/rubygem-devise-rails50/Makefile Sat Jun 22 21:49:17 2019 (r504902) +++ head/devel/rubygem-devise-rails50/Makefile Sat Jun 22 21:49:22 2019 (r504903) @@ -13,6 +13,9 @@ COMMENT= Flexible authentication solution for Rails wi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE +DEPRECATED= Use devel/rubygem-devise (depends on Rails 5.0) instead +EXPIRATION_DATE=2019-06-30 + RUN_DEPENDS= rubygem-bcrypt>=3.0:security/rubygem-bcrypt \ rubygem-orm_adapter>=0.1:devel/rubygem-orm_adapter \ rubygem-railties50>=4.1.0:www/rubygem-railties50 \ From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:30 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EDEAB15B9A6D; Sat, 22 Jun 2019 21:49:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 470818DD8A; Sat, 22 Jun 2019 21:49:29 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1621E1882B; Sat, 22 Jun 2019 21:49:28 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLnRKc078469; Sat, 22 Jun 2019 21:49:27 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLnRBX078468; Sat, 22 Jun 2019 21:49:27 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLnRBX078468@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504904 - head/security/rubygem-devise-two-factor X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/rubygem-devise-two-factor X-SVN-Commit-Revision: 504904 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 470818DD8A X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:30 -0000 Author: sunpoet Date: Sat Jun 22 21:49:27 2019 New Revision: 504904 URL: https://svnweb.freebsd.org/changeset/ports/504904 Log: Change from Rails 4.2 to Rails 5.0 - Bump PORTREVISION for dependency change - Take maintainership Modified: head/security/rubygem-devise-two-factor/Makefile Modified: head/security/rubygem-devise-two-factor/Makefile ============================================================================== --- head/security/rubygem-devise-two-factor/Makefile Sat Jun 22 21:49:22 2019 (r504903) +++ head/security/rubygem-devise-two-factor/Makefile Sat Jun 22 21:49:27 2019 (r504904) @@ -3,23 +3,25 @@ PORTNAME= devise-two-factor PORTVERSION= 3.0.3 +PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Barebones two-factor authentication with Devise LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -RUN_DEPENDS= rubygem-activesupport4>=0:devel/rubygem-activesupport4 \ +RUN_DEPENDS= rubygem-activesupport50>=0:devel/rubygem-activesupport50 \ rubygem-attr_encrypted>=1.3:security/rubygem-attr_encrypted \ rubygem-devise>=4.0:devel/rubygem-devise \ - rubygem-railties4>=0:www/rubygem-railties4 \ + rubygem-railties50>=0:www/rubygem-railties50 \ rubygem-rotp>=2.0:devel/rubygem-rotp -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes .include From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:37 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 80A0015B9AB4; Sat, 22 Jun 2019 21:49:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 274E18DE66; Sat, 22 Jun 2019 21:49:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 344F31882C; Sat, 22 Jun 2019 21:49:33 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLnXHZ078575; Sat, 22 Jun 2019 21:49:33 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLnX3k078574; Sat, 22 Jun 2019 21:49:33 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLnX3k078574@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504905 - head/security/rubygem-devise-two-factor-rails5 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/rubygem-devise-two-factor-rails5 X-SVN-Commit-Revision: 504905 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 274E18DE66 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:37 -0000 Author: sunpoet Date: Sat Jun 22 21:49:32 2019 New Revision: 504905 URL: https://svnweb.freebsd.org/changeset/ports/504905 Log: Take maintainership Modified: head/security/rubygem-devise-two-factor-rails5/Makefile Modified: head/security/rubygem-devise-two-factor-rails5/Makefile ============================================================================== --- head/security/rubygem-devise-two-factor-rails5/Makefile Sat Jun 22 21:49:27 2019 (r504904) +++ head/security/rubygem-devise-two-factor-rails5/Makefile Sat Jun 22 21:49:32 2019 (r504905) @@ -7,7 +7,7 @@ CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Barebones two-factor authentication with Devise LICENSE= MIT @@ -15,12 +15,13 @@ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport5>=0:devel/rubygem-activesupport5 \ rubygem-attr_encrypted>=1.3:security/rubygem-attr_encrypted \ - rubygem-devise-rails5>0:devel/rubygem-devise-rails5 \ + rubygem-devise-rails5>=4.0:devel/rubygem-devise-rails5 \ rubygem-railties5>=0:www/rubygem-railties5 \ rubygem-rotp>=2.0:devel/rubygem-rotp -NO_ARCH= yes -USE_RUBY= yes USES= gem +USE_RUBY= yes + +NO_ARCH= yes .include From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:43 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0F1C515B9B15; Sat, 22 Jun 2019 21:49:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5C85B8DF03; Sat, 22 Jun 2019 21:49:42 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E96861882D; Sat, 22 Jun 2019 21:49:37 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLnbE0078684; Sat, 22 Jun 2019 21:49:37 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLnbH6078683; Sat, 22 Jun 2019 21:49:37 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLnbH6078683@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504906 - head/security/rubygem-devise-two-factor-rails50 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/security/rubygem-devise-two-factor-rails50 X-SVN-Commit-Revision: 504906 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5C85B8DF03 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:43 -0000 Author: sunpoet Date: Sat Jun 22 21:49:37 2019 New Revision: 504906 URL: https://svnweb.freebsd.org/changeset/ports/504906 Log: Mark DEPRECATED and set EXPIRATION_DATE to 2019-06-30 Modified: head/security/rubygem-devise-two-factor-rails50/Makefile Modified: head/security/rubygem-devise-two-factor-rails50/Makefile ============================================================================== --- head/security/rubygem-devise-two-factor-rails50/Makefile Sat Jun 22 21:49:32 2019 (r504905) +++ head/security/rubygem-devise-two-factor-rails50/Makefile Sat Jun 22 21:49:37 2019 (r504906) @@ -13,6 +13,9 @@ COMMENT= Barebones two-factor authentication with Devi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE +DEPRECATED= Use security/rubygem-devise-two-factor (depends on Rails 5.0) instead +EXPIRATION_DATE=2019-06-30 + RUN_DEPENDS= rubygem-activesupport50>=0:devel/rubygem-activesupport50 \ rubygem-attr_encrypted>=1.3:security/rubygem-attr_encrypted \ rubygem-devise-rails50>0:devel/rubygem-devise-rails50 \ From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:48 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2213B15B9B44; Sat, 22 Jun 2019 21:49:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49F288DF95; Sat, 22 Jun 2019 21:49:47 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3E50D1882E; Sat, 22 Jun 2019 21:49:43 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLnh5X078810; Sat, 22 Jun 2019 21:49:43 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLngdI078808; Sat, 22 Jun 2019 21:49:42 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLngdI078808@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504907 - head/devel/rubygem-fugit X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/devel/rubygem-fugit X-SVN-Commit-Revision: 504907 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 49F288DF95 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:48 -0000 Author: sunpoet Date: Sat Jun 22 21:49:42 2019 New Revision: 504907 URL: https://svnweb.freebsd.org/changeset/ports/504907 Log: Update to 1.2.2 Changes: https://github.com/floraison/fugit/blob/master/CHANGELOG.md Modified: head/devel/rubygem-fugit/Makefile head/devel/rubygem-fugit/distinfo Modified: head/devel/rubygem-fugit/Makefile ============================================================================== --- head/devel/rubygem-fugit/Makefile Sat Jun 22 21:49:37 2019 (r504906) +++ head/devel/rubygem-fugit/Makefile Sat Jun 22 21:49:42 2019 (r504907) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= fugit -PORTVERSION= 1.2.1 +PORTVERSION= 1.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG Modified: head/devel/rubygem-fugit/distinfo ============================================================================== --- head/devel/rubygem-fugit/distinfo Sat Jun 22 21:49:37 2019 (r504906) +++ head/devel/rubygem-fugit/distinfo Sat Jun 22 21:49:42 2019 (r504907) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558782926 -SHA256 (rubygem/fugit-1.2.1.gem) = 5bb17ccee9534a869500b72c6aa1ec5446141ef736423374b9a097436118b0f4 -SIZE (rubygem/fugit-1.2.1.gem) = 20480 +TIMESTAMP = 1561199712 +SHA256 (rubygem/fugit-1.2.2.gem) = f310d49b83bf1f99e0d7910b4658718a99fd5369b6143e93835c2a8fe0f28f5a +SIZE (rubygem/fugit-1.2.2.gem) = 20480 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:53 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id AE59715B9BAA; Sat, 22 Jun 2019 21:49:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3DD5A8E048; Sat, 22 Jun 2019 21:49:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3B8171882F; Sat, 22 Jun 2019 21:49:48 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLnmjt078929; Sat, 22 Jun 2019 21:49:48 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLnmH9078928; Sat, 22 Jun 2019 21:49:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLnmH9078928@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504908 - in head/devel/rubygem-xdg: . files X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel/rubygem-xdg: . files X-SVN-Commit-Revision: 504908 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3DD5A8E048 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:53 -0000 Author: sunpoet Date: Sat Jun 22 21:49:47 2019 New Revision: 504908 URL: https://svnweb.freebsd.org/changeset/ports/504908 Log: Mark BROKEN with Ruby 2.4 and 2.5 This port requires Ruby 2.6.3+. Deleted: head/devel/rubygem-xdg/files/ Modified: head/devel/rubygem-xdg/Makefile Modified: head/devel/rubygem-xdg/Makefile ============================================================================== --- head/devel/rubygem-xdg/Makefile Sat Jun 22 21:49:42 2019 (r504907) +++ head/devel/rubygem-xdg/Makefile Sat Jun 22 21:49:47 2019 (r504908) @@ -12,6 +12,9 @@ COMMENT= XDG Base Directory Standard Library for Ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md +BROKEN_RUBY24= yes +BROKEN_RUBY25= yes + USES= gem USE_RUBY= yes From owner-svn-ports-all@freebsd.org Sat Jun 22 21:49:57 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A157415B9BEA; Sat, 22 Jun 2019 21:49:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4032C8E0B7; Sat, 22 Jun 2019 21:49:57 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 57EF918830; Sat, 22 Jun 2019 21:49:53 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLnrQA079054; Sat, 22 Jun 2019 21:49:53 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLnrtZ079052; Sat, 22 Jun 2019 21:49:53 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLnrtZ079052@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504909 - head/www/rubygem-responders X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/rubygem-responders X-SVN-Commit-Revision: 504909 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4032C8E0B7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:49:57 -0000 Author: sunpoet Date: Sat Jun 22 21:49:52 2019 New Revision: 504909 URL: https://svnweb.freebsd.org/changeset/ports/504909 Log: Update to 3.0.0 - Change from Rails 4.2 to Rails 5.0 Changes: https://github.com/plataformatec/responders/blob/master/CHANGELOG.md Modified: head/www/rubygem-responders/Makefile head/www/rubygem-responders/distinfo Modified: head/www/rubygem-responders/Makefile ============================================================================== --- head/www/rubygem-responders/Makefile Sat Jun 22 21:49:47 2019 (r504908) +++ head/www/rubygem-responders/Makefile Sat Jun 22 21:49:52 2019 (r504909) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= responders -PORTVERSION= 2.4.1 +PORTVERSION= 3.0.0 CATEGORIES= www rubygems MASTER_SITES= RG @@ -12,8 +12,8 @@ COMMENT= Simple Ruby DSL for making HTTP requests LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE -RUN_DEPENDS= rubygem-actionpack4>=4.2.0:www/rubygem-actionpack4 \ - rubygem-railties4>=4.2.0:www/rubygem-railties4 +RUN_DEPENDS= rubygem-actionpack50>=5.0:www/rubygem-actionpack50 \ + rubygem-railties50>=5.0:www/rubygem-railties50 USES= gem USE_RUBY= yes Modified: head/www/rubygem-responders/distinfo ============================================================================== --- head/www/rubygem-responders/distinfo Sat Jun 22 21:49:47 2019 (r504908) +++ head/www/rubygem-responders/distinfo Sat Jun 22 21:49:52 2019 (r504909) @@ -1,3 +1,3 @@ -TIMESTAMP = 1548164829 -SHA256 (rubygem/responders-2.4.1.gem) = 15cf41657745c5e38b22d50acadb6ecbbcbfb72f2a761e4ddb6488c37c5c98a2 -SIZE (rubygem/responders-2.4.1.gem) = 19456 +TIMESTAMP = 1561199714 +SHA256 (rubygem/responders-3.0.0.gem) = a267b281582802d04cf0968dbc7d60df0d48384915934b3bf9018f811dc3f7dc +SIZE (rubygem/responders-3.0.0.gem) = 19456 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:50:04 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C84EA15B9C4A; Sat, 22 Jun 2019 21:50:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5CA048E182; Sat, 22 Jun 2019 21:50:04 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 2609518831; Sat, 22 Jun 2019 21:49:58 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLnwFS079160; Sat, 22 Jun 2019 21:49:58 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLnwhI079159; Sat, 22 Jun 2019 21:49:58 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222149.x5MLnwhI079159@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:49:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504910 - head/www/rubygem-responders-rails5 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/rubygem-responders-rails5 X-SVN-Commit-Revision: 504910 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5CA048E182 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:50:05 -0000 Author: sunpoet Date: Sat Jun 22 21:49:57 2019 New Revision: 504910 URL: https://svnweb.freebsd.org/changeset/ports/504910 Log: Take maintainership Modified: head/www/rubygem-responders-rails5/Makefile Modified: head/www/rubygem-responders-rails5/Makefile ============================================================================== --- head/www/rubygem-responders-rails5/Makefile Sat Jun 22 21:49:52 2019 (r504909) +++ head/www/rubygem-responders-rails5/Makefile Sat Jun 22 21:49:57 2019 (r504910) @@ -7,7 +7,7 @@ CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 -MAINTAINER= ruby@FreeBSD.org +MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple Ruby DSL for making HTTP requests LICENSE= MIT From owner-svn-ports-all@freebsd.org Sat Jun 22 21:50:07 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BAABE15B9C6A; Sat, 22 Jun 2019 21:50:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 55AE88E1CA; Sat, 22 Jun 2019 21:50:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E3A6218835; Sat, 22 Jun 2019 21:50:02 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLo29w079301; Sat, 22 Jun 2019 21:50:02 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLo2cI079300; Sat, 22 Jun 2019 21:50:02 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222150.x5MLo2cI079300@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:50:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504911 - head/www/rubygem-responders-rails50 X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/rubygem-responders-rails50 X-SVN-Commit-Revision: 504911 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 55AE88E1CA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:50:07 -0000 Author: sunpoet Date: Sat Jun 22 21:50:02 2019 New Revision: 504911 URL: https://svnweb.freebsd.org/changeset/ports/504911 Log: Mark DEPRECATED and set EXPIRATION_DATE to 2019-06-30 Modified: head/www/rubygem-responders-rails50/Makefile Modified: head/www/rubygem-responders-rails50/Makefile ============================================================================== --- head/www/rubygem-responders-rails50/Makefile Sat Jun 22 21:49:57 2019 (r504910) +++ head/www/rubygem-responders-rails50/Makefile Sat Jun 22 21:50:02 2019 (r504911) @@ -13,6 +13,9 @@ COMMENT= Simple Ruby DSL for making HTTP requests LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE +DEPRECATED= Use www/rubygem-responders (depends on Rails 5.0) instead +EXPIRATION_DATE=2019-06-30 + RUN_DEPENDS= rubygem-actionpack50>=4.2.0:www/rubygem-actionpack50 \ rubygem-railties50>=4.2.0:www/rubygem-railties50 From owner-svn-ports-all@freebsd.org Sat Jun 22 21:50:11 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 763DF15B9C98; Sat, 22 Jun 2019 21:50:11 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id EAE5B8E237; Sat, 22 Jun 2019 21:50:10 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F310418836; Sat, 22 Jun 2019 21:50:07 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MLo72P079426; Sat, 22 Jun 2019 21:50:07 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MLo7LH079425; Sat, 22 Jun 2019 21:50:07 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201906222150.x5MLo7LH079425@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 22 Jun 2019 21:50:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504912 - head/science/p5-Geo-WebService-Elevation-USGS X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/science/p5-Geo-WebService-Elevation-USGS X-SVN-Commit-Revision: 504912 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: EAE5B8E237 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.957,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 21:50:11 -0000 Author: sunpoet Date: Sat Jun 22 21:50:07 2019 New Revision: 504912 URL: https://svnweb.freebsd.org/changeset/ports/504912 Log: Update to 0.113 Changes: https://metacpan.org/changes/distribution/Geo-WebService-Elevation-USGS Modified: head/science/p5-Geo-WebService-Elevation-USGS/Makefile head/science/p5-Geo-WebService-Elevation-USGS/distinfo Modified: head/science/p5-Geo-WebService-Elevation-USGS/Makefile ============================================================================== --- head/science/p5-Geo-WebService-Elevation-USGS/Makefile Sat Jun 22 21:50:02 2019 (r504911) +++ head/science/p5-Geo-WebService-Elevation-USGS/Makefile Sat Jun 22 21:50:07 2019 (r504912) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= Geo-WebService-Elevation-USGS -PORTVERSION= 0.112 +PORTVERSION= 0.113 CATEGORIES= science perl5 MASTER_SITES= CPAN MASTER_SITE_SUBDIR= CPAN:WYANT Modified: head/science/p5-Geo-WebService-Elevation-USGS/distinfo ============================================================================== --- head/science/p5-Geo-WebService-Elevation-USGS/distinfo Sat Jun 22 21:50:02 2019 (r504911) +++ head/science/p5-Geo-WebService-Elevation-USGS/distinfo Sat Jun 22 21:50:07 2019 (r504912) @@ -1,3 +1,3 @@ -TIMESTAMP = 1555702440 -SHA256 (Geo-WebService-Elevation-USGS-0.112.tar.gz) = 2644447819f950fbb0a107da780176a8d6fd4371d79d32fe2b6ae800176959b9 -SIZE (Geo-WebService-Elevation-USGS-0.112.tar.gz) = 42963 +TIMESTAMP = 1561199716 +SHA256 (Geo-WebService-Elevation-USGS-0.113.tar.gz) = 3f7f193696537f5e14c03f48af20d42bf4419c04e67d0630c591d3f31b69aa80 +SIZE (Geo-WebService-Elevation-USGS-0.113.tar.gz) = 42996 From owner-svn-ports-all@freebsd.org Sat Jun 22 22:05:13 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D638615BB196; Sat, 22 Jun 2019 22:05:12 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7E75C8EECA; Sat, 22 Jun 2019 22:05:12 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5812B18B88; Sat, 22 Jun 2019 22:05:12 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MM5Cxd089507; Sat, 22 Jun 2019 22:05:12 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MM5Cei089505; Sat, 22 Jun 2019 22:05:12 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201906222205.x5MM5Cei089505@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sat, 22 Jun 2019 22:05:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504913 - head/security/keepassxc X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/security/keepassxc X-SVN-Commit-Revision: 504913 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 7E75C8EECA X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.958,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 22:05:13 -0000 Author: tobik Date: Sat Jun 22 22:05:11 2019 New Revision: 504913 URL: https://svnweb.freebsd.org/changeset/ports/504913 Log: security/keepassxc: Update to 2.4.3 - Drop patch and workarounds and use the fixes I sent upstream instead - Remove no longer needed libcurl dependency - Disable useless update check. Upstream also recommends to do this for OS packages. - Enable YUBIKEY option by default Changes: https://github.com/keepassxreboot/keepassxc/releases PR: 238756 Submitted by: tobik Approved by: melanhit@gmail.com (maintainer) Modified: head/security/keepassxc/Makefile head/security/keepassxc/distinfo Modified: head/security/keepassxc/Makefile ============================================================================== --- head/security/keepassxc/Makefile Sat Jun 22 21:50:07 2019 (r504912) +++ head/security/keepassxc/Makefile Sat Jun 22 22:05:11 2019 (r504913) @@ -1,11 +1,13 @@ # $FreeBSD$ PORTNAME= keepassxc -DISTVERSION= 2.4.1 -PORTREVISION= 1 +DISTVERSION= 2.4.3 CATEGORIES= security MASTER_SITES= https://github.com/keepassxreboot/keepassxc/releases/download/${DISTVERSION}/${PORTNAME}-${DISTVERSION}-src.tar.xz?dummy=/ +PATCH_SITES= https://github.com/keepassxreboot/keepassxc/commit/ +PATCHFILES= ef3c2daef142cc4dc60ec779d1019d50ed679a99.patch:-p1 + MAINTAINER= melanhit@gmail.com COMMENT= KeePass Cross-platform Community Edition @@ -20,10 +22,10 @@ LICENSE_PERMS_BOOST-1.0= dist-mirror dist-sell pkg-mi LICENSE_PERMS_NOKIA-LGPL-EXCEPTION= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept LIB_DEPENDS= libargon2.so:security/libargon2 \ - libcurl.so:ftp/curl \ libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error \ - libqrencode.so:graphics/libqrencode + libqrencode.so:graphics/libqrencode \ + libsodium.so:security/libsodium USES= cmake compiler:c++11-lang desktop-file-utils qt:5 \ shared-mime-info tar:xz @@ -32,14 +34,12 @@ USE_QT= buildtools_build concurrent core dbus gui lin USE_XORG= x11 USE_LDCONFIG= yes -# patching CMakeLists.txt does not help because that is being overided by -# cmake/GNUInstallDirs.cmake -CMAKE_ARGS+= -DCMAKE_INSTALL_MANDIR=${PREFIX}/man +CMAKE_OFF= WITH_XC_UPDATECHECK CONFLICTS_INSTALL= keepassx-0.* keepassx2-* keepassx-* OPTIONS_DEFINE= AUTOTYPE BROWSER KEESHARE NETWORKING YUBIKEY SSHAGENT TEST -OPTIONS_DEFAULT= AUTOTYPE BROWSER KEESHARE NETWORKING SSHAGENT +OPTIONS_DEFAULT= AUTOTYPE BROWSER KEESHARE NETWORKING SSHAGENT YUBIKEY OPTIONS_SUB= yes AUTOTYPE_CMAKE_BOOL= WITH_XC_AUTOTYPE @@ -48,7 +48,6 @@ AUTOTYPE_USE= QT=x11extras XORG=xi,xtst BROWSER_CMAKE_BOOL= WITH_XC_BROWSER BROWSER_DESC= Browser integration with KeePassXC-Browser -BROWSER_LIB_DEPENDS= libsodium.so:security/libsodium KEESHARE_CMAKE_BOOL= WITH_XC_KEESHARE WITH_XC_KEESHARE_SECURE KEESHARE_DESC= Sharing integration with KeeShare @@ -68,9 +67,5 @@ YUBIKEY_LIB_DEPENDS= libykpers-1.so:security/ykpers \ TEST_CMAKE_BOOL= WITH_TESTS WITH_GUI_TESTS TEST_TEST_TARGET= test - -post-patch: - @${REINPLACE_CMD} -e 's|Q_OS_LINUX|Q_OS_UNIX|g' \ - ${WRKSRC}/src/browser/HostInstaller.cpp .include Modified: head/security/keepassxc/distinfo ============================================================================== --- head/security/keepassxc/distinfo Sat Jun 22 21:50:07 2019 (r504912) +++ head/security/keepassxc/distinfo Sat Jun 22 22:05:11 2019 (r504913) @@ -1,3 +1,5 @@ -TIMESTAMP = 1556462578 -SHA256 (keepassxc-2.4.1.tar.xz) = 0da97bd1279d1b9b06a63b9f723b43ab8c078b7f1203d6c13504fdd4735489ab -SIZE (keepassxc-2.4.1.tar.xz) = 3277856 +TIMESTAMP = 1561224293 +SHA256 (keepassxc-2.4.3.tar.xz) = d7c952192131047689c3f8fb7275df0e0dfbf2094a554dbbee9a6d6cfa8f2734 +SIZE (keepassxc-2.4.3.tar.xz) = 3301944 +SHA256 (ef3c2daef142cc4dc60ec779d1019d50ed679a99.patch) = d0e5d3dc630ff62e1973115f3552e8b9a417b0175469ce8f0ce947833d937234 +SIZE (ef3c2daef142cc4dc60ec779d1019d50ed679a99.patch) = 11551 From owner-svn-ports-all@freebsd.org Sat Jun 22 22:53:59 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id E89A215BC116; Sat, 22 Jun 2019 22:53:58 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8C1FA69BB9; Sat, 22 Jun 2019 22:53:58 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 5FBDD193BF; Sat, 22 Jun 2019 22:53:58 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MMrw5n015804; Sat, 22 Jun 2019 22:53:58 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MMrvbE015797; Sat, 22 Jun 2019 22:53:57 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201906222253.x5MMrvbE015797@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 22 Jun 2019 22:53:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504914 - in head/devel: . bazel-buildtools X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/devel: . bazel-buildtools X-SVN-Commit-Revision: 504914 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 8C1FA69BB9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 22:53:59 -0000 Author: yuri Date: Sat Jun 22 22:53:57 2019 New Revision: 504914 URL: https://svnweb.freebsd.org/changeset/ports/504914 Log: New port: devel/bazel-buildtools: Bazel BUILD file formatter and editor Added: head/devel/bazel-buildtools/ head/devel/bazel-buildtools/Makefile (contents, props changed) head/devel/bazel-buildtools/distinfo (contents, props changed) head/devel/bazel-buildtools/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Jun 22 22:05:11 2019 (r504913) +++ head/devel/Makefile Sat Jun 22 22:53:57 2019 (r504914) @@ -202,6 +202,7 @@ SUBDIR += bashdb SUBDIR += bats-core SUBDIR += bazel + SUBDIR += bazel-buildtools SUBDIR += bbfreeze SUBDIR += bbfreeze-loader SUBDIR += bcc Added: head/devel/bazel-buildtools/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bazel-buildtools/Makefile Sat Jun 22 22:53:57 2019 (r504914) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= bazel-buildtools +DISTVERSION= 0.26.0 +CATEGORIES= devel + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Bazel BUILD file formatter and editor + +LICENSE= APACHE20 + +USES= go +USE_GITHUB= yes +GH_ACCOUNT= bazelbuild +GH_PROJECT= buildtools +GH_TUPLE= \ + golang:protobuf:v1.3.1:protobuf/vendor/github.com/golang/protobuf \ + google:skylark:a5f7082:skylark/vendor/github.com/google/skylark + +GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT} +GO_TARGET= ${EXES:S/^/${GO_PKGNAME}\//} + +PLIST_FILES= ${EXES:S/^/bin\//} + +EXES= buildifier buildifier2 buildozer unused_deps + +.include Added: head/devel/bazel-buildtools/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bazel-buildtools/distinfo Sat Jun 22 22:53:57 2019 (r504914) @@ -0,0 +1,7 @@ +TIMESTAMP = 1561243668 +SHA256 (bazelbuild-buildtools-0.26.0_GH0.tar.gz) = 86592d703ecbe0c5cbb5139333a63268cf58d7efd2c459c8be8e69e77d135e29 +SIZE (bazelbuild-buildtools-0.26.0_GH0.tar.gz) = 214048 +SHA256 (golang-protobuf-v1.3.1_GH0.tar.gz) = 3f3a6123054a9847093c119895f1660612f301fe95358f3a6a1a33fd0933e6cf +SIZE (golang-protobuf-v1.3.1_GH0.tar.gz) = 310884 +SHA256 (google-skylark-a5f7082_GH0.tar.gz) = afa870e3b20d398c2e377d4dfaf4d43ad198451da047f93c9367c34a6b5cb975 +SIZE (google-skylark-a5f7082_GH0.tar.gz) = 187610 Added: head/devel/bazel-buildtools/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/bazel-buildtools/pkg-descr Sat Jun 22 22:53:57 2019 (r504914) @@ -0,0 +1,6 @@ +This project provides developer tools for working with Google's bazel buildtool: +* buildifier For formatting BUILD, BUILD.bazel and BUCK files in a standard way +* buildozer For doing command-line operations on these files. +* unused_deps For finding unneeded dependencies in java_library rules. + +WWW: https://github.com/bazelbuild/buildtools From owner-svn-ports-all@freebsd.org Sat Jun 22 23:13:17 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA3D715BCDFF; Sat, 22 Jun 2019 23:13:16 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 90E456A9C7; Sat, 22 Jun 2019 23:13:16 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7F35019719; Sat, 22 Jun 2019 23:13:16 +0000 (UTC) (envelope-from zeising@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MNDGeQ026015; Sat, 22 Jun 2019 23:13:16 GMT (envelope-from zeising@FreeBSD.org) Received: (from zeising@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MNDGLt026014; Sat, 22 Jun 2019 23:13:16 GMT (envelope-from zeising@FreeBSD.org) Message-Id: <201906222313.x5MNDGLt026014@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: zeising set sender to zeising@FreeBSD.org using -f From: Niclas Zeising Date: Sat, 22 Jun 2019 23:13:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504915 - head/x11/libXi X-SVN-Group: ports-head X-SVN-Commit-Author: zeising X-SVN-Commit-Paths: head/x11/libXi X-SVN-Commit-Revision: 504915 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 90E456A9C7 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.971,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 23:13:17 -0000 Author: zeising Date: Sat Jun 22 23:13:15 2019 New Revision: 504915 URL: https://svnweb.freebsd.org/changeset/ports/504915 Log: x11/libXi: Update to 1.7.10 This release contains minor fixes and build system improvements. Changelog: https://lists.x.org/archives/xorg-announce/2019-June/002999.html Sponsored by: B3 Init Modified: head/x11/libXi/Makefile head/x11/libXi/distinfo Modified: head/x11/libXi/Makefile ============================================================================== --- head/x11/libXi/Makefile Sat Jun 22 22:53:57 2019 (r504914) +++ head/x11/libXi/Makefile Sat Jun 22 23:13:15 2019 (r504915) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= libXi -PORTVERSION= 1.7.9 -PORTREVISION= 2 +PORTVERSION= 1.7.10 PORTEPOCH= 1 CATEGORIES= x11 Modified: head/x11/libXi/distinfo ============================================================================== --- head/x11/libXi/distinfo Sat Jun 22 22:53:57 2019 (r504914) +++ head/x11/libXi/distinfo Sat Jun 22 23:13:15 2019 (r504915) @@ -1,3 +1,3 @@ -TIMESTAMP = 1485630973 -SHA256 (xorg/lib/libXi-1.7.9.tar.bz2) = c2e6b8ff84f9448386c1b5510a5cf5a16d788f76db018194dacdc200180faf45 -SIZE (xorg/lib/libXi-1.7.9.tar.bz2) = 486312 +TIMESTAMP = 1561244304 +SHA256 (xorg/lib/libXi-1.7.10.tar.bz2) = 36a30d8f6383a72e7ce060298b4b181fd298bc3a135c8e201b7ca847f5f81061 +SIZE (xorg/lib/libXi-1.7.10.tar.bz2) = 484519 From owner-svn-ports-all@freebsd.org Sat Jun 22 23:57:16 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0BF1E15BDAEA; Sat, 22 Jun 2019 23:57:16 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A7F216BBA5; Sat, 22 Jun 2019 23:57:15 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 58C8E19DB2; Sat, 22 Jun 2019 23:57:15 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5MNvFiO047433; Sat, 22 Jun 2019 23:57:15 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5MNvAw2047407; Sat, 22 Jun 2019 23:57:10 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201906222357.x5MNvAw2047407@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 22 Jun 2019 23:57:10 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504916 - in head: devel/kf5-kdeclarative devel/kf5-ki18n devel/kf5-kio devel/kf5-knewstuff devel/kf5-knotifyconfig devel/kf5-kpackage devel/kf5-kparts devel/kf5-ktexteditor lang/kf5-kr... X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head: devel/kf5-kdeclarative devel/kf5-ki18n devel/kf5-kio devel/kf5-knewstuff devel/kf5-knotifyconfig devel/kf5-kpackage devel/kf5-kparts devel/kf5-ktexteditor lang/kf5-kross misc/kf5-purpose mult... X-SVN-Commit-Revision: 504916 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: A7F216BBA5 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.972,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 22 Jun 2019 23:57:16 -0000 Author: tcberner Date: Sat Jun 22 23:57:10 2019 New Revision: 504916 URL: https://svnweb.freebsd.org/changeset/ports/504916 Log: KDE Frameworks: complete dependencies Modified: head/devel/kf5-kdeclarative/Makefile head/devel/kf5-ki18n/Makefile head/devel/kf5-kio/Makefile head/devel/kf5-knewstuff/Makefile head/devel/kf5-knotifyconfig/Makefile head/devel/kf5-kpackage/Makefile head/devel/kf5-kparts/Makefile head/devel/kf5-ktexteditor/Makefile head/lang/kf5-kross/Makefile head/misc/kf5-purpose/Makefile head/multimedia/kf5-kmediaplayer/Makefile head/net/kf5-kholidays/Makefile head/net/kf5-kxmlrpcclient/Makefile head/sysutils/kf5-baloo/Makefile head/www/kf5-kdewebkit/Makefile head/www/kf5-khtml/Makefile head/x11-themes/kf5-kemoticons/Makefile head/x11-toolkits/kf5-kdesignerplugin/Makefile head/x11-toolkits/kf5-ktextwidgets/Makefile head/x11/kf5-frameworkintegration/Makefile head/x11/kf5-kdelibs4support/Makefile head/x11/kf5-kinit/Makefile head/x11/kf5-krunner/Makefile head/x11/kf5-plasma-framework/Makefile Modified: head/devel/kf5-kdeclarative/Makefile ============================================================================== --- head/devel/kf5-kdeclarative/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/devel/kf5-kdeclarative/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kdeclarative DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -14,7 +15,7 @@ USES= cmake compiler:c++11-lib gettext kde:5 pkgconfi USE_KDE= completion config coreaddons globalaccel guiaddons i18n \ iconthemes jobwidgets kio package service widgetsaddons \ windowsystem -USE_QT= buildtools_build core dbus declarative gui network qmake_build \ +USE_QT= buildtools_build concurrent core dbus declarative gui network qmake_build \ testlib widgets xml .include Modified: head/devel/kf5-ki18n/Makefile ============================================================================== --- head/devel/kf5-ki18n/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/devel/kf5-ki18n/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= ki18n DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -10,6 +11,7 @@ COMMENT= KF5 advanced internationalization framework USES= cmake compiler:c++11-lib gettext-runtime \ gettext-tools:build,run kde:5 qt:5 tar:xz USE_KDE= ecm -USE_QT= buildtools_build concurrent core declarative qmake_build script testlib +USE_QT= buildtools_build concurrent core declarative network \ + qmake_build script testlib .include Modified: head/devel/kf5-kio/Makefile ============================================================================== --- head/devel/kf5-kio/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/devel/kf5-kio/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kio DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -11,7 +12,7 @@ USES= cmake compiler:c++11-lib desktop-file-utils \ gettext kde:5 qt:5 ssl tar:xz USE_GNOME= libxml2 libxslt USE_KDE= archive auth bookmarks codecs completion config \ - configwidgets coreaddons dbusaddons doctools ecm \ + configwidgets coreaddons crash dbusaddons doctools ecm \ i18n iconthemes itemviews jobwidgets \ notifications service solid sonnet textwidgets wallet \ widgetsaddons windowsystem xmlgui Modified: head/devel/kf5-knewstuff/Makefile ============================================================================== --- head/devel/kf5-knewstuff/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/devel/kf5-knewstuff/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,7 +2,7 @@ PORTNAME= knewstuff DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -13,7 +13,7 @@ USE_KDE= archive attica5 auth codecs completion config configwidgets coreaddons ecm i18n iconthemes itemviews \ jobwidgets kio kirigami2 service sonnet textwidgets widgetsaddons \ xmlgui -USE_QT= buildtools_build core dbus declarative gui network qmake_build \ - widgets xml +USE_QT= buildtools_build concurrent core dbus declarative gui network \ + qmake_build widgets xml .include Modified: head/devel/kf5-knotifyconfig/Makefile ============================================================================== --- head/devel/kf5-knotifyconfig/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/devel/kf5-knotifyconfig/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,7 +2,7 @@ PORTNAME= knotifyconfig DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -11,7 +11,7 @@ COMMENT= KF5 configuration system for KNotify USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= completion config coreaddons ecm i18n jobwidgets kio \ service widgetsaddons -USE_QT= buildtools_build core dbus gui network phonon4 \ +USE_QT= buildtools_build concurrent core dbus gui network phonon4 \ qmake_build widgets OPTIONS_DEFINE= AUDIO Modified: head/devel/kf5-kpackage/Makefile ============================================================================== --- head/devel/kf5-kpackage/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/devel/kf5-kpackage/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kpackage DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -9,6 +10,6 @@ COMMENT= KF5 library to load and install packages USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons doctools ecm i18n -USE_QT= buildtools_build core qmake_build xml +USE_QT= buildtools_build core dbus qmake_build xml .include Modified: head/devel/kf5-kparts/Makefile ============================================================================== --- head/devel/kf5-kparts/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/devel/kf5-kparts/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kparts DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -11,7 +12,7 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar USE_KDE= auth codecs completion config configwidgets coreaddons \ i18n iconthemes jobwidgets kio notifications service \ sonnet textwidgets widgetsaddons xmlgui -USE_QT= buildtools_build core dbus gui network qmake_build widgets \ - xml +USE_QT= buildtools_build concurrent core dbus gui network \ + qmake_build widgets xml .include Modified: head/devel/kf5-ktexteditor/Makefile ============================================================================== --- head/devel/kf5-ktexteditor/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/devel/kf5-ktexteditor/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= ktexteditor DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -14,7 +15,7 @@ USE_KDE= archive auth codecs completion config configw coreaddons ecm guiaddons i18n iconthemes itemviews \ jobwidgets kio parts service sonnet syntaxhighlighting \ textwidgets widgetsaddons xmlgui -USE_QT= buildtools_build core dbus gui network printsupport \ - qmake_build script widgets xml xmlpatterns +USE_QT= buildtools_build concurrent core dbus declarative gui \ + network printsupport qmake_build script widgets xml xmlpatterns .include Modified: head/lang/kf5-kross/Makefile ============================================================================== --- head/lang/kf5-kross/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/lang/kf5-kross/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kross DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= lang kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -12,7 +13,7 @@ USE_KDE= auth bookmarks codecs completion config confi coreaddons doctools ecm i18n iconthemes itemviews \ jobwidgets kio parts service solid sonnet textwidgets \ widgetsaddons xmlgui -USE_QT= buildtools_build core dbus gui network qmake_build \ +USE_QT= buildtools_build concurrent core dbus gui network qmake_build \ script uiplugin uitools widgets xml .include Modified: head/misc/kf5-purpose/Makefile ============================================================================== --- head/misc/kf5-purpose/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/misc/kf5-purpose/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= purpose DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -13,7 +14,8 @@ LIB_DEPENDS= libaccounts-qt5.so:net-im/libaccounts-qt5 USES= cmake compiler:c++11-lang gettext \ kde:5 pkgconfig qt:5 tar:xz USE_GNOME= intltool -USE_KDE= config coreaddons ecm i18n kdeclarative kio service widgetsaddons +USE_KDE= config completion coreaddons ecm i18n kdeclarative kio \ + notifications jobwidgets service widgetsaddons USE_QT= concurrent core dbus declarative gui network widgets xml \ buildtools_build qmake_build Modified: head/multimedia/kf5-kmediaplayer/Makefile ============================================================================== --- head/multimedia/kf5-kmediaplayer/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/multimedia/kf5-kmediaplayer/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kmediaplayer DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= multimedia kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -11,7 +12,7 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar USE_KDE= auth codecs completion config configwidgets coreaddons \ ecm i18n jobwidgets kio parts service sonnet textwidgets \ widgetsaddons xmlgui -USE_QT= buildtools_build core dbus gui network qmake_build \ +USE_QT= buildtools_build concurrent core dbus gui network qmake_build \ testlib widgets xml .include Modified: head/net/kf5-kholidays/Makefile ============================================================================== --- head/net/kf5-kholidays/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/net/kf5-kholidays/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kholidays DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -11,7 +12,7 @@ LICENSE= LGPL21 USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= ecm emoticons kdelibs4support init itemmodels itemviews -USE_QT= core declarative gui buildtools_build qmake_build +USE_QT= core declarative gui network buildtools_build qmake_build USE_LDCONFIG= yes .include Modified: head/net/kf5-kxmlrpcclient/Makefile ============================================================================== --- head/net/kf5-kxmlrpcclient/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/net/kf5-kxmlrpcclient/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kxmlrpcclient DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -9,6 +10,7 @@ COMMENT= KF5 interaction with XMLRPC services USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm doctools i18n kio service -USE_QT= buildtools_build core gui qmake_build xml +USE_QT= buildtools_build concurrent core dbus gui \ + network qmake_build xml .include Modified: head/sysutils/kf5-baloo/Makefile ============================================================================== --- head/sysutils/kf5-baloo/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/sysutils/kf5-baloo/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= baloo DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= sysutils kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -14,7 +15,7 @@ USES= cmake compiler:c++11-lib gettext kde:5 pathfix USE_KDE= auth completion config coreaddons crash dbusaddons \ filemetadata i18n idletime jobwidgets kio service \ solid widgetsaddons -USE_QT= buildtools_build core dbus declarative gui network qmake_build \ +USE_QT= buildtools_build concurrent core dbus declarative gui network qmake_build \ testlib widgets # Frameworks ports install localization files that conflict with some Modified: head/www/kf5-kdewebkit/Makefile ============================================================================== --- head/www/kf5-kdewebkit/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/www/kf5-kdewebkit/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kdewebkit DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= www kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -11,7 +12,7 @@ USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar USE_KDE= auth codecs completion config configwidgets coreaddons \ ecm i18n jobwidgets kio parts service sonnet textwidgets \ wallet widgetsaddons xmlgui -USE_QT= buildtools_build core dbus gui network qmake_build webkit \ +USE_QT= buildtools_build concurrent core dbus gui network qmake_build webkit \ widgets xml .include Modified: head/www/kf5-khtml/Makefile ============================================================================== --- head/www/kf5-khtml/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/www/kf5-khtml/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= khtml DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= www kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -16,7 +17,7 @@ USE_KDE= archive auth bookmarks codecs completion conf configwidgets coreaddons ecm globalaccel i18n iconthemes \ jobwidgets js kio notifications parts service sonnet \ textwidgets wallet widgetsaddons windowsystem xmlgui -USE_QT= buildtools_build core dbus gui network phonon4 \ +USE_QT= buildtools_build concurrent core dbus gui network phonon4 \ printsupport qmake_build widgets x11extras xml USE_XORG= ice sm x11 xext Modified: head/x11-themes/kf5-kemoticons/Makefile ============================================================================== --- head/x11-themes/kf5-kemoticons/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/x11-themes/kf5-kemoticons/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kemoticons DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11-themes kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -9,6 +10,6 @@ COMMENT= KF5 library to convert emoticons USES= cmake compiler:c++11-lib kde:5 qt:5 tar:xz USE_KDE= archive config coreaddons ecm service -USE_QT= buildtools_build core gui qmake_build widgets xml +USE_QT= buildtools_build core dbus gui qmake_build widgets xml .include Modified: head/x11-toolkits/kf5-kdesignerplugin/Makefile ============================================================================== --- head/x11-toolkits/kf5-kdesignerplugin/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/x11-toolkits/kf5-kdesignerplugin/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kdesignerplugin DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -12,7 +13,7 @@ USE_KDE= auth bookmarks codecs completion config confi coreaddons doctools ecm i18n iconthemes itemviews \ jobwidgets kdewebkit kio plotting service solid sonnet \ textwidgets widgetsaddons xmlgui -USE_QT= buildtools_build core dbus designer gui linguisttools \ +USE_QT= buildtools_build concurrent core dbus designer gui linguisttools \ network qmake_build webkit widgets xml .include Modified: head/x11-toolkits/kf5-ktextwidgets/Makefile ============================================================================== --- head/x11-toolkits/kf5-ktextwidgets/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/x11-toolkits/kf5-ktextwidgets/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,7 +2,7 @@ PORTNAME= ktextwidgets DISTVERSION= ${KDE_FRAMEWORKS_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= x11-toolkits kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -13,7 +13,8 @@ USE_KDE= auth codecs completion config configwidgets \ coreaddons dbusaddons ecm guiaddons i18n \ iconthemes itemviews service sonnet \ widgetsaddons windowsystem -USE_QT= buildtools_build core dbus gui qmake_build widgets xml +USE_QT= buildtools_build concurrent core dbus declarative \ + gui qmake_build widgets xml OPTIONS_DEFINE= AUDIO OPTIONS_DEFAULT= AUDIO Modified: head/x11/kf5-frameworkintegration/Makefile ============================================================================== --- head/x11/kf5-frameworkintegration/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/x11/kf5-frameworkintegration/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= frameworkintegration DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -9,9 +10,9 @@ COMMENT= KF5 workspace and cross-framework integration USES= cmake compiler:c++11-lib gettext kde:5 pkgconfig \ qt:5 tar:xz -USE_KDE= auth codecs config configwidgets coreaddons ecm i18n \ +USE_KDE= auth attica codecs config configwidgets coreaddons ecm i18n \ iconthemes kio newstuff notifications package widgetsaddons -USE_QT= buildtools_build core dbus gui qmake_build widgets \ +USE_QT= buildtools_build core dbus gui network qmake_build widgets \ x11extras xml USE_XORG= xcb xcursor Modified: head/x11/kf5-kdelibs4support/Makefile ============================================================================== --- head/x11/kf5-kdelibs4support/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/x11/kf5-kdelibs4support/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kdelibs4support DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -18,7 +19,7 @@ USE_KDE= auth bookmarks codecs completion config confi widgetsaddons windowsystem xmlgui \ designerplugin_build designerplugin_run \ itemmodels_run -USE_QT= buildtools_build core dbus designer gui network \ +USE_QT= buildtools_build concurrent core dbus designer gui network \ printsupport qmake_build svg testlib widgets \ x11extras xml USE_XORG= ice sm x11 xext Modified: head/x11/kf5-kinit/Makefile ============================================================================== --- head/x11/kf5-kinit/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/x11/kf5-kinit/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= kinit DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -10,7 +11,7 @@ COMMENT= KF5 process launcher to speed up launching KD USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= completion config coreaddons crash doctools ecm i18n \ jobwidgets kio service widgetsaddons windowsystem -USE_QT= buildtools_build core dbus gui network qmake_build widgets +USE_QT= buildtools_build concurrent core dbus gui network qmake_build widgets USE_XORG= x11 xcb .include Modified: head/x11/kf5-krunner/Makefile ============================================================================== --- head/x11/kf5-krunner/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/x11/kf5-krunner/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= krunner DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -10,7 +11,7 @@ COMMENT= KF5 parallelized query system USES= cmake compiler:c++11-lib gettext kde:5 qt:5 tar:xz USE_KDE= config coreaddons ecm i18n kio package plasma-framework \ service solid threadweaver -USE_QT= buildtools_build core declarative gui network qmake_build \ - widgets +USE_QT= buildtools_build concurrent core dbus declarative gui \ + network qmake_build widgets .include Modified: head/x11/kf5-plasma-framework/Makefile ============================================================================== --- head/x11/kf5-plasma-framework/Makefile Sat Jun 22 23:13:15 2019 (r504915) +++ head/x11/kf5-plasma-framework/Makefile Sat Jun 22 23:57:10 2019 (r504916) @@ -2,6 +2,7 @@ PORTNAME= plasma-framework DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= x11 kde kde-frameworks MAINTAINER= kde@FreeBSD.org @@ -14,7 +15,7 @@ USE_KDE= activities archive auth codecs completion con guiaddons i18n iconthemes jobwidgets kirigami2 kio package \ notifications service wayland windowsystem xmlgui kdeclarative \ widgetsaddons -USE_QT= buildtools_build core dbus declarative gui network qmake_build \ +USE_QT= buildtools_build concurrent core dbus declarative gui network qmake_build \ script sql svg widgets x11extras xml USE_XORG= ice sm x11 xcb xext xrandr