diff options
author | Felix Palmen <zirias@FreeBSD.org> | 2022-08-07 11:08:02 +0200 |
---|---|---|
committer | Felix Palmen <zirias@FreeBSD.org> | 2022-08-07 11:13:15 +0200 |
commit | 42f8c0bf850d43f39ad071849609a5296b74b02d (patch) | |
tree | 32e9f82e3f3597cf83371425fd15d716a8675a7e /comms | |
parent | 86e0a2a02781b052f2675a19c8d6860f90e84851 (diff) | |
download | freebsd-ports-42f8c0bf850d43f39ad071849609a5296b74b02d.zip |
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
Diffstat (limited to 'comms')
-rw-r--r-- | comms/opencbm/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
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- |