From owner-svn-ports-head@FreeBSD.ORG Mon May 4 22:02:30 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B16F2805; Mon, 4 May 2015 22:02:30 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A04031CBC; Mon, 4 May 2015 22:02:30 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t44M2UDB071891; Mon, 4 May 2015 22:02:30 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t44M2UQt071890; Mon, 4 May 2015 22:02:30 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201505042202.t44M2UQt071890@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Mon, 4 May 2015 22:02:30 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r385431 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 May 2015 22:02:30 -0000 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