From owner-svn-ports-all@FreeBSD.ORG Fri Mar 20 02:05:58 2015 Return-Path: Delivered-To: svn-ports-all@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 50110E0; Fri, 20 Mar 2015 02:05:58 +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 3AFE5C8A; Fri, 20 Mar 2015 02:05:58 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2K25w2B020894; Fri, 20 Mar 2015 02:05:58 GMT (envelope-from bdrewery@FreeBSD.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2K25w79020893; Fri, 20 Mar 2015 02:05:58 GMT (envelope-from bdrewery@FreeBSD.org) Message-Id: <201503200205.t2K25w79020893@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bdrewery set sender to bdrewery@FreeBSD.org using -f From: Bryan Drewery Date: Fri, 20 Mar 2015 02:05:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r381706 - 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-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Mar 2015 02:05:58 -0000 Author: bdrewery Date: Fri Mar 20 02:05:57 2015 New Revision: 381706 URL: https://svnweb.freebsd.org/changeset/ports/381706 QAT: https://qat.redports.org/buildarchive/r381706/ Log: Add a sanity check for deprecating the old USE_GITHUB syntax. With hat: portmgr Modified: head/Mk/bsd.sanity.mk Modified: head/Mk/bsd.sanity.mk ============================================================================== --- head/Mk/bsd.sanity.mk Fri Mar 20 02:04:42 2015 (r381705) +++ head/Mk/bsd.sanity.mk Fri Mar 20 02:05:57 2015 (r381706) @@ -64,6 +64,10 @@ DEV_ERROR+= "USE_GNOME=pkgconfig is unsu DEV_ERROR+= "USE_ZOPE=yes is unsupported, please use USES=zope instead" .endif +.if defined(USE_GITHUB) && defined(GH_COMMIT) +DEV_WARNING+= "GH_COMMIT is deprecated, please convert GH-\>GHL in MASTER_SITES and set GH_TAGNAME to tag or commit hash and remove GH_COMMIT" +.endif + .if defined(USE_GNOME) && ${USE_GNOME:Mgnomehack} DEV_WARNING+= "USE_GNOME=gnomehack is deprecated, please use USES=pathfix" .endif