From owner-dev-commits-ports-all@freebsd.org Thu Apr 15 21:37:19 2021 Return-Path: Delivered-To: dev-commits-ports-all@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 85F195D9325; Thu, 15 Apr 2021 21:37:19 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FLt3M25Fpz4tXq; Thu, 15 Apr 2021 21:37:19 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3ADA818DA2; Thu, 15 Apr 2021 21:37:19 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 13FLbJCU017423; Thu, 15 Apr 2021 21:37:19 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 13FLbJ3I017422; Thu, 15 Apr 2021 21:37:19 GMT (envelope-from git) Date: Thu, 15 Apr 2021 21:37:19 GMT Message-Id: <202104152137.13FLbJ3I017422@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Mateusz Piotrowski <0mp@FreeBSD.org> Subject: git: 8de3261ff545 - main - Fix PORTSCOUT=ignore:* uses throughout the tree MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: 0mp X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 8de3261ff5457d4827da8e5f08e016001d5dc4b2 Auto-Submitted: auto-generated X-BeenThere: dev-commits-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the ports repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2021 21:37:19 -0000 The branch main has been updated by 0mp: URL: https://cgit.FreeBSD.org/ports/commit/?id=8de3261ff5457d4827da8e5f08e016001d5dc4b2 commit 8de3261ff5457d4827da8e5f08e016001d5dc4b2 Author: Mateusz Piotrowski <0mp@FreeBSD.org> AuthorDate: 2021-04-15 21:31:23 +0000 Commit: Mateusz Piotrowski <0mp@FreeBSD.org> CommitDate: 2021-04-15 21:37:15 +0000 Fix PORTSCOUT=ignore:* uses throughout the tree PORTSCOUT=ignore:1 is the only valid way syntax according to the Portscout documentation. In disables the distfile version checks completely. In order to ignore only certain version instead, it is necessary to use other Portscout keys like skipv. Also, remove the setting completely when it attempts to instruct Portscout to skip versions older than the current one. Approved by: portmgr blanket --- databases/sqlitebrowser/Makefile | 2 +- devel/omnisharp-server/Makefile | 2 +- math/py-uncertainties/Makefile | 2 -- multimedia/subtitlecomposer/Makefile | 2 +- security/p5-Crypt-PKCS10/Makefile | 2 -- textproc/py-pykwalify/Makefile | 2 +- 6 files changed, 4 insertions(+), 8 deletions(-) diff --git a/databases/sqlitebrowser/Makefile b/databases/sqlitebrowser/Makefile index 33cf0740e9c6..98588e0415f6 100644 --- a/databases/sqlitebrowser/Makefile +++ b/databases/sqlitebrowser/Makefile @@ -24,7 +24,7 @@ USE_GITHUB= yes INSTALLS_ICONS= yes -PORTSCOUT= ignore:continuous +PORTSCOUT= ignore:1 post-patch: @${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|' \ diff --git a/devel/omnisharp-server/Makefile b/devel/omnisharp-server/Makefile index d1082ad5527b..46be8cc187ca 100644 --- a/devel/omnisharp-server/Makefile +++ b/devel/omnisharp-server/Makefile @@ -18,7 +18,7 @@ GH_TAGNAME= e1902915c GH_TUPLE= icsharpcode:NRefactory:3f78bdbed:nrefactory/NRefactory \ jbevain:cecil:4770957a0:cecil/cecil -PORTSCOUT= ignore:mono-2.10.8 +PORTSCOUT= skipv:mono-2.10.8 do-build: (cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} \ diff --git a/math/py-uncertainties/Makefile b/math/py-uncertainties/Makefile index d06edeffd1c7..de09902ab520 100644 --- a/math/py-uncertainties/Makefile +++ b/math/py-uncertainties/Makefile @@ -18,6 +18,4 @@ USES= python:3.6+ USE_PYTHON= distutils autoplist NO_ARCH= yes -PORTSCOUT= ignore:3.1.3 - .include diff --git a/multimedia/subtitlecomposer/Makefile b/multimedia/subtitlecomposer/Makefile index bbe45db909e9..e46b331744ef 100644 --- a/multimedia/subtitlecomposer/Makefile +++ b/multimedia/subtitlecomposer/Makefile @@ -23,7 +23,7 @@ USE_GITHUB= yes GH_ACCOUNT= maxrd2 GH_PROJECT= SubtitleComposer -PORTSCOUT= ignore:continuous +PORTSCOUT= ignore:1 OPTIONS_GROUP= VIDEO VIDEO_DESC= Video players diff --git a/security/p5-Crypt-PKCS10/Makefile b/security/p5-Crypt-PKCS10/Makefile index c4f9b131b554..fb95ef76b489 100644 --- a/security/p5-Crypt-PKCS10/Makefile +++ b/security/p5-Crypt-PKCS10/Makefile @@ -22,8 +22,6 @@ RUN_DEPENDS= p5-Convert-ASN1>=0.27:converters/p5-Convert-ASN1 \ p5-Digest-MD4>0:security/p5-Digest-MD4 TEST_DEPENDS= p5-Module-Signature>0:security/p5-Module-Signature -PORTSCOUT= ignore:1.800201,1.8002 - USES= perl5 USE_PERL5= modbuildtiny USE_GITHUB= yes diff --git a/textproc/py-pykwalify/Makefile b/textproc/py-pykwalify/Makefile index 407a5c593cb8..11b1b371790f 100644 --- a/textproc/py-pykwalify/Makefile +++ b/textproc/py-pykwalify/Makefile @@ -22,7 +22,7 @@ USE_PYTHON= autoplist concurrent distutils NO_ARCH= yes -PORTSCOUT= ignore:15.01,14.12,14.08,14.06.1,14.06 +PORTSCOUT= skipv:15.01,14.12,14.08,14.06.1,14.06 PORTEXAMPLES= utf8-data.yml utf8-schema.yml