From owner-svn-ports-all@freebsd.org Sun Mar 5 08:13:31 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20F35CF7020; Sun, 5 Mar 2017 08:13:31 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 D67F81F5A; Sun, 5 Mar 2017 08:13:30 +0000 (UTC) (envelope-from mat@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v258DTUI052945; Sun, 5 Mar 2017 08:13:29 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v258DSQt052933; Sun, 5 Mar 2017 08:13:28 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201703050813.v258DSQt052933@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Sun, 5 Mar 2017 08:13:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r435456 - in head: comms/wy60 deskutils/gbirthday devel/arduino-builder devel/cityhash devel/google-gdata devel/monodevelop emulators/citra games/openomf security/ssh-vault 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.23 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: Sun, 05 Mar 2017 08:13:31 -0000 Author: mat Date: Sun Mar 5 08:13:28 2017 New Revision: 435456 URL: https://svnweb.freebsd.org/changeset/ports/435456 Log: Cleanup USE_GITHUB with GH_TUPLE usage. Do not use GH_TUPLE for the default distfile. With hat: portmgr Sponsored by: Absolight Modified: head/comms/wy60/Makefile (contents, props changed) head/deskutils/gbirthday/Makefile (contents, props changed) head/devel/arduino-builder/Makefile (contents, props changed) head/devel/cityhash/Makefile (contents, props changed) head/devel/google-gdata/Makefile (contents, props changed) head/devel/monodevelop/Makefile (contents, props changed) head/devel/monodevelop/distinfo (contents, props changed) head/emulators/citra/Makefile (contents, props changed) head/games/openomf/Makefile (contents, props changed) head/security/ssh-vault/Makefile (contents, props changed) Modified: head/comms/wy60/Makefile ============================================================================== --- head/comms/wy60/Makefile Sun Mar 5 08:09:35 2017 (r435455) +++ head/comms/wy60/Makefile Sun Mar 5 08:13:28 2017 (r435456) @@ -11,7 +11,8 @@ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING USE_GITHUB= yes -GH_TUPLE= mieko:wy60:8e082bf +GH_ACCOUNT= mieko +GH_TAGNAME= 8e082bf USES= ncurses GNU_CONFIGURE= yes Modified: head/deskutils/gbirthday/Makefile ============================================================================== --- head/deskutils/gbirthday/Makefile Sun Mar 5 08:09:35 2017 (r435455) +++ head/deskutils/gbirthday/Makefile Sun Mar 5 08:13:28 2017 (r435456) @@ -12,7 +12,8 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USE_GITHUB= yes -GH_TUPLE= lafrech:gbirthday:7b431aa +GH_ACCOUNT= lafrech +GH_TAGNAME= 7b431aa OPTIONS_DEFINE= MYSQL NLS NOTIFY THUNDERBIRD OPTIONS_SUB= yes Modified: head/devel/arduino-builder/Makefile ============================================================================== --- head/devel/arduino-builder/Makefile Sun Mar 5 08:09:35 2017 (r435455) +++ head/devel/arduino-builder/Makefile Sun Mar 5 08:13:28 2017 (r435456) @@ -15,7 +15,7 @@ BUILD_DEPENDS= go:lang/go USE_GITHUB= yes GH_ACCOUNT= arduino -GH_SUBDIR= src/github.com/${GH_ACCOUNT}/${PORTNAME} +GH_SUBDIR= src/github.com/${GH_ACCOUNT_DEFAULT}/${PORTNAME} GH_TUPLE= go-errors:errors:a418503:goerrors/src/github.com/go-errors/errors \ stretchr:testify:v1.1.3:stretchr/src/github.com/stretchr/testify \ jstemmer:go-junit-report:833f8ea:jstemmer/src/github.com/jstemmer/go-junit-report Modified: head/devel/cityhash/Makefile ============================================================================== --- head/devel/cityhash/Makefile Sun Mar 5 08:09:35 2017 (r435455) +++ head/devel/cityhash/Makefile Sun Mar 5 08:13:28 2017 (r435456) @@ -5,8 +5,6 @@ PORTNAME= cityhash PORTVERSION= 1.1.1 PORTREVISION= 1 CATEGORIES= devel -USE_GITHUB= yes -GH_TUPLE= google:cityhash:8af9b8c MAINTAINER= vg@FreeBSD.org COMMENT= Family of hash functions @@ -19,4 +17,8 @@ CPE_VENDOR= google GNU_CONFIGURE= yes USE_LDCONFIG= yes +USE_GITHUB= yes +GH_ACCOUNT= google +GH_TAGNAME= 8af9b8c + .include Modified: head/devel/google-gdata/Makefile ============================================================================== --- head/devel/google-gdata/Makefile Sun Mar 5 08:09:35 2017 (r435455) +++ head/devel/google-gdata/Makefile Sun Mar 5 08:13:28 2017 (r435456) @@ -14,7 +14,8 @@ LICENSE= APACHE20 BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/Newtonsoft.Json.pc:devel/newtonsoft-json USE_GITHUB= yes -GH_TUPLE= google:google-gdata:edcd096379 +GH_ACCOUNT= google +GH_TAGNAME= edcd096379 USES= dos2unix gmake mono pathfix PATHFIX_MAKEFILEIN= Makefile Modified: head/devel/monodevelop/Makefile ============================================================================== --- head/devel/monodevelop/Makefile Sun Mar 5 08:09:35 2017 (r435455) +++ head/devel/monodevelop/Makefile Sun Mar 5 08:13:28 2017 (r435456) @@ -3,6 +3,7 @@ PORTNAME= monodevelop PORTVERSION= 6.1.2.44 +DISTVERSIONPREFIX= ${PORTNAME}- CATEGORIES= devel MAINTAINER= mono@FreeBSD.org @@ -42,8 +43,8 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-release --disable-update-mimedb --disable-update-desktopdb \ --enable-maintainer-mode --enable-gnomeplatform --enable-git USE_GITHUB= yes -GH_TUPLE= mono:${PORTNAME}:${PORTNAME}-${PORTVERSION} \ - icsharpcode:RefactoringEssentials:cbd2d9e:RefactoringEssentials \ +GH_ACCOUNT= mono +GH_TUPLE= icsharpcode:RefactoringEssentials:cbd2d9e:RefactoringEssentials \ mono:cecil:cd2ff63:cecil \ mono:debugger-libs:4a74b2c:debugger_libs \ mono:guiunit:2670780:guiunit \ Modified: head/devel/monodevelop/distinfo ============================================================================== --- head/devel/monodevelop/distinfo Sun Mar 5 08:09:35 2017 (r435455) +++ head/devel/monodevelop/distinfo Sun Mar 5 08:13:28 2017 (r435456) @@ -1,4 +1,4 @@ -TIMESTAMP = 1479565189 +TIMESTAMP = 1488700997 SHA256 (extcore.0.8.45.nupkg) = aadcbc638765cfe4a4d1c569b721cb9a01403872cbc5071a811e04af95cea7d0 SIZE (extcore.0.8.45.nupkg) = 2579195 SHA256 (fsharp.compiler.codedom.0.9.2.nupkg) = 92b9a538956775efd989517a608a366b2b926beae6be752a394f7457f77ac933 @@ -25,8 +25,8 @@ SHA256 (nunit.runners.2.6.4.nupkg) = 448 SIZE (nunit.runners.2.6.4.nupkg) = 573341 SHA256 (newtonsoft.json.6.0.8.nupkg) = 88b57d994035a83080c7f049e93f7aba2554fe14b686b678c2eb1a8be23e6851 SIZE (newtonsoft.json.6.0.8.nupkg) = 1562062 -SHA256 (mono-monodevelop-6.1.2.44-monodevelop-6.1.2.44_GH0.tar.gz) = 06b7b21aea806be39e876635b88a2c9ced8962ead464852724134ca67214d5a5 -SIZE (mono-monodevelop-6.1.2.44-monodevelop-6.1.2.44_GH0.tar.gz) = 16476228 +SHA256 (mono-monodevelop-monodevelop-6.1.2.44_GH0.tar.gz) = 06b7b21aea806be39e876635b88a2c9ced8962ead464852724134ca67214d5a5 +SIZE (mono-monodevelop-monodevelop-6.1.2.44_GH0.tar.gz) = 16476228 SHA256 (icsharpcode-RefactoringEssentials-cbd2d9e_GH0.tar.gz) = a51ac4e62200a51329279347e31f3233ebc8e3afa8d8bb92af33cc870b1b2074 SIZE (icsharpcode-RefactoringEssentials-cbd2d9e_GH0.tar.gz) = 3154094 SHA256 (mono-cecil-cd2ff63_GH0.tar.gz) = 417709d1547b1995c8a3fb787b288b78f9bf5c3605baef2f829f35ee869a9642 Modified: head/emulators/citra/Makefile ============================================================================== --- head/emulators/citra/Makefile Sun Mar 5 08:09:35 2017 (r435455) +++ head/emulators/citra/Makefile Sun Mar 5 08:13:28 2017 (r435456) @@ -28,8 +28,9 @@ ONLY_FOR_ARCHS= amd64 ONLY_FOR_ARCHS_REASON= https://github.com/MerryMage/dynarmic/issues/35 USE_GITHUB= yes -GH_TUPLE= citra-emu:${PORTNAME}:e971f17bb \ - citra-emu:ext-soundtouch:5274ec4:soundtouch/externals/soundtouch \ +GH_ACCOUNT= citra-emu +GH_TAGNAME= e971f17bb +GH_TUPLE= citra-emu:ext-soundtouch:5274ec4:soundtouch/externals/soundtouch \ MerryMage:dynarmic:358cf7c:dynarmic/externals/dynarmic \ fmtlib:fmt:3.0.0-146-g796beaa:fmt/externals/dynarmic/externals/fmt \ herumi:xbyak:v5.40:xbyak/externals/xbyak \ Modified: head/games/openomf/Makefile ============================================================================== --- head/games/openomf/Makefile Sun Mar 5 08:09:35 2017 (r435455) +++ head/games/openomf/Makefile Sun Mar 5 08:13:28 2017 (r435456) @@ -20,8 +20,9 @@ LIB_DEPENDS= libconfuse.so:devel/libconf EXTRACT_DEPENDS= unrar:archivers/unrar USE_GITHUB= yes -GH_TUPLE= omf2097:openomf:c36c421 \ - omf2097:libShadowDive:b2c34a6:shadow \ +GH_ACCOUNT= omf2097 +GH_TAGNAME= c36c421 +GH_TUPLE= omf2097:libShadowDive:b2c34a6:shadow \ kode54:dumb:238f23c:libdumb USES= cmake compiler:c++11-lang gettext Modified: head/security/ssh-vault/Makefile ============================================================================== --- head/security/ssh-vault/Makefile Sun Mar 5 08:09:35 2017 (r435455) +++ head/security/ssh-vault/Makefile Sun Mar 5 08:13:28 2017 (r435456) @@ -16,8 +16,7 @@ BUILD_DEPENDS= go>=1.7:lang/go \ USES= go USE_GITHUB= yes -GH_TUPLE= ssh-vault:ssh-vault:0.9.1 \ - ssh-vault:crypto:ae180e0:crypto \ +GH_TUPLE= ssh-vault:crypto:ae180e0:crypto \ ssh-vault:ssh2pem:228a306:ssh2pem \ kr:pty:ce7fa45:pty \ keybase:go-keychain:fc62173:keychain