Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 May 2015 22:02:30 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r385431 - head/Mk
Message-ID:  <201505042202.t44M2UQt071890@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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