From owner-svn-ports-branches@freebsd.org Sun Nov 15 02:01:14 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8C8E546DCB6; Sun, 15 Nov 2020 02:01:14 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CYb623RMyz4jCp; Sun, 15 Nov 2020 02:01:14 +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 68FF114375; Sun, 15 Nov 2020 02:01:14 +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 0AF21Elb000445; Sun, 15 Nov 2020 02:01:14 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AF21DDS000443; Sun, 15 Nov 2020 02:01:13 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202011150201.0AF21DDS000443@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Sun, 15 Nov 2020 02:01:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555162 - in branches/2020Q4/games/ioquake3: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: in branches/2020Q4/games/ioquake3: . files X-SVN-Commit-Revision: 555162 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 02:01:14 -0000 Author: pkubaj Date: Sun Nov 15 02:01:13 2020 New Revision: 555162 URL: https://svnweb.freebsd.org/changeset/ports/555162 Log: MFH: r555161 games/ioquake3: fix build on powerpc64 Approved by: portmgr (fix build blanket) Modified: branches/2020Q4/games/ioquake3/Makefile branches/2020Q4/games/ioquake3/files/patch-Makefile branches/2020Q4/games/ioquake3/files/patch-code-qcommon-q_platform.h Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/games/ioquake3/Makefile ============================================================================== --- branches/2020Q4/games/ioquake3/Makefile Sun Nov 15 02:00:13 2020 (r555161) +++ branches/2020Q4/games/ioquake3/Makefile Sun Nov 15 02:01:13 2020 (r555162) @@ -20,7 +20,7 @@ USES= pkgconfig gmake # Port configuration flags: # CLIENT SERVER TOOLS DLRENDERER GAMELIBS OPUS OPENGL2 IOQ3?= CLIENT TOOLS GAMELIBS -IOQ3ARCH?= ${ARCH} +IOQ3ARCH?= ${ARCH:S/powerpc/ppc/} IOQ3SDL?= sdl .if ! ${IOQ3:MCLIENT} && ! ${IOQ3:MSERVER} @@ -87,7 +87,7 @@ Q3INSTALL?= Q3ENGINEVER?= ${DISTVERSION} IOQUAKE3VER= 1.36 -ONLY_FOR_ARCHS= amd64 i386 +ONLY_FOR_ARCHS= amd64 i386 powerpc64 DEBUG_VARS= ALL_TARGET=debug SERVER_RUN_DEPENDS= ${Q3SERVER}${BINSUFFIX}:games/${PORTNAME}-server Modified: branches/2020Q4/games/ioquake3/files/patch-Makefile ============================================================================== --- branches/2020Q4/games/ioquake3/files/patch-Makefile Sun Nov 15 02:00:13 2020 (r555161) +++ branches/2020Q4/games/ioquake3/files/patch-Makefile Sun Nov 15 02:01:13 2020 (r555162) @@ -1,5 +1,16 @@ --- Makefile.orig 2009-04-22 18:54:48 UTC +++ Makefile +@@ -16,6 +16,10 @@ ifeq ($(COMPILE_PLATFORM),darwin) + # Apple does some things a little differently... + COMPILE_ARCH=$(shell uname -p | sed -e s/i.86/i386/) + endif ++ifeq ($(COMPILE_PLATFORM),freebsd) ++ # FreeBSD does some things a little differently... ++ COMPILE_ARCH=$(shell uname -p) ++endif + + ifeq ($(COMPILE_PLATFORM),mingw32) + ifeq ($(COMPILE_ARCH),i386) @@ -187,6 +187,8 @@ ifeq ($(shell which pkg-config > /dev/nu # FIXME: introduce CLIENT_CFLAGS SDL_CFLAGS=$(shell pkg-config --cflags sdl|sed 's/-Dmain=SDL_main//') Modified: branches/2020Q4/games/ioquake3/files/patch-code-qcommon-q_platform.h ============================================================================== --- branches/2020Q4/games/ioquake3/files/patch-code-qcommon-q_platform.h Sun Nov 15 02:00:13 2020 (r555161) +++ branches/2020Q4/games/ioquake3/files/patch-code-qcommon-q_platform.h Sun Nov 15 02:01:13 2020 (r555162) @@ -1,6 +1,6 @@ --- code/qcommon/q_platform.h.orig 2009-03-02 17:29:30 UTC +++ code/qcommon/q_platform.h -@@ -199,6 +199,8 @@ Foundation, Inc., 51 Franklin St, Fifth +@@ -199,8 +199,14 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, #ifdef __i386__ #define ARCH_STRING "i386" @@ -8,4 +8,10 @@ +#define ARCH_STRING "amd64" #elif defined __axp__ #define ARCH_STRING "alpha" ++#elif defined __powerpc64__ ++#define ARCH_STRING "ppc64" ++#elif defined __powerpc__ ++#define ARCH_STRING "ppc" #endif + + #if BYTE_ORDER == BIG_ENDIAN From owner-svn-ports-branches@freebsd.org Sun Nov 15 05:32:01 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A158A2D3C47; Sun, 15 Nov 2020 05:32: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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CYgnF4Dz4z4t9K; Sun, 15 Nov 2020 05:32: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 8465316CA9; Sun, 15 Nov 2020 05:32: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 0AF5W1Fq035584; Sun, 15 Nov 2020 05:32:01 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AF5W1uM035582; Sun, 15 Nov 2020 05:32:01 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202011150532.0AF5W1uM035582@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 15 Nov 2020 05:32:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555164 - branches/2020Q4/security/tor X-SVN-Group: ports-branches X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: branches/2020Q4/security/tor X-SVN-Commit-Revision: 555164 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 05:32:01 -0000 Author: yuri Date: Sun Nov 15 05:32:00 2020 New Revision: 555164 URL: https://svnweb.freebsd.org/changeset/ports/555164 Log: MFH: r554994 security/tor: Update 0.4.4.5 -> 0.4.4.6 Changelog: https://gitweb.torproject.org/tor.git/tree/ChangeLog?h=tor-0.4.4.6 Reported by: Upstream notification Approved by: ports-secteam (Riggs) Modified: branches/2020Q4/security/tor/Makefile branches/2020Q4/security/tor/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/security/tor/Makefile ============================================================================== --- branches/2020Q4/security/tor/Makefile Sun Nov 15 05:07:39 2020 (r555163) +++ branches/2020Q4/security/tor/Makefile Sun Nov 15 05:32:00 2020 (r555164) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= tor -DISTVERSION= 0.4.4.5 +DISTVERSION= 0.4.4.6 CATEGORIES= security net MASTER_SITES= TOR Modified: branches/2020Q4/security/tor/distinfo ============================================================================== --- branches/2020Q4/security/tor/distinfo Sun Nov 15 05:07:39 2020 (r555163) +++ branches/2020Q4/security/tor/distinfo Sun Nov 15 05:32:00 2020 (r555164) @@ -1,3 +1,3 @@ -TIMESTAMP = 1600187124 -SHA256 (tor-0.4.4.5.tar.gz) = a45ca00afe765e3baa839767c9dd6ac9a46dd01720a3a8ff4d86558c12359926 -SIZE (tor-0.4.4.5.tar.gz) = 7808696 +TIMESTAMP = 1605221558 +SHA256 (tor-0.4.4.6.tar.gz) = 5f154c155803adf5c89e87cab53017b6908c5ebe50c65839e8cf4fbd2abe1fdc +SIZE (tor-0.4.4.6.tar.gz) = 7806477 From owner-svn-ports-branches@freebsd.org Sun Nov 15 05:32:38 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5CA612D3C5A; Sun, 15 Nov 2020 05:32:38 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CYgny2DQmz4tRm; Sun, 15 Nov 2020 05:32: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 34E8316A57; Sun, 15 Nov 2020 05:32: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 0AF5Wc05035782; Sun, 15 Nov 2020 05:32:38 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AF5WbdD035779; Sun, 15 Nov 2020 05:32:37 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202011150532.0AF5WbdD035779@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sun, 15 Nov 2020 05:32:37 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555165 - branches/2020Q4/science/agrum X-SVN-Group: ports-branches X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: branches/2020Q4/science/agrum X-SVN-Commit-Revision: 555165 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 05:32:38 -0000 Author: yuri Date: Sun Nov 15 05:32:37 2020 New Revision: 555165 URL: https://svnweb.freebsd.org/changeset/ports/555165 Log: MFH: r555008 science/agrum: Update 0.18.1 -> 0.18.2 Changelog: https://gitlab.com/agrumery/aGrUM/-/blob/master/CHANGELOG.md Approved by: ports-secteam (Riggs) Modified: branches/2020Q4/science/agrum/Makefile branches/2020Q4/science/agrum/distinfo branches/2020Q4/science/agrum/pkg-plist Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/science/agrum/Makefile ============================================================================== --- branches/2020Q4/science/agrum/Makefile Sun Nov 15 05:32:00 2020 (r555164) +++ branches/2020Q4/science/agrum/Makefile Sun Nov 15 05:32:37 2020 (r555165) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= agrum -DISTVERSION= 0.18.1 +DISTVERSION= 0.18.2 CATEGORIES= science math MAINTAINER= yuri@FreeBSD.org @@ -17,7 +17,7 @@ LLD_UNSAFE= yes GL_ACCOUNT= agrumery GL_PROJECT= aGrUM -GL_COMMIT= b6c290591e7c4604c8bb7d123f5c768020a07688 +GL_COMMIT= 7cefa2fc9094a9ff3e285ab86d62897ef03e9a73 CMAKE_OFF= USE_SWIG Modified: branches/2020Q4/science/agrum/distinfo ============================================================================== --- branches/2020Q4/science/agrum/distinfo Sun Nov 15 05:32:00 2020 (r555164) +++ branches/2020Q4/science/agrum/distinfo Sun Nov 15 05:32:37 2020 (r555165) @@ -1,3 +1,3 @@ -TIMESTAMP = 1595266959 -SHA256 (agrumery-aGrUM-b6c290591e7c4604c8bb7d123f5c768020a07688_GL0.tar.gz) = be57b000c0d562f8cb1a1f35eef4ede508ae661afc578cc6e88ba10d1192120b -SIZE (agrumery-aGrUM-b6c290591e7c4604c8bb7d123f5c768020a07688_GL0.tar.gz) = 15294684 +TIMESTAMP = 1605249115 +SHA256 (agrumery-aGrUM-7cefa2fc9094a9ff3e285ab86d62897ef03e9a73_GL0.tar.gz) = d94b622cbdadedd83036a59727bf71917c5214769437ad6d8d5d00bf0e1537e2 +SIZE (agrumery-aGrUM-7cefa2fc9094a9ff3e285ab86d62897ef03e9a73_GL0.tar.gz) = 15296589 Modified: branches/2020Q4/science/agrum/pkg-plist ============================================================================== --- branches/2020Q4/science/agrum/pkg-plist Sun Nov 15 05:32:00 2020 (r555164) +++ branches/2020Q4/science/agrum/pkg-plist Sun Nov 15 05:32:37 2020 (r555165) @@ -873,7 +873,7 @@ lib/cmake/aGrUM/agrum-targets-%%CMAKE_BUILD_TYPE%%.cma lib/cmake/aGrUM/agrum-targets.cmake lib/libagrum.so lib/libagrum.so.0 -lib/libagrum.so.0.18.1 +lib/libagrum.so.0.18.2 %%PYTHON%%%%PYTHON_SITELIBDIR%%/pyAgrum-%%VERSION%%-py%%PYTHON_VER_MAJ%%.egg-info %%PYTHON%%%%PYTHON_SITELIBDIR%%/pyAgrum-%%VERSION%%.dist-info/METADATA %%PYTHON%%%%PYTHON_SITELIBDIR%%/pyAgrum-%%VERSION%%.dist-info/WHEEL From owner-svn-ports-branches@freebsd.org Sun Nov 15 07:24:53 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 982CC2D5FE9; Sun, 15 Nov 2020 07:24: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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CYkHT3w63z3FSN; Sun, 15 Nov 2020 07:24:53 +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 795DA18228; Sun, 15 Nov 2020 07:24:53 +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 0AF7OrKr004417; Sun, 15 Nov 2020 07:24:53 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AF7OrXR004414; Sun, 15 Nov 2020 07:24:53 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202011150724.0AF7OrXR004414@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 15 Nov 2020 07:24:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555169 - branches/2020Q4/www/gallery-dl X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2020Q4/www/gallery-dl X-SVN-Commit-Revision: 555169 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 07:24:53 -0000 Author: jbeich Date: Sun Nov 15 07:24:52 2020 New Revision: 555169 URL: https://svnweb.freebsd.org/changeset/ports/555169 Log: MFH: r553206 r555050 www/gallery-dl: update to 1.15.2 Changes: https://github.com/mikf/gallery-dl/releases/tag/v1.15.2 Changes: https://github.com/mikf/gallery-dl/releases/tag/v1.15.3 Reported by: GitHub (watch releases) Approved by: ports-secteam (riggs) Modified: branches/2020Q4/www/gallery-dl/Makefile branches/2020Q4/www/gallery-dl/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/www/gallery-dl/Makefile ============================================================================== --- branches/2020Q4/www/gallery-dl/Makefile Sun Nov 15 07:03:05 2020 (r555168) +++ branches/2020Q4/www/gallery-dl/Makefile Sun Nov 15 07:24:52 2020 (r555169) @@ -2,7 +2,7 @@ PORTNAME= gallery-dl DISTVERSIONPREFIX= v -DISTVERSION= 1.15.1 +DISTVERSION= 1.15.3 CATEGORIES= www # Implicit approval to commit trivial version updates. Modified: branches/2020Q4/www/gallery-dl/distinfo ============================================================================== --- branches/2020Q4/www/gallery-dl/distinfo Sun Nov 15 07:03:05 2020 (r555168) +++ branches/2020Q4/www/gallery-dl/distinfo Sun Nov 15 07:24:52 2020 (r555169) @@ -1,3 +1,3 @@ -TIMESTAMP = 1602434686 -SHA256 (mikf-gallery-dl-v1.15.1_GH0.tar.gz) = 08b8ca1b3d63b7a671e2ba771f36d15e50c082bc7701da8911e43ce679d1cb74 -SIZE (mikf-gallery-dl-v1.15.1_GH0.tar.gz) = 321946 +TIMESTAMP = 1605279005 +SHA256 (mikf-gallery-dl-v1.15.3_GH0.tar.gz) = 354b9ec3c4d129397828e4f28ab65c5012c27bfcd6d7304b72fe6a51673a3dd7 +SIZE (mikf-gallery-dl-v1.15.3_GH0.tar.gz) = 325926 From owner-svn-ports-branches@freebsd.org Sun Nov 15 08:27:55 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4912F2D707C; Sun, 15 Nov 2020 08:27:55 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CYlhC1czXz3Hlv; Sun, 15 Nov 2020 08:27:55 +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 1F6D818D53; Sun, 15 Nov 2020 08:27:55 +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 0AF8RtiA041550; Sun, 15 Nov 2020 08:27:55 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AF8RtWr041549; Sun, 15 Nov 2020 08:27:55 GMT (envelope-from krion@FreeBSD.org) Message-Id: <202011150827.0AF8RtWr041549@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Sun, 15 Nov 2020 08:27:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555170 - branches/2020Q4/www/miniflux X-SVN-Group: ports-branches X-SVN-Commit-Author: krion X-SVN-Commit-Paths: branches/2020Q4/www/miniflux X-SVN-Commit-Revision: 555170 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 08:27:55 -0000 Author: krion Date: Sun Nov 15 08:27:54 2020 New Revision: 555170 URL: https://svnweb.freebsd.org/changeset/ports/555170 Log: Update distinfo, forgotten in previous commit. Approved by: ports-secteam (blanket) Modified: branches/2020Q4/www/miniflux/distinfo Modified: branches/2020Q4/www/miniflux/distinfo ============================================================================== --- branches/2020Q4/www/miniflux/distinfo Sun Nov 15 07:24:52 2020 (r555169) +++ branches/2020Q4/www/miniflux/distinfo Sun Nov 15 08:27:54 2020 (r555170) @@ -1,10 +1,14 @@ -TIMESTAMP = 1604908243 +TIMESTAMP = 1605428802 SHA256 (miniflux-v2-2.0.25_GH0.tar.gz) = be207d714c0981052de03172dfe19ca2fcbdc97d9f7d7f9bbbeae5bd8a3c16ae SIZE (miniflux-v2-2.0.25_GH0.tar.gz) = 555902 SHA256 (PuerkitoBio-goquery-v1.6.0_GH0.tar.gz) = a004e560ec3a0feeb15b29a6360c89681cb7843aa73c0bb8d6d835d022fc30e0 SIZE (PuerkitoBio-goquery-v1.6.0_GH0.tar.gz) = 102842 SHA256 (andybalholm-cascadia-v1.1.0_GH0.tar.gz) = 5d03f4610b70cab7860b158efab1afd91baa58fd95286a0adbadcdc3b49c7936 SIZE (andybalholm-cascadia-v1.1.0_GH0.tar.gz) = 15464 +SHA256 (beorn7-perks-v1.0.1_GH0.tar.gz) = 98db84bb0224a26094e6adba91b7ee7a1a7ace28cb648d818f8e779e6a19f825 +SIZE (beorn7-perks-v1.0.1_GH0.tar.gz) = 10867 +SHA256 (cespare-xxhash-v2.1.1_GH0.tar.gz) = 0ee31178d2c5a1249be4e26294a2f428008dc4e1ecbbfbe47f74e41026df1148 +SIZE (cespare-xxhash-v2.1.1_GH0.tar.gz) = 9292 SHA256 (coreos-go-oidc-v2.2.1_GH0.tar.gz) = e9a5b72b34e4657f526bb85d11b9afc05e84418a430713844a6aa3365b4373d0 SIZE (coreos-go-oidc-v2.2.1_GH0.tar.gz) = 24136 SHA256 (golang-crypto-75b288015ac9_GH0.tar.gz) = 6e74e21bf9dfdbf0a8dac8cb205fbc3bfd8dff308a24080b9d6093a3858f0db2 @@ -19,10 +23,12 @@ SHA256 (golang-sys-e3ed0017c211_GH0.tar.gz) = 93c78dbd SIZE (golang-sys-e3ed0017c211_GH0.tar.gz) = 1068415 SHA256 (golang-text-v0.3.3_GH0.tar.gz) = 1604233637e3593749fbbb13b5069b08e6feba6d2b55a02fd3148793d5871185 SIZE (golang-text-v0.3.3_GH0.tar.gz) = 7747332 -SHA256 (gorilla-mux-v1.7.4_GH0.tar.gz) = 56ea3c39b8c19360357970a4dcd717485f36ac7da9c6b5a107bd4b80848c4aee -SIZE (gorilla-mux-v1.7.4_GH0.tar.gz) = 45437 +SHA256 (gorilla-mux-v1.8.0_GH0.tar.gz) = ea2639259d2ce6f402636655e91eb93ba69c139e3cbf80b044ee393ada53757b +SIZE (gorilla-mux-v1.8.0_GH0.tar.gz) = 45517 SHA256 (lib-pq-v1.8.0_GH0.tar.gz) = bd13c7ba79f48a1462cdb6f124948453e2f6fc565f3f9a3850618775189bca59 SIZE (lib-pq-v1.8.0_GH0.tar.gz) = 101945 +SHA256 (matttproud-golang_protobuf_extensions-v1.0.1_GH0.tar.gz) = 2def0ee6f6b12b1efc0e3007d89f598608a072610e805c3655ea9d13c3ead49b +SIZE (matttproud-golang_protobuf_extensions-v1.0.1_GH0.tar.gz) = 37184 SHA256 (pquerna-cachecontrol-1555304b9b35_GH0.tar.gz) = 3611cc14c2de3c0f2df51d98d440673b32f6a906de213098abbdb0bb5eed6919 SIZE (pquerna-cachecontrol-1555304b9b35_GH0.tar.gz) = 18998 SHA256 (protocolbuffers-protobuf-go-v1.25.0_GH0.tar.gz) = c1c04d6e36c0d0fb6f3374197f9025d7e6df13f38a974098be020617c00fbaf2 From owner-svn-ports-branches@freebsd.org Sun Nov 15 09:42:16 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 820F02E12FB; Sun, 15 Nov 2020 09:42: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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CYnL03JTYz3N1l; Sun, 15 Nov 2020 09:42: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 59F8219D27; Sun, 15 Nov 2020 09:42: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 0AF9gGld088945; Sun, 15 Nov 2020 09:42:16 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AF9gFDL088942; Sun, 15 Nov 2020 09:42:15 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <202011150942.0AF9gFDL088942@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 15 Nov 2020 09:42:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555179 - in branches/2020Q4/math/labplot: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in branches/2020Q4/math/labplot: . files X-SVN-Commit-Revision: 555179 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 09:42:16 -0000 Author: tcberner Date: Sun Nov 15 09:42:15 2020 New Revision: 555179 URL: https://svnweb.freebsd.org/changeset/ports/555179 Log: MFH: r555176 math/labplot: update to 2.8.1 We’re happy to announce the availability of the first minor patch release of the big release we made two months ago. This release contains minor improvements and bug fixes only. Announcement: https://labplot.kde.org/2020/11/13/labplot-2-8-1-released/ Approved by: ports-secteam (fluffy) Deleted: branches/2020Q4/math/labplot/files/ Modified: branches/2020Q4/math/labplot/Makefile branches/2020Q4/math/labplot/distinfo branches/2020Q4/math/labplot/pkg-plist Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/math/labplot/Makefile ============================================================================== --- branches/2020Q4/math/labplot/Makefile Sun Nov 15 09:33:20 2020 (r555178) +++ branches/2020Q4/math/labplot/Makefile Sun Nov 15 09:42:15 2020 (r555179) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= labplot -DISTVERSION= 2.8.0 +DISTVERSION= 2.8.1 CATEGORIES= math kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} Modified: branches/2020Q4/math/labplot/distinfo ============================================================================== --- branches/2020Q4/math/labplot/distinfo Sun Nov 15 09:33:20 2020 (r555178) +++ branches/2020Q4/math/labplot/distinfo Sun Nov 15 09:42:15 2020 (r555179) @@ -1,3 +1,3 @@ -TIMESTAMP = 1600793535 -SHA256 (labplot-2.8.0.tar.xz) = 8957c708ea572d9b7bfd7bdd1e9627bb1e10717c4b8cb10c7687ca6ca187a705 -SIZE (labplot-2.8.0.tar.xz) = 13117804 +TIMESTAMP = 1605430703 +SHA256 (labplot-2.8.1.tar.xz) = 726909a8335921c742c4d92f66663ecdb447ddee0d74568c50a22330c79e079a +SIZE (labplot-2.8.1.tar.xz) = 13203288 Modified: branches/2020Q4/math/labplot/pkg-plist ============================================================================== --- branches/2020Q4/math/labplot/pkg-plist Sun Nov 15 09:33:20 2020 (r555178) +++ branches/2020Q4/math/labplot/pkg-plist Sun Nov 15 09:42:15 2020 (r555179) @@ -53,10 +53,13 @@ share/doc/HTML/en/labplot2/tutorial-xy-function9.png share/doc/HTML/en/labplot2/workbook.png share/doc/HTML/en/labplot2/worksheet.png share/icons/hicolor/128x128/apps/labplot2.png +share/icons/hicolor/150x150/apps/labplot2.png share/icons/hicolor/16x16/apps/labplot2.png share/icons/hicolor/22x22/apps/labplot2.png share/icons/hicolor/256x256/apps/labplot2.png +share/icons/hicolor/310x310/apps/labplot2.png share/icons/hicolor/32x32/apps/labplot2.png +share/icons/hicolor/44x44/apps/labplot2.png share/icons/hicolor/48x48/apps/labplot2.png share/icons/hicolor/512x512/apps/labplot2.png share/icons/hicolor/64x64/apps/labplot2.png @@ -137,7 +140,6 @@ share/kxmlgui5/labplot2/labplot2ui.rc %%DATADIR%%/datasets/OzDASL.json %%DATADIR%%/datasets/README.md %%DATADIR%%/datasets/Rdatasets.json -%%DATADIR%%/datasets/Socrata.json %%DATADIR%%/datasets/StatLib.json %%DATADIR%%/example_projects/Big-city-pop.lml %%DATADIR%%/example_projects/Rainfall.lml From owner-svn-ports-branches@freebsd.org Sun Nov 15 10:24:19 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C66B32E32AC; Sun, 15 Nov 2020 10:24:19 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CYpGW5DWXz3R72; Sun, 15 Nov 2020 10:24:19 +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 9CACD1A854; Sun, 15 Nov 2020 10:24:19 +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 0AFAOJWi018074; Sun, 15 Nov 2020 10:24:19 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AFAOJOu018073; Sun, 15 Nov 2020 10:24:19 GMT (envelope-from pi@FreeBSD.org) Message-Id: <202011151024.0AFAOJOu018073@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 15 Nov 2020 10:24:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555189 - in branches/2020Q4/converters/wkhtmltopdf: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: pi X-SVN-Commit-Paths: in branches/2020Q4/converters/wkhtmltopdf: . files X-SVN-Commit-Revision: 555189 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 10:24:19 -0000 Author: pi Date: Sun Nov 15 10:24:18 2020 New Revision: 555189 URL: https://svnweb.freebsd.org/changeset/ports/555189 Log: MFH: r555188 converters/wkhtmltopdf: fix build on arm64/aarch64 PR: 250952 Submitted by: rasmus@gal.dk Reviewed by: linimon Approved by: portmgr (fix blanket) Added: branches/2020Q4/converters/wkhtmltopdf/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Platform.h - copied unchanged from r555188, head/converters/wkhtmltopdf/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Platform.h Modified: branches/2020Q4/converters/wkhtmltopdf/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/converters/wkhtmltopdf/Makefile ============================================================================== --- branches/2020Q4/converters/wkhtmltopdf/Makefile Sun Nov 15 10:23:01 2020 (r555188) +++ branches/2020Q4/converters/wkhtmltopdf/Makefile Sun Nov 15 10:24:18 2020 (r555189) @@ -11,7 +11,6 @@ COMMENT= Convert HTML (or live webpages) to PDF or ima LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_aarch64= fails to build: error: cast from pointer to smaller type loses information BROKEN_armv6= fails to build: error: Not supported ARM architecture BROKEN_armv7= fails to build: error: invalid operand for instruction BROKEN_mips64= fails to link: undefined reference to __sync_add_and_fetch_4 Copied: branches/2020Q4/converters/wkhtmltopdf/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Platform.h (from r555188, head/converters/wkhtmltopdf/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Platform.h) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/converters/wkhtmltopdf/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Platform.h Sun Nov 15 10:24:18 2020 (r555189, copy of r555188, head/converters/wkhtmltopdf/files/patch-src__3rdparty__webkit__Source__JavaScriptCore__wtf__Platform.h) @@ -0,0 +1,12 @@ +--- src/3rdparty/webkit/Source/JavaScriptCore/wtf/Platform.h.orig 2020-11-08 17:05:56.503694000 +0100 ++++ src/3rdparty/webkit/Source/JavaScriptCore/wtf/Platform.h 2020-11-08 17:06:42.105176000 +0100 +@@ -1003,7 +1003,8 @@ + || CPU(SPARC64) \ + || CPU(S390X) \ + || CPU(PPC64) \ +- || CPU(MIPS64) ++ || CPU(MIPS64) \ ++ || defined(__aarch64__) + #define WTF_USE_JSVALUE64 1 + #else + #define WTF_USE_JSVALUE32_64 1 From owner-svn-ports-branches@freebsd.org Sun Nov 15 10:46:29 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 965992E3CBC; Sun, 15 Nov 2020 10:46:29 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CYpm53qtQz3j5m; Sun, 15 Nov 2020 10:46:29 +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 7603E1A579; Sun, 15 Nov 2020 10:46:29 +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 0AFAkTRc030665; Sun, 15 Nov 2020 10:46:29 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AFAkTil030664; Sun, 15 Nov 2020 10:46:29 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <202011151046.0AFAkTil030664@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sun, 15 Nov 2020 10:46:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555193 - branches/2020Q4/graphics/krita X-SVN-Group: ports-branches X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: branches/2020Q4/graphics/krita X-SVN-Commit-Revision: 555193 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 10:46:29 -0000 Author: tcberner Date: Sun Nov 15 10:46:29 2020 New Revision: 555193 URL: https://svnweb.freebsd.org/changeset/ports/555193 Log: MFH: r555192 graphics/krita: Fix RUN_DEPENDS for GMIC option - depend on the flavored port PR: 251031 Submitted by: Shane Approved by: ports-secteam (implicit) Modified: branches/2020Q4/graphics/krita/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/graphics/krita/Makefile ============================================================================== --- branches/2020Q4/graphics/krita/Makefile Sun Nov 15 10:45:44 2020 (r555192) +++ branches/2020Q4/graphics/krita/Makefile Sun Nov 15 10:46:29 2020 (r555193) @@ -50,7 +50,7 @@ OPTIONS_DEFAULT= OPENEXR OPTIONS_SUB= yes GMIC_DESC= Depend on the G'Mic plugin #' -GMIC_RUN_DEPENDS= gmic_krita_qt:graphics/gmic-qt +GMIC_RUN_DEPENDS= gmic_krita_qt:graphics/gmic-qt@krita OPENEXR_LIB_DEPENDS= libIlmImf.so:graphics/openexr OPENEXR_CMAKE_BOOL_OFF= CMAKE_DISABLE_FIND_PACKAGE_OpenEXR From owner-svn-ports-branches@freebsd.org Sun Nov 15 13:05:43 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 714182E8693; Sun, 15 Nov 2020 13:05:43 +0000 (UTC) (envelope-from dmgk@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CYsrl2lRPz3rsV; Sun, 15 Nov 2020 13:05:43 +0000 (UTC) (envelope-from dmgk@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 510B91C149; Sun, 15 Nov 2020 13:05:43 +0000 (UTC) (envelope-from dmgk@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AFD5hKK018454; Sun, 15 Nov 2020 13:05:43 GMT (envelope-from dmgk@FreeBSD.org) Received: (from dmgk@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AFD5gi1018452; Sun, 15 Nov 2020 13:05:42 GMT (envelope-from dmgk@FreeBSD.org) Message-Id: <202011151305.0AFD5gi1018452@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dmgk set sender to dmgk@FreeBSD.org using -f From: Dmitri Goutnik Date: Sun, 15 Nov 2020 13:05:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555207 - in branches/2020Q4/devel/tinygo: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: dmgk X-SVN-Commit-Paths: in branches/2020Q4/devel/tinygo: . files X-SVN-Commit-Revision: 555207 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 13:05:43 -0000 Author: dmgk Date: Sun Nov 15 13:05:42 2020 New Revision: 555207 URL: https://svnweb.freebsd.org/changeset/ports/555207 Log: MFH: r555206 devel/tinygo: Unbreak with go1.15.5 - unbreak with go 1.15.5 - drop maintainership Approved by: portmgr (build fix blanket) Modified: branches/2020Q4/devel/tinygo/Makefile branches/2020Q4/devel/tinygo/files/patch-Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/devel/tinygo/Makefile ============================================================================== --- branches/2020Q4/devel/tinygo/Makefile Sun Nov 15 13:03:30 2020 (r555206) +++ branches/2020Q4/devel/tinygo/Makefile Sun Nov 15 13:05:42 2020 (r555207) @@ -3,9 +3,10 @@ PORTNAME= tinygo DISTVERSIONPREFIX= v DISTVERSION= 0.14.1 +PORTREVISION= 1 CATEGORIES= devel -MAINTAINER= dmgk@FreeBSD.org +MAINTAINER= ports@FreeBSD.org COMMENT= Go compiler for small places LICENSE= BSD3CLAUSE Modified: branches/2020Q4/devel/tinygo/files/patch-Makefile ============================================================================== --- branches/2020Q4/devel/tinygo/files/patch-Makefile Sun Nov 15 13:03:30 2020 (r555206) +++ branches/2020Q4/devel/tinygo/files/patch-Makefile Sun Nov 15 13:05:42 2020 (r555207) @@ -1,4 +1,4 @@ ---- Makefile.orig 2020-04-13 15:48:30 UTC +--- Makefile.orig 2020-08-19 06:37:16 UTC +++ Makefile @@ -40,7 +40,7 @@ MD5SUM = md5sum TINYGO ?= tinygo @@ -9,8 +9,17 @@ LLVM_OPTION += '-DLLVM_CCACHE_BUILD=ON' endif +@@ -104,7 +104,7 @@ LLD_LIBS = $(START_GROUP) -llldCOFF -llldCommon -llldC + ifneq ("$(wildcard $(LLVM_BUILDDIR)/bin/llvm-config*)","") + CGO_CPPFLAGS=$(shell $(LLVM_BUILDDIR)/bin/llvm-config --cppflags) -I$(abspath $(LLVM_BUILDDIR))/tools/clang/include -I$(abspath $(CLANG_SRC))/include -I$(abspath $(LLD_SRC))/include + CGO_CXXFLAGS=-std=c++14 +- CGO_LDFLAGS+=$(LIBCLANG_PATH) -std=c++14 -L$(abspath $(LLVM_BUILDDIR)/lib) $(CLANG_LIBS) $(LLD_LIBS) $(shell $(LLVM_BUILDDIR)/bin/llvm-config --ldflags --libs --system-libs $(LLVM_COMPONENTS)) -lstdc++ $(CGO_LDFLAGS_EXTRA) ++ CGO_LDFLAGS+=$(LIBCLANG_PATH) -L$(abspath $(LLVM_BUILDDIR)/lib) $(CLANG_LIBS) $(LLD_LIBS) $(shell $(LLVM_BUILDDIR)/bin/llvm-config --ldflags --libs --system-libs $(LLVM_COMPONENTS)) -lstdc++ $(CGO_LDFLAGS_EXTRA) + endif + + @@ -121,13 +121,13 @@ fmt-check: - gen-device: gen-device-avr gen-device-nrf gen-device-sam gen-device-sifive gen-device-stm32 + gen-device: gen-device-avr gen-device-nrf gen-device-sam gen-device-sifive gen-device-stm32 gen-device-kendryte gen-device-nxp gen-device-avr: - $(GO) build -o ./build/gen-device-avr ./tools/gen-device-avr/ @@ -25,7 +34,7 @@ gen-device-nrf: build/gen-device-svd ./build/gen-device-svd -source=https://github.com/NordicSemiconductor/nrfx/tree/master/mdk lib/nrfx/mdk/ src/device/nrf/ -@@ -165,16 +165,16 @@ $(LLVM_BUILDDIR): $(LLVM_BUILDDIR)/build.ninja +@@ -173,16 +173,16 @@ $(LLVM_BUILDDIR): $(LLVM_BUILDDIR)/build.ninja .PHONY: wasi-libc wasi-libc: lib/wasi-libc/sysroot/lib/wasm32-wasi/libc.a lib/wasi-libc/sysroot/lib/wasm32-wasi/libc.a: @@ -45,8 +54,11 @@ tinygo-test: cd tests/tinygotest && tinygo test -@@ -345,4 +345,3 @@ release: tinygo gen-device wasi-libc +@@ -383,7 +383,6 @@ build/release: tinygo gen-device wasi-libc ./build/tinygo build-library -target=armv6m-none-eabi -o build/release/tinygo/pkg/armv6m-none-eabi/picolibc.a picolibc ./build/tinygo build-library -target=armv7m-none-eabi -o build/release/tinygo/pkg/armv7m-none-eabi/picolibc.a picolibc ./build/tinygo build-library -target=armv7em-none-eabi -o build/release/tinygo/pkg/armv7em-none-eabi/picolibc.a picolibc -- tar -czf build/release.tar.gz -C build/release tinygo +- + release: build/release + tar -czf build/release.tar.gz -C build/release tinygo + From owner-svn-ports-branches@freebsd.org Sun Nov 15 13:18:25 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id BC20A2E8BB4; Sun, 15 Nov 2020 13:18:25 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CYt7P4zQkz3sCL; Sun, 15 Nov 2020 13:18:25 +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 9CF851C8EE; Sun, 15 Nov 2020 13:18:25 +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 0AFDIPcS025797; Sun, 15 Nov 2020 13:18:25 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AFDIPNS025796; Sun, 15 Nov 2020 13:18:25 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <202011151318.0AFDIPNS025796@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sun, 15 Nov 2020 13:18:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555211 - in branches/2020Q4/x11-wm/xfce4-wm: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: in branches/2020Q4/x11-wm/xfce4-wm: . files X-SVN-Commit-Revision: 555211 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 13:18:25 -0000 Author: madpilot Date: Sun Nov 15 13:18:24 2020 New Revision: 555211 URL: https://svnweb.freebsd.org/changeset/ports/555211 Log: MFH: r553863 r555201 Update xfce4-wm to 4.14.6 Import upstream patch to avoid crash due to unhandled XError in XKillClient() PR: 251136 Submitted by: rozhuk.im@gmail.com Obtained from: https://gitlab.xfce.org/xfce/xfwm4/-/commit/e2fbfac304beace0297d071f7de0aceba4f0016a Approved by: ports-secteam (riggs, fluffy) Added: branches/2020Q4/x11-wm/xfce4-wm/files/ - copied from r555201, head/x11-wm/xfce4-wm/files/ Modified: branches/2020Q4/x11-wm/xfce4-wm/Makefile branches/2020Q4/x11-wm/xfce4-wm/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/x11-wm/xfce4-wm/Makefile ============================================================================== --- branches/2020Q4/x11-wm/xfce4-wm/Makefile Sun Nov 15 13:16:54 2020 (r555210) +++ branches/2020Q4/x11-wm/xfce4-wm/Makefile Sun Nov 15 13:18:24 2020 (r555211) @@ -2,7 +2,8 @@ # $FreeBSD$ PORTNAME= xfce4-wm -PORTVERSION= 4.14.5 +PORTVERSION= 4.14.6 +PORTREVISION= 1 CATEGORIES= x11-wm xfce MASTER_SITES= XFCE DISTNAME= xfwm4-${DISTVERSIONFULL} Modified: branches/2020Q4/x11-wm/xfce4-wm/distinfo ============================================================================== --- branches/2020Q4/x11-wm/xfce4-wm/distinfo Sun Nov 15 13:16:54 2020 (r555210) +++ branches/2020Q4/x11-wm/xfce4-wm/distinfo Sun Nov 15 13:18:24 2020 (r555211) @@ -1,3 +1,3 @@ -TIMESTAMP = 1596989339 -SHA256 (xfce4/xfwm4-4.14.5.tar.bz2) = d7a7c63fa42ec6d7cb3caab130d6f496be5bd7689b775d20e8786b7f3e282930 -SIZE (xfce4/xfwm4-4.14.5.tar.bz2) = 1165140 +TIMESTAMP = 1604253744 +SHA256 (xfce4/xfwm4-4.14.6.tar.bz2) = ac6fa8b09d34090fb9ad81d8b7fb0455a10eccf500396b644afa2b9c2444142f +SIZE (xfce4/xfwm4-4.14.6.tar.bz2) = 1167818 From owner-svn-ports-branches@freebsd.org Sun Nov 15 20:53:10 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 09768469280; Sun, 15 Nov 2020 20:53:10 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CZ4D56v0Kz3hdB; Sun, 15 Nov 2020 20:53:09 +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 DFF0B21DD8; Sun, 15 Nov 2020 20:53:09 +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 0AFKr9Ng036992; Sun, 15 Nov 2020 20:53:09 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AFKr9Xe036990; Sun, 15 Nov 2020 20:53:09 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <202011152053.0AFKr9Xe036990@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Sun, 15 Nov 2020 20:53:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555434 - branches/2020Q4/mail/thunderbird X-SVN-Group: ports-branches X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: branches/2020Q4/mail/thunderbird X-SVN-Commit-Revision: 555434 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 20:53:10 -0000 Author: cmt Date: Sun Nov 15 20:53:09 2020 New Revision: 555434 URL: https://svnweb.freebsd.org/changeset/ports/555434 Log: MFH: r555433 mail/thunderbird: update to 78.5.0 rc2 Release Notes (soon): https://www.thunderbird.net/en-US/thunderbird/78.5.0/releasenotes/ Approved by: portmgr (blanket: web browser alike) Modified: branches/2020Q4/mail/thunderbird/Makefile branches/2020Q4/mail/thunderbird/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/mail/thunderbird/Makefile ============================================================================== --- branches/2020Q4/mail/thunderbird/Makefile Sun Nov 15 20:51:45 2020 (r555433) +++ branches/2020Q4/mail/thunderbird/Makefile Sun Nov 15 20:53:09 2020 (r555434) @@ -3,9 +3,10 @@ PORTNAME= thunderbird DISTVERSION= 78.5.0 +PORTREVISION= 1 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org Modified: branches/2020Q4/mail/thunderbird/distinfo ============================================================================== --- branches/2020Q4/mail/thunderbird/distinfo Sun Nov 15 20:51:45 2020 (r555433) +++ branches/2020Q4/mail/thunderbird/distinfo Sun Nov 15 20:53:09 2020 (r555434) @@ -1,3 +1,3 @@ -TIMESTAMP = 1605388139 -SHA256 (thunderbird-78.5.0.source.tar.xz) = 8822d072662d379169064c171a585b69c111a9461cfe98dcc9cf24272a6fd953 -SIZE (thunderbird-78.5.0.source.tar.xz) = 353712548 +TIMESTAMP = 1605465744 +SHA256 (thunderbird-78.5.0.source.tar.xz) = 2da45a737ea5ef8e186bb82695984a791fef1e4586c3d11667c3a2b8888d8440 +SIZE (thunderbird-78.5.0.source.tar.xz) = 352774632 From owner-svn-ports-branches@freebsd.org Mon Nov 16 17:22:18 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8050F46C109; Mon, 16 Nov 2020 17:22: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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CZbVL3HTQz3sTx; Mon, 16 Nov 2020 17:22:18 +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 63E741174F; Mon, 16 Nov 2020 17:22:18 +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 0AGHMI8G024297; Mon, 16 Nov 2020 17:22:18 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AGHMI8s024296; Mon, 16 Nov 2020 17:22:18 GMT (envelope-from krion@FreeBSD.org) Message-Id: <202011161722.0AGHMI8s024296@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Mon, 16 Nov 2020 17:22:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555501 - branches/2020Q4/sysutils/cbsd X-SVN-Group: ports-branches X-SVN-Commit-Author: krion X-SVN-Commit-Paths: branches/2020Q4/sysutils/cbsd X-SVN-Commit-Revision: 555501 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Nov 2020 17:22:18 -0000 Author: krion Date: Mon Nov 16 17:22:17 2020 New Revision: 555501 URL: https://svnweb.freebsd.org/changeset/ports/555501 Log: MFH: r555500 Update to 12.2.2 Changes: https://github.com/cbsd/cbsd/releases/tag/v12.2.2 Submitted by: maintainer Approved by: ports-secteam (blanket) Modified: branches/2020Q4/sysutils/cbsd/Makefile branches/2020Q4/sysutils/cbsd/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/sysutils/cbsd/Makefile ============================================================================== --- branches/2020Q4/sysutils/cbsd/Makefile Mon Nov 16 17:20:04 2020 (r555500) +++ branches/2020Q4/sysutils/cbsd/Makefile Mon Nov 16 17:22:17 2020 (r555501) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cbsd -DISTVERSION= 12.2.1 +DISTVERSION= 12.2.2 CATEGORIES= sysutils MAINTAINER= olevole@olevole.ru Modified: branches/2020Q4/sysutils/cbsd/distinfo ============================================================================== --- branches/2020Q4/sysutils/cbsd/distinfo Mon Nov 16 17:20:04 2020 (r555500) +++ branches/2020Q4/sysutils/cbsd/distinfo Mon Nov 16 17:22:17 2020 (r555501) @@ -1,3 +1,3 @@ -TIMESTAMP = 1605026717 -SHA256 (cbsd-cbsd-12.2.1_GH0.tar.gz) = 324df410029374c17a8d8f70591f798ad20367d2257fcf2139ecbb319e31ee38 -SIZE (cbsd-cbsd-12.2.1_GH0.tar.gz) = 5899098 +TIMESTAMP = 1605547100 +SHA256 (cbsd-cbsd-12.2.2_GH0.tar.gz) = 9032a833297b4cd35d2c94c8c60039ee2eceef79f07e0b64a580af5fbee8a23d +SIZE (cbsd-cbsd-12.2.2_GH0.tar.gz) = 5902135 From owner-svn-ports-branches@freebsd.org Mon Nov 16 23:31:02 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 76F9C474746; Mon, 16 Nov 2020 23:31:02 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CZlgp2npmz4kLw; Mon, 16 Nov 2020 23:31: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 48269163EB; Mon, 16 Nov 2020 23:31: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 0AGNV2Ns050017; Mon, 16 Nov 2020 23:31:02 GMT (envelope-from dbaio@FreeBSD.org) Received: (from dbaio@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AGNV1Sl050016; Mon, 16 Nov 2020 23:31:01 GMT (envelope-from dbaio@FreeBSD.org) Message-Id: <202011162331.0AGNV1Sl050016@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dbaio set sender to dbaio@FreeBSD.org using -f From: "Danilo G. Baio" Date: Mon, 16 Nov 2020 23:31:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555522 - branches/2020Q4/sysutils/duplicity X-SVN-Group: ports-branches X-SVN-Commit-Author: dbaio X-SVN-Commit-Paths: branches/2020Q4/sysutils/duplicity X-SVN-Commit-Revision: 555522 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Nov 2020 23:31:02 -0000 Author: dbaio Date: Mon Nov 16 23:31:01 2020 New Revision: 555522 URL: https://svnweb.freebsd.org/changeset/ports/555522 Log: MFH: r555520 sysutils/duplicity: Update to 0.8.17 Changelog: https://launchpad.net/duplicity/+milestone/0.8.17 Approved by: ports-secteam (blanket: bugfix release) Modified: branches/2020Q4/sysutils/duplicity/Makefile branches/2020Q4/sysutils/duplicity/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/sysutils/duplicity/Makefile ============================================================================== --- branches/2020Q4/sysutils/duplicity/Makefile Mon Nov 16 23:29:12 2020 (r555521) +++ branches/2020Q4/sysutils/duplicity/Makefile Mon Nov 16 23:31:01 2020 (r555522) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= duplicity -PORTVERSION= 0.8.16 +PORTVERSION= 0.8.17 CATEGORIES= sysutils MASTER_SITES= https://code.launchpad.net/duplicity/0.8-series/${PORTVERSION}/+download/ @@ -28,7 +28,7 @@ USE_LDCONFIG= yes SHEBANG_FILES= bin/duplicity bin/rdiffdir -PORTDOCS= CHANGELOG COPYING README.md README-REPO.md README-LOG.md +PORTDOCS= CHANGELOG.md COPYING README.md README-REPO.md README-LOG.md POST_PLIST= trim-duplicity-testing Modified: branches/2020Q4/sysutils/duplicity/distinfo ============================================================================== --- branches/2020Q4/sysutils/duplicity/distinfo Mon Nov 16 23:29:12 2020 (r555521) +++ branches/2020Q4/sysutils/duplicity/distinfo Mon Nov 16 23:31:01 2020 (r555522) @@ -1,3 +1,3 @@ -TIMESTAMP = 1601746249 -SHA256 (duplicity-0.8.16.tar.gz) = 2cfcd212834979751310d9df1a954b949f86b084efd5ad1f97dd744780ef9d1b -SIZE (duplicity-0.8.16.tar.gz) = 1470714 +TIMESTAMP = 1605461358 +SHA256 (duplicity-0.8.17.tar.gz) = a273b1e74d8d0b7825572f51be9c8284e579961e01f4fc1473048e95dce49984 +SIZE (duplicity-0.8.17.tar.gz) = 1351433 From owner-svn-ports-branches@freebsd.org Tue Nov 17 02:31:58 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2735547C0BD; Tue, 17 Nov 2020 02:31:58 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CZqhZ0fllz3Fdp; Tue, 17 Nov 2020 02:31:58 +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 098A918877; Tue, 17 Nov 2020 02:31:58 +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 0AH2Vv57065137; Tue, 17 Nov 2020 02:31:57 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AH2Vvdd065052; Tue, 17 Nov 2020 02:31:57 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202011170231.0AH2Vvdd065052@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 17 Nov 2020 02:31:57 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555536 - in branches/2020Q4/net-im/chatterino2: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in branches/2020Q4/net-im/chatterino2: . files X-SVN-Commit-Revision: 555536 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2020 02:31:58 -0000 Author: swills Date: Tue Nov 17 02:31:57 2020 New Revision: 555536 URL: https://svnweb.freebsd.org/changeset/ports/555536 Log: MFH: r555535 net-im/chatterino2: fix crash on startup Obtained from: https://github.com/Chatterino/chatterino2/pull/2192 Approved by: ports-secteam (implicit) Added: branches/2020Q4/net-im/chatterino2/files/patch-src_providers_ffz_FfzEmotes.cpp - copied unchanged from r555535, head/net-im/chatterino2/files/patch-src_providers_ffz_FfzEmotes.cpp Modified: branches/2020Q4/net-im/chatterino2/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/net-im/chatterino2/Makefile ============================================================================== --- branches/2020Q4/net-im/chatterino2/Makefile Tue Nov 17 02:29:28 2020 (r555535) +++ branches/2020Q4/net-im/chatterino2/Makefile Tue Nov 17 02:31:57 2020 (r555536) @@ -2,6 +2,7 @@ PORTNAME= chatterino2 PORTVERSION= g2020090101 +PORTREVISION= 1 CATEGORIES= net-im MAINTAINER= swills@FreeBSD.org @@ -46,7 +47,7 @@ QMAKE_ARGS= INCLUDEPATH+=${LOCALBASE}/include/qt5keych PORTDOCS= README.md docs/Commands.md docs/ENV.md docs/IMAGEUPLOADER.md \ docs/README.md docs/Regex.md -PORTSCOUT= skipv:v2.1.7,v2.1.0,v2.0.4,v2.0.3,v2.0.2,v2.0.1,v2.0.0 +PORTSCOUT= skipv:v2.2.2,v2.2.1,v2.2.0,v2.1.7,v2.1.6,v2.1.5,v2.1.4,v2.1.3,v2.1.2,v2.1.0,v2.0.4,v2.0.3,v2.0.2,v2.0.1,v2.0.0 post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR}/docs Copied: branches/2020Q4/net-im/chatterino2/files/patch-src_providers_ffz_FfzEmotes.cpp (from r555535, head/net-im/chatterino2/files/patch-src_providers_ffz_FfzEmotes.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/net-im/chatterino2/files/patch-src_providers_ffz_FfzEmotes.cpp Tue Nov 17 02:31:57 2020 (r555536, copy of r555535, head/net-im/chatterino2/files/patch-src_providers_ffz_FfzEmotes.cpp) @@ -0,0 +1,11 @@ +--- src/providers/ffz/FfzEmotes.cpp.orig 2020-11-16 21:05:47 UTC ++++ src/providers/ffz/FfzEmotes.cpp +@@ -14,7 +14,7 @@ namespace { + Url getEmoteLink(const QJsonObject &urls, const QString &emoteScale) + { + auto emote = urls.value(emoteScale); +- if (emote.isUndefined()) ++ if (emote.isUndefined() || emote.type() == QJsonValue::Null) + { + return {""}; + } From owner-svn-ports-branches@freebsd.org Tue Nov 17 11:05:30 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 503C82E861E; Tue, 17 Nov 2020 11:05:30 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cb3561p7sz4Vf0; Tue, 17 Nov 2020 11:05:30 +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 2C3901EE39; Tue, 17 Nov 2020 11:05:30 +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 0AHB5Tqp086608; Tue, 17 Nov 2020 11:05:29 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AHB5TWl086606; Tue, 17 Nov 2020 11:05:29 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <202011171105.0AHB5TWl086606@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Tue, 17 Nov 2020 11:05:29 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555548 - branches/2020Q4/mail/thunderbird X-SVN-Group: ports-branches X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: branches/2020Q4/mail/thunderbird X-SVN-Commit-Revision: 555548 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2020 11:05:30 -0000 Author: cmt Date: Tue Nov 17 11:05:29 2020 New Revision: 555548 URL: https://svnweb.freebsd.org/changeset/ports/555548 Log: MFH: r555547 mail/thunderbird: update to 78.5.0 (rc3) Release Notes (soon): https://www.thunderbird.net/en-US/thunderbird/78.5.0/releasenotes/ Approved by: portmgr (blanket: web browser alike) Modified: branches/2020Q4/mail/thunderbird/Makefile branches/2020Q4/mail/thunderbird/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/mail/thunderbird/Makefile ============================================================================== --- branches/2020Q4/mail/thunderbird/Makefile Tue Nov 17 11:03:18 2020 (r555547) +++ branches/2020Q4/mail/thunderbird/Makefile Tue Nov 17 11:05:29 2020 (r555548) @@ -3,10 +3,10 @@ PORTNAME= thunderbird DISTVERSION= 78.5.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ - MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build2/source + MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build3/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org Modified: branches/2020Q4/mail/thunderbird/distinfo ============================================================================== --- branches/2020Q4/mail/thunderbird/distinfo Tue Nov 17 11:03:18 2020 (r555547) +++ branches/2020Q4/mail/thunderbird/distinfo Tue Nov 17 11:05:29 2020 (r555548) @@ -1,3 +1,3 @@ -TIMESTAMP = 1605465744 -SHA256 (thunderbird-78.5.0.source.tar.xz) = 2da45a737ea5ef8e186bb82695984a791fef1e4586c3d11667c3a2b8888d8440 -SIZE (thunderbird-78.5.0.source.tar.xz) = 352774632 +TIMESTAMP = 1605609183 +SHA256 (thunderbird-78.5.0.source.tar.xz) = 5f8a89c20e3ede73510da3eef866a1d07f31251c7912f6c52759db78f2307b77 +SIZE (thunderbird-78.5.0.source.tar.xz) = 355944116 From owner-svn-ports-branches@freebsd.org Tue Nov 17 16:07:02 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 52E39468698; Tue, 17 Nov 2020 16:07:02 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cb9n21ry8z4qDB; Tue, 17 Nov 2020 16:07:02 +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 32613228C8; Tue, 17 Nov 2020 16:07:02 +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 0AHG72w6074089; Tue, 17 Nov 2020 16:07:02 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AHG71TU074087; Tue, 17 Nov 2020 16:07:01 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202011171607.0AHG71TU074087@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Tue, 17 Nov 2020 16:07:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555566 - branches/2020Q4/security/wolfssl X-SVN-Group: ports-branches X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: branches/2020Q4/security/wolfssl X-SVN-Commit-Revision: 555566 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2020 16:07:02 -0000 Author: pkubaj Date: Tue Nov 17 16:07:01 2020 New Revision: 555566 URL: https://svnweb.freebsd.org/changeset/ports/555566 Log: MFH: r555565 security/wolfssl: fix build on big-endian Merge upstream patch to fix build on big-endian architectures. Also unmark mips and mips64 as broken, now builds fine. Approved by: portmgr (fix build blanket) Modified: branches/2020Q4/security/wolfssl/Makefile branches/2020Q4/security/wolfssl/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/security/wolfssl/Makefile ============================================================================== --- branches/2020Q4/security/wolfssl/Makefile Tue Nov 17 16:06:06 2020 (r555565) +++ branches/2020Q4/security/wolfssl/Makefile Tue Nov 17 16:07:01 2020 (r555566) @@ -8,11 +8,11 @@ MASTER_SITES= https://www.wolfssl.com/ \ MAINTAINER= fox@FreeBSD.org COMMENT= Embedded SSL C-Library +PATCH_SITES= https://github.com/wolfSSL/wolfssl/commit/ +PATCHFILES= e9b1ceae7e1daac6206d399e30c04bd51e3f8c7f.patch:-p1 + LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING - -BROKEN_mips= fails to package: pkg-static: Unable to access file libwolfssl.so.3: No such file or directory -BROKEN_mips64= fails to package: pkg-static: Unable to access file libwolfssl.so.3: No such file or directory USES= libtool zip USE_LDCONFIG= yes Modified: branches/2020Q4/security/wolfssl/distinfo ============================================================================== --- branches/2020Q4/security/wolfssl/distinfo Tue Nov 17 16:06:06 2020 (r555565) +++ branches/2020Q4/security/wolfssl/distinfo Tue Nov 17 16:07:01 2020 (r555566) @@ -1,3 +1,5 @@ -TIMESTAMP = 1598056212 +TIMESTAMP = 1605621449 SHA256 (wolfssl-4.5.0.zip) = db2dd2c85e36130bb6dd666edca70c1bd642afa10ef0a5ac69e9142a26d25b3f SIZE (wolfssl-4.5.0.zip) = 8747110 +SHA256 (e9b1ceae7e1daac6206d399e30c04bd51e3f8c7f.patch) = d012891c56b9d82d1dde9d956affc49c596d4ebf2d71f4ee0cc3ff1c50aa6fbd +SIZE (e9b1ceae7e1daac6206d399e30c04bd51e3f8c7f.patch) = 1043 From owner-svn-ports-branches@freebsd.org Wed Nov 18 01:40:43 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 3334A4754DC; Wed, 18 Nov 2020 01:40:43 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CbQVz10SPz4TlM; Wed, 18 Nov 2020 01:40:43 +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 1544616ED; Wed, 18 Nov 2020 01:40:43 +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 0AI1eg9s031733; Wed, 18 Nov 2020 01:40:42 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AI1eg7Z031732; Wed, 18 Nov 2020 01:40:42 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <202011180140.0AI1eg7Z031732@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Wed, 18 Nov 2020 01:40:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555615 - branches/2020Q4/cad/ktechlab X-SVN-Group: ports-branches X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: branches/2020Q4/cad/ktechlab X-SVN-Commit-Revision: 555615 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2020 01:40:43 -0000 Author: pkubaj Date: Wed Nov 18 01:40:42 2020 New Revision: 555615 URL: https://svnweb.freebsd.org/changeset/ports/555615 Log: MFH: r555614 cad/ktechlab: fix build on GCC architectures The compiler feature "cxx_decltype" is not known to CXX compiler "GNU" version 4.2.1. Approved by: portmgr (fix build blanket) Modified: branches/2020Q4/cad/ktechlab/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/cad/ktechlab/Makefile ============================================================================== --- branches/2020Q4/cad/ktechlab/Makefile Wed Nov 18 01:39:47 2020 (r555614) +++ branches/2020Q4/cad/ktechlab/Makefile Wed Nov 18 01:40:42 2020 (r555615) @@ -13,7 +13,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libgpsim.so:misc/gpsim -USES= cmake desktop-file-utils gnome kde:5 localbase qt:5 shared-mime-info +USES= cmake compiler:c++11-lang desktop-file-utils gnome kde:5 \ + localbase qt:5 shared-mime-info USE_GITHUB= yes USE_QT= concurrent core dbus gui network printsupport widgets xml \ qmake_build buildtools_build From owner-svn-ports-branches@freebsd.org Thu Nov 19 00:40:00 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 064954763A7; Thu, 19 Nov 2020 00:40:00 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cc16R6gXsz4snV; Thu, 19 Nov 2020 00:39:59 +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 D3A3B1B091; Thu, 19 Nov 2020 00:39:59 +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 0AJ0dxMq086716; Thu, 19 Nov 2020 00:39:59 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AJ0dxsw086714; Thu, 19 Nov 2020 00:39:59 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202011190039.0AJ0dxsw086714@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 19 Nov 2020 00:39:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555677 - branches/2020Q4/emulators/citra X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: branches/2020Q4/emulators/citra X-SVN-Commit-Revision: 555677 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Nov 2020 00:40:00 -0000 Author: jbeich Date: Thu Nov 19 00:39:59 2020 New Revision: 555677 URL: https://svnweb.freebsd.org/changeset/ports/555677 Log: MFH: r555526 r555674 emulators/citra: update to s20201118 Changes: https://github.com/citra-emu/citra/compare/bf03fb83a...4efeace8e Approved by: ports-secteam (fluffy, implicit for snapshots) Modified: branches/2020Q4/emulators/citra/Makefile branches/2020Q4/emulators/citra/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/emulators/citra/Makefile ============================================================================== --- branches/2020Q4/emulators/citra/Makefile Thu Nov 19 00:36:52 2020 (r555676) +++ branches/2020Q4/emulators/citra/Makefile Thu Nov 19 00:39:59 2020 (r555677) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= citra -PORTVERSION= s20201112 +PORTVERSION= s20201118 PORTREVISION?= 0 CATEGORIES= emulators @@ -23,7 +23,7 @@ LIB_DEPENDS= libboost_serialization.so:devel/boost-lib USE_GITHUB= yes GH_ACCOUNT= citra-emu -GH_TAGNAME= bf03fb83a +GH_TAGNAME= 4efeace8e GH_TUPLE= citra-emu:ext-boost:36603a1:boost/externals/boost \ citra-emu:ext-libressl-portable:7d01cb0:libressl/externals/libressl \ citra-emu:ext-soundtouch:060181e:soundtouch/externals/soundtouch \ @@ -35,7 +35,7 @@ GH_TUPLE= citra-emu:ext-boost:36603a1:boost/externals/ facebook:zstd:v1.4.4:zstd/externals/zstd \ fmtlib:fmt:6.0.0-56-g4b8f8fac:fmt/externals/fmt \ herumi:xbyak:v5.95:xbyak/externals/xbyak \ - kinetiknz:cubeb:cubeb-0.2-1251-ga7e83aa:cubeb/externals/cubeb \ + kinetiknz:cubeb:cubeb-0.2-1255-g1d66483:cubeb/externals/cubeb \ lsalzman:enet:0eaf48e:enet/externals/enet \ lvandeve:lodepng:31d9704:lodepng/externals/lodepng/lodepng \ neobrain:nihstro:fd69de1:nihstro/externals/nihstro \ Modified: branches/2020Q4/emulators/citra/distinfo ============================================================================== --- branches/2020Q4/emulators/citra/distinfo Thu Nov 19 00:36:52 2020 (r555676) +++ branches/2020Q4/emulators/citra/distinfo Thu Nov 19 00:39:59 2020 (r555677) @@ -1,6 +1,6 @@ -TIMESTAMP = 1605225440 -SHA256 (citra-emu-citra-s20201112-bf03fb83a_GH0.tar.gz) = a811d7a7a9546facbaeba6378844a845c97c89ea54dcb68af238ea754b39e565 -SIZE (citra-emu-citra-s20201112-bf03fb83a_GH0.tar.gz) = 5277137 +TIMESTAMP = 1605686948 +SHA256 (citra-emu-citra-s20201118-4efeace8e_GH0.tar.gz) = 8de1d1a80d3bb784e59cee8907353ef2348a172489f44d4225251bb0f1b33bf7 +SIZE (citra-emu-citra-s20201118-4efeace8e_GH0.tar.gz) = 5278633 SHA256 (citra-emu-ext-boost-36603a1_GH0.tar.gz) = a1885cf0f7b1c790f8a83e963fec591bad1232e6b824e64d8db136920ec1b67d SIZE (citra-emu-ext-boost-36603a1_GH0.tar.gz) = 2351603 SHA256 (citra-emu-ext-libressl-portable-7d01cb0_GH0.tar.gz) = f3fc8c9d4991b05ca1e1c8f5907ecd3ffd9724a8dccf328087b4784cda5c7db3 @@ -23,8 +23,8 @@ SHA256 (fmtlib-fmt-6.0.0-56-g4b8f8fac_GH0.tar.gz) = f9 SIZE (fmtlib-fmt-6.0.0-56-g4b8f8fac_GH0.tar.gz) = 713067 SHA256 (herumi-xbyak-v5.95_GH0.tar.gz) = f479a0ef4e3f94f4a02d37081f2164b6b08ac6d685803a885246e10798f919e7 SIZE (herumi-xbyak-v5.95_GH0.tar.gz) = 226726 -SHA256 (kinetiknz-cubeb-cubeb-0.2-1251-ga7e83aa_GH0.tar.gz) = ded9dbd4a35aaba5a5e15883da17111ec46395241f283223683590adb1cfaf19 -SIZE (kinetiknz-cubeb-cubeb-0.2-1251-ga7e83aa_GH0.tar.gz) = 206804 +SHA256 (kinetiknz-cubeb-cubeb-0.2-1255-g1d66483_GH0.tar.gz) = 5f28c9ec992554b56d82ab1935b4a54193103941ccce01f0526fafb691c636cb +SIZE (kinetiknz-cubeb-cubeb-0.2-1255-g1d66483_GH0.tar.gz) = 206634 SHA256 (lsalzman-enet-0eaf48e_GH0.tar.gz) = 50c3a47329096908d53ac906b18d5759f06600b4c6612120d18be2aee481e216 SIZE (lsalzman-enet-0eaf48e_GH0.tar.gz) = 79503 SHA256 (lvandeve-lodepng-31d9704_GH0.tar.gz) = 86e140a13d1f425d45f891a082111435d3333385d36b66c94a031c029f4422c1 From owner-svn-ports-branches@freebsd.org Thu Nov 19 07:39:43 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 1B2662EA570; Thu, 19 Nov 2020 07:39:43 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CcBQk6QVmz3r5Z; Thu, 19 Nov 2020 07:39:42 +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 C55CA2033D; Thu, 19 Nov 2020 07:39:42 +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 0AJ7dgHk049079; Thu, 19 Nov 2020 07:39:42 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AJ7dgCp049076; Thu, 19 Nov 2020 07:39:42 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202011190739.0AJ7dgCp049076@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Thu, 19 Nov 2020 07:39:42 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555693 - in branches/2020Q4/astro/siril: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in branches/2020Q4/astro/siril: . files X-SVN-Commit-Revision: 555693 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Nov 2020 07:39:43 -0000 Author: yuri Date: Thu Nov 19 07:39:41 2020 New Revision: 555693 URL: https://svnweb.freebsd.org/changeset/ports/555693 Log: MFH: r555541 astro/siril: Fix run-time error: Undefined symbol "cblas_dcopy" This was because math/gsl installs 2 libraries, libgsl.so and libgslcblas.so, the former of which should depend on the latter one. Instead, the gsl package through its pkg-config script asks users to link to both libraries. This fails when the link line also has -Wl,--as-needed which causes the linker to drop the second library. In such case the above error is triggered at runtime. Also update WWW. PR: 251206 Submitted by: Ned Leitch Approved by: ports-secteam (fluffy) Added: branches/2020Q4/astro/siril/files/patch-meson.build - copied unchanged from r555541, head/astro/siril/files/patch-meson.build Deleted: branches/2020Q4/astro/siril/files/patch-Makefile.am Modified: branches/2020Q4/astro/siril/Makefile branches/2020Q4/astro/siril/pkg-descr Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/astro/siril/Makefile ============================================================================== --- branches/2020Q4/astro/siril/Makefile Thu Nov 19 07:38:11 2020 (r555692) +++ branches/2020Q4/astro/siril/Makefile Thu Nov 19 07:39:41 2020 (r555693) @@ -2,6 +2,7 @@ PORTNAME= siril DISTVERSION= 0.99.6 +PORTREVISION= 1 CATEGORIES= astro graphics MASTER_SITES= https://free-astro.org/download/ Copied: branches/2020Q4/astro/siril/files/patch-meson.build (from r555541, head/astro/siril/files/patch-meson.build) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2020Q4/astro/siril/files/patch-meson.build Thu Nov 19 07:39:41 2020 (r555693, copy of r555541, head/astro/siril/files/patch-meson.build) @@ -0,0 +1,10 @@ +--- meson.build.orig 2020-09-22 20:01:48 UTC ++++ meson.build +@@ -123,6 +123,7 @@ if platform_linux + elif platform_bsd + siril_link_arg += '-rdynamic' + siril_link_arg += '-lexecinfo' ++ siril_link_arg += '-Wl,--no-as-needed' # workaround for https://gitlab.com/free-astro/siril/-/issues/614 (Bug#251206) + elif platform_windows + #TODO: Do Meson provide more elegant way? + siril_link_arg += '-Wl,--export-all-symbols' Modified: branches/2020Q4/astro/siril/pkg-descr ============================================================================== --- branches/2020Q4/astro/siril/pkg-descr Thu Nov 19 07:38:11 2020 (r555692) +++ branches/2020Q4/astro/siril/pkg-descr Thu Nov 19 07:39:41 2020 (r555693) @@ -8,4 +8,4 @@ interface than Iris' command line as well as more mode algorithms, but it is not yet as automated as DeepSkyStacker or Registax. It also provides a basic command line to access various processing functions. -WWW: https://free-astro.org/index.php/Siril +WWW: https://www.siril.org/ From owner-svn-ports-branches@freebsd.org Thu Nov 19 15:58:26 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 5623A46EAD4; Thu, 19 Nov 2020 15:58:26 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CcPVB238Lz4pnP; Thu, 19 Nov 2020 15:58:26 +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 392322682A; Thu, 19 Nov 2020 15:58:26 +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 0AJFwQd3058497; Thu, 19 Nov 2020 15:58:26 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AJFwPA6058495; Thu, 19 Nov 2020 15:58:25 GMT (envelope-from krion@FreeBSD.org) Message-Id: <202011191558.0AJFwPA6058495@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Thu, 19 Nov 2020 15:58:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555708 - branches/2020Q4/sysutils/py-salt X-SVN-Group: ports-branches X-SVN-Commit-Author: krion X-SVN-Commit-Paths: branches/2020Q4/sysutils/py-salt X-SVN-Commit-Revision: 555708 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Nov 2020 15:58:26 -0000 Author: krion Date: Thu Nov 19 15:58:25 2020 New Revision: 555708 URL: https://svnweb.freebsd.org/changeset/ports/555708 Log: MFH: r555707 Update to 3002.2 Approved by: maintainer Approved by: ports-secteam (blanket) Modified: branches/2020Q4/sysutils/py-salt/Makefile branches/2020Q4/sysutils/py-salt/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/sysutils/py-salt/Makefile ============================================================================== --- branches/2020Q4/sysutils/py-salt/Makefile Thu Nov 19 15:56:37 2020 (r555707) +++ branches/2020Q4/sysutils/py-salt/Makefile Thu Nov 19 15:58:25 2020 (r555708) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= salt -PORTVERSION= 3002 -PORTREVISION= 1 +PORTVERSION= 3002.2 CATEGORIES= sysutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} Modified: branches/2020Q4/sysutils/py-salt/distinfo ============================================================================== --- branches/2020Q4/sysutils/py-salt/distinfo Thu Nov 19 15:56:37 2020 (r555707) +++ branches/2020Q4/sysutils/py-salt/distinfo Thu Nov 19 15:58:25 2020 (r555708) @@ -1,3 +1,3 @@ -TIMESTAMP = 1603344549 -SHA256 (salt-3002.tar.gz) = b622c9de9fde571db96bfd659a183bea553dd26e71cac85659387e937221aae6 -SIZE (salt-3002.tar.gz) = 15741439 +TIMESTAMP = 1605797312 +SHA256 (salt-3002.2.tar.gz) = bd6d29621ce8e099412777cd396af35474aa112bb0999b5da804387d87290075 +SIZE (salt-3002.2.tar.gz) = 15765855 From owner-svn-ports-branches@freebsd.org Thu Nov 19 20:06:34 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 8B8FC472FE6; Thu, 19 Nov 2020 20:06:34 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CcW0V3XFJz3LqF; Thu, 19 Nov 2020 20:06:34 +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 6C3761F95; Thu, 19 Nov 2020 20:06:34 +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 0AJK6YCC014557; Thu, 19 Nov 2020 20:06:34 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AJK6YSb014556; Thu, 19 Nov 2020 20:06:34 GMT (envelope-from pi@FreeBSD.org) Message-Id: <202011192006.0AJK6YSb014556@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 19 Nov 2020 20:06:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555712 - branches/2020Q4/www/typo3-9 X-SVN-Group: ports-branches X-SVN-Commit-Author: pi X-SVN-Commit-Paths: branches/2020Q4/www/typo3-9 X-SVN-Commit-Revision: 555712 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Nov 2020 20:06:34 -0000 Author: pi Date: Thu Nov 19 20:06:33 2020 New Revision: 555712 URL: https://svnweb.freebsd.org/changeset/ports/555712 Log: MFH: r555654 www/typo3-9: upgrade 9.5.21 -> 9.5.23 - Fixes three XSS vulnerabilities detected in Fluid Engine PR: 251213 Submitted by: Helmut Ritter (maintainer) Relnotes: https://typo3.org/article/typo3-10410-and-9523-security-releases-published Security: TYPO3-CORE-SA-2020-009, TYPO3-CORE-SA-2020-010, TYPO3-CORE-SA-2020-011, TYPO3-CORE-SA-2020-012 Approved by: ports-secteam (fluffy) Modified: branches/2020Q4/www/typo3-9/Makefile branches/2020Q4/www/typo3-9/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/www/typo3-9/Makefile ============================================================================== --- branches/2020Q4/www/typo3-9/Makefile Thu Nov 19 18:59:20 2020 (r555711) +++ branches/2020Q4/www/typo3-9/Makefile Thu Nov 19 20:06:33 2020 (r555712) @@ -25,7 +25,7 @@ PORTSCOUT= limit:^${PORT_V_MAJOR}\.${PORT_V_MINOR}\. PORT_V_MAJOR= 9 PORT_V_MINOR= 5 -PORT_V_PATCH= 21 +PORT_V_PATCH= 23 TYPO3WWW= www TYPO3SRC= ${PORTNAME}_src-${PORTVERSION} Modified: branches/2020Q4/www/typo3-9/distinfo ============================================================================== --- branches/2020Q4/www/typo3-9/distinfo Thu Nov 19 18:59:20 2020 (r555711) +++ branches/2020Q4/www/typo3-9/distinfo Thu Nov 19 20:06:33 2020 (r555712) @@ -1,3 +1,3 @@ -TIMESTAMP = 1600093860 -SHA256 (typo3_src-9.5.21.tar.gz) = 44aa723607b5a55c7d5d63df7bb3aa55ae67c52b01ff3fa245c9268e78f92e6c -SIZE (typo3_src-9.5.21.tar.gz) = 29483902 +TIMESTAMP = 1605617102 +SHA256 (typo3_src-9.5.23.tar.gz) = 6453a7290329ae0bd37a8d656d9834694577ceb40b3376343061937a1c4cf30f +SIZE (typo3_src-9.5.23.tar.gz) = 29616618 From owner-svn-ports-branches@freebsd.org Thu Nov 19 20:07:38 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E69514733BD; Thu, 19 Nov 2020 20:07:38 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CcW1k50rmz3LtD; Thu, 19 Nov 2020 20:07:38 +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 9EF7D1BD1; Thu, 19 Nov 2020 20:07:38 +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 0AJK7cpd014786; Thu, 19 Nov 2020 20:07:38 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AJK7cxx014783; Thu, 19 Nov 2020 20:07:38 GMT (envelope-from pi@FreeBSD.org) Message-Id: <202011192007.0AJK7cxx014783@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Thu, 19 Nov 2020 20:07:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555713 - branches/2020Q4/www/typo3-10 X-SVN-Group: ports-branches X-SVN-Commit-Author: pi X-SVN-Commit-Paths: branches/2020Q4/www/typo3-10 X-SVN-Commit-Revision: 555713 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Nov 2020 20:07:39 -0000 Author: pi Date: Thu Nov 19 20:07:37 2020 New Revision: 555713 URL: https://svnweb.freebsd.org/changeset/ports/555713 Log: MFH: r555662 www/typo3-10: update 10.4.7 -> 10.4.10 PR: 251212 Submitted by: Helmut Ritter (maintainer) Relnotes: https://typo3.org/article/typo3-10410-and-9523-security-releases-published Security: TYPO3-CORE-SA-2020-009, TYPO3-CORE-SA-2020-010, TYPO3-CORE-SA-2020-011, TYPO3-CORE-SA-2020-012 Approved by: ports-secteam (fluffy) Modified: branches/2020Q4/www/typo3-10/Makefile branches/2020Q4/www/typo3-10/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/www/typo3-10/Makefile ============================================================================== --- branches/2020Q4/www/typo3-10/Makefile Thu Nov 19 20:06:33 2020 (r555712) +++ branches/2020Q4/www/typo3-10/Makefile Thu Nov 19 20:07:37 2020 (r555713) @@ -25,7 +25,7 @@ PORTSCOUT= limit:^${PORT_V_MAJOR}\.${PORT_V_MINOR}\. PORT_V_MAJOR= 10 PORT_V_MINOR= 4 -PORT_V_PATCH= 7 +PORT_V_PATCH= 10 TYPO3WWW= www TYPO3SRC= ${PORTNAME}_src-${PORTVERSION} Modified: branches/2020Q4/www/typo3-10/distinfo ============================================================================== --- branches/2020Q4/www/typo3-10/distinfo Thu Nov 19 20:06:33 2020 (r555712) +++ branches/2020Q4/www/typo3-10/distinfo Thu Nov 19 20:07:37 2020 (r555713) @@ -1,3 +1,3 @@ -TIMESTAMP = 1600092374 -SHA256 (typo3_src-10.4.7.tar.gz) = f7ae7b45e905f2ceac93f050aa3c6c0f9070af2cf56358b6f1e8a3e0885c45bc -SIZE (typo3_src-10.4.7.tar.gz) = 28466652 +TIMESTAMP = 1605614355 +SHA256 (typo3_src-10.4.10.tar.gz) = 402361a51aaaef0339ef49bbc68d1b86b1c46ebe41f763ba6ee8978a720254f5 +SIZE (typo3_src-10.4.10.tar.gz) = 28696697 From owner-svn-ports-branches@freebsd.org Fri Nov 20 12:33:59 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A5C0A2E9641; Fri, 20 Nov 2020 12:33:59 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Ccwvq4M3Nz3JrV; Fri, 20 Nov 2020 12:33:59 +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 8827716500; Fri, 20 Nov 2020 12:33:59 +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 0AKCXxLC033327; Fri, 20 Nov 2020 12:33:59 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AKCXwPR033321; Fri, 20 Nov 2020 12:33:58 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202011201233.0AKCXwPR033321@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 20 Nov 2020 12:33:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555756 - in branches/2020Q4/devel/llvm11: . files/compiler-rt X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2020Q4/devel/llvm11: . files/compiler-rt X-SVN-Commit-Revision: 555756 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2020 12:33:59 -0000 Author: jbeich Date: Fri Nov 20 12:33:58 2020 New Revision: 555756 URL: https://svnweb.freebsd.org/changeset/ports/555756 Log: MFH: r551536 r552154 by brooks Welcome 11.0.0 release. Approved by: ports-secteam (fluffy) Modified: branches/2020Q4/devel/llvm11/Makefile branches/2020Q4/devel/llvm11/distinfo branches/2020Q4/devel/llvm11/files/compiler-rt/patch-lib_sanitizer__common_sanitizer__platform__interceptors.h branches/2020Q4/devel/llvm11/pkg-plist Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/devel/llvm11/Makefile ============================================================================== --- branches/2020Q4/devel/llvm11/Makefile Fri Nov 20 11:05:58 2020 (r555755) +++ branches/2020Q4/devel/llvm11/Makefile Fri Nov 20 12:33:58 2020 (r555756) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= llvm -DISTVERSION= 11.0.0rc4 +DISTVERSION= 11.0.0 PORTREVISION= 0 CATEGORIES= devel lang MASTER_SITES= https://github.com/llvm/llvm-project/releases/download/llvmorg-${DISTVERSION:S/rc/-rc/}/ \ @@ -316,12 +316,13 @@ NATIVE_BACKENDS= ${_NATIVE_BACKENDS} FREEBSD_BACKENDS+= AMDGPU NATIVE_BACKENDS+= AMDGPU .endif -STANDARD_BACKENDS= ${_FREEBSD_BACKENDS} AMDGPU BPF Hexagon Lanai MSP430 \ - NVPTX SystemZ WebAssembly XCore +STANDARD_BACKENDS= ${_FREEBSD_BACKENDS} AMDGPU AVR BPF Hexagon Lanai \ + MSP430 NVPTX SystemZ WebAssembly XCore _BE_LIBS_COMMON= CodeGen Desc Info _BE_LIBS_AArch64= AsmParser Disassembler Utils _BE_LIBS_AMDGPU= AsmParser Disassembler Utils _BE_LIBS_ARM= AsmParser Disassembler Utils +_BE_LIBS_AVR= AsmParser Disassembler _BE_LIBS_BPF= AsmParser Disassembler _BE_LIBS_Hexagon= AsmParser Disassembler _BE_LIBS_Lanai= AsmParser Disassembler Modified: branches/2020Q4/devel/llvm11/distinfo ============================================================================== --- branches/2020Q4/devel/llvm11/distinfo Fri Nov 20 11:05:58 2020 (r555755) +++ branches/2020Q4/devel/llvm11/distinfo Fri Nov 20 12:33:58 2020 (r555756) @@ -1,15 +1,15 @@ -TIMESTAMP = 1601492118 -SHA256 (llvm-11.0.0rc4.src.tar.xz) = 9e46267ae7fcb68f2d96a73f7a13b6e573a9076a35e01f6bbc37dfd80433b2c4 -SIZE (llvm-11.0.0rc4.src.tar.xz) = 39479088 -SHA256 (clang-11.0.0rc4.src.tar.xz) = eb18913aba50e940b94879e5db322fbc38e0e36276c32cc9b6031a716560ba73 -SIZE (clang-11.0.0rc4.src.tar.xz) = 14983708 -SHA256 (compiler-rt-11.0.0rc4.src.tar.xz) = 505081dbd05c9dc707acc5c4fe4825a20e23c3ddcd1891ffec0dd59bc8f31f95 -SIZE (compiler-rt-11.0.0rc4.src.tar.xz) = 2138312 -SHA256 (clang-tools-extra-11.0.0rc4.src.tar.xz) = 1f98352720d77fd6ef6e8368efa644b3d6a33f4979b0b206abaac0f2c1de1dc9 -SIZE (clang-tools-extra-11.0.0rc4.src.tar.xz) = 1513540 -SHA256 (lld-11.0.0rc4.src.tar.xz) = ebb7cb41a0b88f5076ff01d1ecab61505dbb9fc86a42c88efc81fa722918a846 -SIZE (lld-11.0.0rc4.src.tar.xz) = 1247224 -SHA256 (lldb-11.0.0rc4.src.tar.xz) = d26be8f40879f7989520ae595b716bc40b5f211034ea0f48a666ac559f2e2218 -SIZE (lldb-11.0.0rc4.src.tar.xz) = 9739912 -SHA256 (openmp-11.0.0rc4.src.tar.xz) = 7ee9773f2e29f58166421f006c911bb321af0dcb1708fed36abbd674354571e1 -SIZE (openmp-11.0.0rc4.src.tar.xz) = 975212 +TIMESTAMP = 1602536201 +SHA256 (llvm-11.0.0.src.tar.xz) = 913f68c898dfb4a03b397c5e11c6a2f39d0f22ed7665c9cefa87a34423a72469 +SIZE (llvm-11.0.0.src.tar.xz) = 39480848 +SHA256 (clang-11.0.0.src.tar.xz) = 0f96acace1e8326b39f220ba19e055ba99b0ab21c2475042dbc6a482649c5209 +SIZE (clang-11.0.0.src.tar.xz) = 14982988 +SHA256 (compiler-rt-11.0.0.src.tar.xz) = 374aff82ff573a449f9aabbd330a5d0a441181c535a3599996127378112db234 +SIZE (compiler-rt-11.0.0.src.tar.xz) = 2141408 +SHA256 (clang-tools-extra-11.0.0.src.tar.xz) = fed318f75d560d0e0ae728e2fb8abce71e9d0c60dd120c9baac118522ce76c09 +SIZE (clang-tools-extra-11.0.0.src.tar.xz) = 1512436 +SHA256 (lld-11.0.0.src.tar.xz) = efe7be4a7b7cdc6f3bcf222827c6f837439e6e656d12d6c885d5c8a80ff4fd1c +SIZE (lld-11.0.0.src.tar.xz) = 1247188 +SHA256 (lldb-11.0.0.src.tar.xz) = 8570c09f57399e21e0eea0dcd66ae0231d47eafc7a04d6fe5c4951b13c4d2c72 +SIZE (lldb-11.0.0.src.tar.xz) = 9740312 +SHA256 (openmp-11.0.0.src.tar.xz) = 2d704df8ca67b77d6d94ebf79621b0f773d5648963dd19e0f78efef4404b684c +SIZE (openmp-11.0.0.src.tar.xz) = 975108 Modified: branches/2020Q4/devel/llvm11/files/compiler-rt/patch-lib_sanitizer__common_sanitizer__platform__interceptors.h ============================================================================== --- branches/2020Q4/devel/llvm11/files/compiler-rt/patch-lib_sanitizer__common_sanitizer__platform__interceptors.h Fri Nov 20 11:05:58 2020 (r555755) +++ branches/2020Q4/devel/llvm11/files/compiler-rt/patch-lib_sanitizer__common_sanitizer__platform__interceptors.h Fri Nov 20 12:33:58 2020 (r555756) @@ -1,5 +1,5 @@ ---- ../compiler-rt-11.0.0rc4.src/lib/sanitizer_common/sanitizer_platform_interceptors.h.orig -+++ ../compiler-rt-11.0.0rc4.src/lib/sanitizer_common/sanitizer_platform_interceptors.h +--- ../compiler-rt-11.0.0.src/lib/sanitizer_common/sanitizer_platform_interceptors.h.orig ++++ ../compiler-rt-11.0.0.src/lib/sanitizer_common/sanitizer_platform_interceptors.h @@ -597,7 +597,7 @@ #define SANITIZER_INTERCEPT_PTHREAD_ATFORK SI_NETBSD #define SANITIZER_INTERCEPT_GETENTROPY SI_FREEBSD Modified: branches/2020Q4/devel/llvm11/pkg-plist ============================================================================== --- branches/2020Q4/devel/llvm11/pkg-plist Fri Nov 20 11:05:58 2020 (r555755) +++ branches/2020Q4/devel/llvm11/pkg-plist Fri Nov 20 12:33:58 2020 (r555756) @@ -3440,11 +3440,6 @@ llvm%%LLVM_SUFFIX%%/lib/cmake/llvm/VersionFromVCS.cmak llvm%%LLVM_SUFFIX%%/lib/libLLVM-%%LLVM_MAJOR%%.so llvm%%LLVM_SUFFIX%%/lib/libLLVM-%%LLVM_RELEASE%%.so llvm%%LLVM_SUFFIX%%/lib/libLLVM.so -llvm%%LLVM_SUFFIX%%/lib/libLLVMAVRAsmParser.a -llvm%%LLVM_SUFFIX%%/lib/libLLVMAVRCodeGen.a -llvm%%LLVM_SUFFIX%%/lib/libLLVMAVRDesc.a -llvm%%LLVM_SUFFIX%%/lib/libLLVMAVRDisassembler.a -llvm%%LLVM_SUFFIX%%/lib/libLLVMAVRInfo.a llvm%%LLVM_SUFFIX%%/lib/libLLVMAggressiveInstCombine.a llvm%%LLVM_SUFFIX%%/lib/libLLVMAnalysis.a llvm%%LLVM_SUFFIX%%/lib/libLLVMAsmParser.a From owner-svn-ports-branches@freebsd.org Fri Nov 20 12:37:56 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0BF902E98D8; Fri, 20 Nov 2020 12:37: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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Ccx0M6zvGz3KHJ; Fri, 20 Nov 2020 12:37:55 +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 D823F16327; Fri, 20 Nov 2020 12:37:55 +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 0AKCbtMg033659; Fri, 20 Nov 2020 12:37:55 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AKCbtbu033655; Fri, 20 Nov 2020 12:37:55 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <202011201237.0AKCbtbu033655@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Fri, 20 Nov 2020 12:37:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555757 - in branches/2020Q4: Mk mail/thunderbird www/firefox www/firefox-esr X-SVN-Group: ports-branches X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in branches/2020Q4: Mk mail/thunderbird www/firefox www/firefox-esr X-SVN-Commit-Revision: 555757 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2020 12:37:56 -0000 Author: jbeich Date: Fri Nov 20 12:37:54 2020 New Revision: 555757 URL: https://svnweb.freebsd.org/changeset/ports/555757 Log: MFH: r555015 gecko: bump LLVM_DEFAULT to 11 Detach from tree-wide default as coordinating with other maintainers is expensive for little gain. User's choice is still respected. llvm11 has better Tier2 support, more optimizations, reduces package size and aligns with what contributors dogfood. Approved by: ports-secteam blanket Modified: branches/2020Q4/Mk/bsd.gecko.mk branches/2020Q4/mail/thunderbird/Makefile branches/2020Q4/www/firefox-esr/Makefile branches/2020Q4/www/firefox/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/Mk/bsd.gecko.mk ============================================================================== --- branches/2020Q4/Mk/bsd.gecko.mk Fri Nov 20 12:33:58 2020 (r555756) +++ branches/2020Q4/Mk/bsd.gecko.mk Fri Nov 20 12:37:54 2020 (r555757) @@ -92,6 +92,10 @@ MOZ_OPTIONS+= --with-libclang-path="${LOCALBASE}/llvm$ .if !exists(/usr/bin/llvm-objdump) MOZ_EXPORT+= LLVM_OBJDUMP="${LOCALBASE}/bin/llvm-objdump${LLVM_DEFAULT}" .endif +# Ignore Mk/bsd.default-versions.mk but respect make.conf(5) +.if !defined(DEFAULT_VERSIONS) || ! ${DEFAULT_VERSIONS:Mllvm*} +LLVM_DEFAULT= 11 # bump if not latest release +.endif # Require newer Clang than what's in base system unless user opted out . if ${CC} == cc && ${CXX} == c++ && exists(/usr/lib/libc++.so) BUILD_DEPENDS+= ${LOCALBASE}/bin/clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT} Modified: branches/2020Q4/mail/thunderbird/Makefile ============================================================================== --- branches/2020Q4/mail/thunderbird/Makefile Fri Nov 20 12:33:58 2020 (r555756) +++ branches/2020Q4/mail/thunderbird/Makefile Fri Nov 20 12:37:54 2020 (r555757) @@ -3,7 +3,7 @@ PORTNAME= thunderbird DISTVERSION= 78.5.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build3/source Modified: branches/2020Q4/www/firefox-esr/Makefile ============================================================================== --- branches/2020Q4/www/firefox-esr/Makefile Fri Nov 20 12:33:58 2020 (r555756) +++ branches/2020Q4/www/firefox-esr/Makefile Fri Nov 20 12:37:54 2020 (r555757) @@ -3,7 +3,7 @@ PORTNAME= firefox DISTVERSION= 78.5.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}esr/source \ Modified: branches/2020Q4/www/firefox/Makefile ============================================================================== --- branches/2020Q4/www/firefox/Makefile Fri Nov 20 12:33:58 2020 (r555756) +++ branches/2020Q4/www/firefox/Makefile Fri Nov 20 12:37:54 2020 (r555757) @@ -3,7 +3,7 @@ PORTNAME= firefox DISTVERSION= 83.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 2 CATEGORIES= www MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ From owner-svn-ports-branches@freebsd.org Fri Nov 20 12:56:49 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B91662E9CB0; Fri, 20 Nov 2020 12:56:49 +0000 (UTC) (envelope-from dmgk@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CcxQ94r9Hz3L9p; Fri, 20 Nov 2020 12:56:49 +0000 (UTC) (envelope-from dmgk@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 98E3A163C5; Fri, 20 Nov 2020 12:56:49 +0000 (UTC) (envelope-from dmgk@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AKCuntE046269; Fri, 20 Nov 2020 12:56:49 GMT (envelope-from dmgk@FreeBSD.org) Received: (from dmgk@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AKCun1C046267; Fri, 20 Nov 2020 12:56:49 GMT (envelope-from dmgk@FreeBSD.org) Message-Id: <202011201256.0AKCun1C046267@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dmgk set sender to dmgk@FreeBSD.org using -f From: Dmitri Goutnik Date: Fri, 20 Nov 2020 12:56:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555760 - branches/2020Q4/net-mgmt/prometheus2 X-SVN-Group: ports-branches X-SVN-Commit-Author: dmgk X-SVN-Commit-Paths: branches/2020Q4/net-mgmt/prometheus2 X-SVN-Commit-Revision: 555760 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2020 12:56:49 -0000 Author: dmgk Date: Fri Nov 20 12:56:48 2020 New Revision: 555760 URL: https://svnweb.freebsd.org/changeset/ports/555760 Log: MFH: r555759 net-mgmt/prometheus2: Update to 2.22.1 Changes: https://github.com/prometheus/prometheus/releases/tag/v2.22.1 PR: 251087 Submitted by: David O'Rourke (maintainer) Approved by: ports-secteam (bugfix release blanket) Modified: branches/2020Q4/net-mgmt/prometheus2/Makefile branches/2020Q4/net-mgmt/prometheus2/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/net-mgmt/prometheus2/Makefile ============================================================================== --- branches/2020Q4/net-mgmt/prometheus2/Makefile Fri Nov 20 12:53:21 2020 (r555759) +++ branches/2020Q4/net-mgmt/prometheus2/Makefile Fri Nov 20 12:56:48 2020 (r555760) @@ -2,7 +2,7 @@ PORTNAME= prometheus DISTVERSIONPREFIX= v -DISTVERSION= 2.22.0 +DISTVERSION= 2.22.1 CATEGORIES= net-mgmt MAINTAINER= dor.bsd@xm0.uk Modified: branches/2020Q4/net-mgmt/prometheus2/distinfo ============================================================================== --- branches/2020Q4/net-mgmt/prometheus2/distinfo Fri Nov 20 12:53:21 2020 (r555759) +++ branches/2020Q4/net-mgmt/prometheus2/distinfo Fri Nov 20 12:56:48 2020 (r555760) @@ -1,5 +1,5 @@ -TIMESTAMP = 1603707479 -SHA256 (prometheus-prometheus-v2.22.0_GH0.tar.gz) = 9390cbd338d253956184d0f0a6719d21cb5719f0319fc48ee08d5bd48fc87cc2 -SIZE (prometheus-prometheus-v2.22.0_GH0.tar.gz) = 14140650 -SHA256 (ports-assets-net-mgmt_prometheus2-v2.22.0_GH0.tar.gz) = 3afe554702ff6375dfa10fa047e0e0a02449215dbd9ac42162a5a6b4c23122f3 -SIZE (ports-assets-net-mgmt_prometheus2-v2.22.0_GH0.tar.gz) = 5063407 +TIMESTAMP = 1605221571 +SHA256 (prometheus-prometheus-v2.22.1_GH0.tar.gz) = 1c7e33ccdc26b1c9026a63b2062f2a990eafa4e48d1cf8723fba7124750dbec3 +SIZE (prometheus-prometheus-v2.22.1_GH0.tar.gz) = 14138581 +SHA256 (ports-assets-net-mgmt_prometheus2-v2.22.1_GH0.tar.gz) = ae1a2026e954fa5215f554e36d16c7791c5a470271a6c916179107146086500f +SIZE (ports-assets-net-mgmt_prometheus2-v2.22.1_GH0.tar.gz) = 5063476 From owner-svn-ports-branches@freebsd.org Fri Nov 20 15:27:32 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id ADF422EDFB9; Fri, 20 Nov 2020 15:27:32 +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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cd0m44WKrz3n54; Fri, 20 Nov 2020 15:27:32 +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 8D7571850F; Fri, 20 Nov 2020 15:27:32 +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 0AKFRWnL039524; Fri, 20 Nov 2020 15:27:32 GMT (envelope-from krion@FreeBSD.org) Received: (from krion@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AKFRWUe039523; Fri, 20 Nov 2020 15:27:32 GMT (envelope-from krion@FreeBSD.org) Message-Id: <202011201527.0AKFRWUe039523@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: krion set sender to krion@FreeBSD.org using -f From: Kirill Ponomarev Date: Fri, 20 Nov 2020 15:27:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r555768 - in branches/2020Q4/sysutils/cbsd: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: krion X-SVN-Commit-Paths: in branches/2020Q4/sysutils/cbsd: . files X-SVN-Commit-Revision: 555768 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2020 15:27:32 -0000 Author: krion Date: Fri Nov 20 15:27:31 2020 New Revision: 555768 URL: https://svnweb.freebsd.org/changeset/ports/555768 Log: MFH: r555767 Update to 12.2.3 Changes: https://github.com/cbsd/cbsd/releases/tag/v12.2.3 Approved by: ports-secteam (blanket) Deleted: branches/2020Q4/sysutils/cbsd/files/extra-patch-Makefile branches/2020Q4/sysutils/cbsd/files/extra-patch-sudoexec_initenv Modified: branches/2020Q4/sysutils/cbsd/Makefile branches/2020Q4/sysutils/cbsd/distinfo Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/sysutils/cbsd/Makefile ============================================================================== --- branches/2020Q4/sysutils/cbsd/Makefile Fri Nov 20 15:26:34 2020 (r555767) +++ branches/2020Q4/sysutils/cbsd/Makefile Fri Nov 20 15:27:31 2020 (r555768) @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= cbsd -DISTVERSION= 12.2.2 +DISTVERSION= 12.2.3 CATEGORIES= sysutils MAINTAINER= olevole@olevole.ru @@ -33,11 +33,6 @@ BIN_FILES= \ bin/cbsdsh/mksyntax .include - -.if ${ARCH} != amd64 && ${ARCH} != i386 -EXTRA_PATCHES= ${FILESDIR}/extra-patch-Makefile \ - ${FILESDIR}/extra-patch-sudoexec_initenv -.endif do-install: @${ECHO} "Installing in ${CBSD_HOME}" Modified: branches/2020Q4/sysutils/cbsd/distinfo ============================================================================== --- branches/2020Q4/sysutils/cbsd/distinfo Fri Nov 20 15:26:34 2020 (r555767) +++ branches/2020Q4/sysutils/cbsd/distinfo Fri Nov 20 15:27:31 2020 (r555768) @@ -1,3 +1,3 @@ -TIMESTAMP = 1605547100 -SHA256 (cbsd-cbsd-12.2.2_GH0.tar.gz) = 9032a833297b4cd35d2c94c8c60039ee2eceef79f07e0b64a580af5fbee8a23d -SIZE (cbsd-cbsd-12.2.2_GH0.tar.gz) = 5902135 +TIMESTAMP = 1605882594 +SHA256 (cbsd-cbsd-12.2.3_GH0.tar.gz) = fe39a6428abc10992c7623a283ecd0e9871cc77ae6d7623b0e1d505122ff1abe +SIZE (cbsd-cbsd-12.2.3_GH0.tar.gz) = 5901154 From owner-svn-ports-branches@freebsd.org Sat Nov 21 19:04:58 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id DE32846E70E; Sat, 21 Nov 2020 19:04:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CdjXV5xP7z3KGg; Sat, 21 Nov 2020 19:04:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id BE8604ED6; Sat, 21 Nov 2020 19:04:58 +0000 (UTC) (envelope-from feld@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0ALJ4wKe081622; Sat, 21 Nov 2020 19:04:58 GMT (envelope-from feld@FreeBSD.org) Received: (from feld@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0ALJ4wHn081621; Sat, 21 Nov 2020 19:04:58 GMT (envelope-from feld@FreeBSD.org) Message-Id: <202011211904.0ALJ4wHn081621@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: feld set sender to feld@FreeBSD.org using -f From: Mark Felder Date: Sat, 21 Nov 2020 19:04:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r556014 - branches/2020Q4/security/titus X-SVN-Group: ports-branches X-SVN-Commit-Author: feld X-SVN-Commit-Paths: branches/2020Q4/security/titus X-SVN-Commit-Revision: 556014 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Nov 2020 19:04:58 -0000 Author: feld Date: Sat Nov 21 19:04:58 2020 New Revision: 556014 URL: https://svnweb.freebsd.org/changeset/ports/556014 Log: MFH: r556013 security/titus: Mark broken with base openssl on < FreeBSD 12 Approved by: ports-secteam (blanket) Modified: branches/2020Q4/security/titus/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/security/titus/Makefile ============================================================================== --- branches/2020Q4/security/titus/Makefile Sat Nov 21 19:03:54 2020 (r556013) +++ branches/2020Q4/security/titus/Makefile Sat Nov 21 19:04:58 2020 (r556014) @@ -27,6 +27,10 @@ MAKE_ENV+= MANDIR=${MANPREFIX}/man .include +.if ${SSL_DEFAULT} == base +BROKEN_FreeBSD_11= Requires OpenSSL 1.1.0+ +.endif + .if ${SSL_DEFAULT} != base CFLAGS+= -I${OPENSSLINC} LDFLAGS+= -L${OPENSSLLIB} From owner-svn-ports-branches@freebsd.org Sat Nov 21 19:54:45 2020 Return-Path: Delivered-To: svn-ports-branches@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id C549746F1D8; Sat, 21 Nov 2020 19: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) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Cdkdx52FFz3M9K; Sat, 21 Nov 2020 19: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 9FDBF56E8; Sat, 21 Nov 2020 19:54: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 0ALJsjXR012843; Sat, 21 Nov 2020 19:54:45 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0ALJsj0K012842; Sat, 21 Nov 2020 19:54:45 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202011211954.0ALJsj0K012842@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 21 Nov 2020 19:54:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r556015 - branches/2020Q4/devel/urjtag X-SVN-Group: ports-branches X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: branches/2020Q4/devel/urjtag X-SVN-Commit-Revision: 556015 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Nov 2020 19:54:45 -0000 Author: yuri Date: Sat Nov 21 19:54:45 2020 New Revision: 556015 URL: https://svnweb.freebsd.org/changeset/ports/556015 Log: MFH: r556008 devel/urjtag: Fix bug that libusb wasn't recognized PR: 251232 Reported by: Torfinn Ingolfsen Approved by: ports-secteam (riggs) Modified: branches/2020Q4/devel/urjtag/Makefile Directory Properties: branches/2020Q4/ (props changed) Modified: branches/2020Q4/devel/urjtag/Makefile ============================================================================== --- branches/2020Q4/devel/urjtag/Makefile Sat Nov 21 19:04:58 2020 (r556014) +++ branches/2020Q4/devel/urjtag/Makefile Sat Nov 21 19:54:45 2020 (r556015) @@ -3,6 +3,7 @@ PORTNAME= urjtag DISTVERSION= 2019.12 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= SF @@ -37,10 +38,10 @@ NLS_USES= gettext NLS_CONFIGURE_ENABLE= nls PYTHON_CONFIGURE_ENABLE= python -PYTHON_BROKEN= ld: error: unable to find library -l-Wl,-rpath +PYTHON_BROKEN= ld: error: unable to find library -l-Wl,-rpath # see https://sourceforge.net/p/urjtag/bugs/132/ USB_DESC= USB JTAG adapters support -USB_CONFIGURE_ON= --with-libusb=/usr +#USB_CONFIGURE_ON= --with-libusb=/usr # causes libusb to not be recognized: https://sourceforge.net/p/urjtag/bugs/133/ USB_CONFIGURE_OFF= --without-libusb .include