Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 7 Aug 2022 09:13:58 GMT
From:      Felix Palmen <zirias@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 42f8c0bf850d - main - comms/opencbm: Fix PORTSCOUT limit
Message-ID:  <202208070913.2779DwUK040305@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by zirias:

URL: https://cgit.FreeBSD.org/ports/commit/?id=42f8c0bf850d43f39ad071849609a5296b74b02d

commit 42f8c0bf850d43f39ad071849609a5296b74b02d
Author:     Felix Palmen <zirias@FreeBSD.org>
AuthorDate: 2022-08-07 09:08:02 +0000
Commit:     Felix Palmen <zirias@FreeBSD.org>
CommitDate: 2022-08-07 09:13:15 +0000

    comms/opencbm: Fix PORTSCOUT limit
    
    Only allowing dist versions starting with v and a digit should filter
    out any git tags that are not release versions.
    
    Approved by:            tcberner (mentor)
    Differential Revision:  https://reviews.freebsd.org/D36059
---
 comms/opencbm/Makefile.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/comms/opencbm/Makefile.inc b/comms/opencbm/Makefile.inc
index e4bf962ae8d8..14ead178951d 100644
--- a/comms/opencbm/Makefile.inc
+++ b/comms/opencbm/Makefile.inc
@@ -14,6 +14,6 @@ MAKE_ENV=	USER_CFLAGS="${CFLAGS}"
 
 PLIST_SUB=	OCBM_VERSION=${OCBM_VERSION}
 
-PORTSCOUT=	limit:\d\.\d
+PORTSCOUT=	limit:^v\d
 
 PLUGINBASENAME=	${PREFIX}/lib/opencbm/plugin/libopencbm-



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202208070913.2779DwUK040305>