svn commit: r385431 - head/Mk
Bryan Drewery
bdrewery at FreeBSD.org
Mon May 4 22:02:30 UTC 2015
Author: bdrewery
Date: Mon May 4 22:02:29 2015
New Revision: 385431
URL: https://svnweb.freebsd.org/changeset/ports/385431
Log:
USE_GITHUB: Treat 'V' special just as 'v' is for DISTVERSIONPREFIX.
Fixes security/libzrtpcppcore after r385420.
Reported by: antoine
With hat: portmgr
Modified:
head/Mk/bsd.sites.mk
Modified: head/Mk/bsd.sites.mk
==============================================================================
--- head/Mk/bsd.sites.mk Mon May 4 20:20:38 2015 (r385430)
+++ head/Mk/bsd.sites.mk Mon May 4 22:02:29 2015 (r385431)
@@ -557,7 +557,7 @@ DISTNAME:= ${DISTNAME}_GH${_GITHUB_REV}
GH_TAGNAME_SANITIZED= ${GH_TAGNAME:S,/,-,}
# Github silently converts tags starting with v to not have v in the filename
# and extraction directory.
-GH_TAGNAME_EXTRACT= ${GH_TAGNAME_SANITIZED:C/^v([0-9])/\1/}
+GH_TAGNAME_EXTRACT= ${GH_TAGNAME_SANITIZED:C/^[vV]([0-9])/\1/}
. endif
.endif
.endif
More information about the svn-ports-all
mailing list