From owner-svn-ports-head@freebsd.org Sat Feb 2 11:46:06 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 3B4D414BA921; Sat, 2 Feb 2019 11:46:06 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D1AA484B02; Sat, 2 Feb 2019 11:46:05 +0000 (UTC) (envelope-from tobik@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A54156556; Sat, 2 Feb 2019 11:46:05 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x12Bk5TZ058676; Sat, 2 Feb 2019 11:46:05 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x12Bk4Ud058671; Sat, 2 Feb 2019 11:46:04 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201902021146.x12Bk4Ud058671@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sat, 2 Feb 2019 11:46:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491946 - in head/devel: . ghq ghq/files X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/devel: . ghq ghq/files X-SVN-Commit-Revision: 491946 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: D1AA484B02 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.95)[-0.949,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 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: Sat, 02 Feb 2019 11:46:06 -0000 Author: tobik Date: Sat Feb 2 11:46:04 2019 New Revision: 491946 URL: https://svnweb.freebsd.org/changeset/ports/491946 Log: New port: devel/ghq ghq provides a way to organize remote repository clones, like go get does. When you clone a remote repository with ghq, it creates a directory under a specific root directory using the remote repository URL's host and path. You can also list local repositories, jump into local repositories, and bulk get repositories by list of URLs. WWW: https://github.com/motemen/ghq Added: head/devel/ghq/ head/devel/ghq/Makefile (contents, props changed) head/devel/ghq/distinfo (contents, props changed) head/devel/ghq/files/ head/devel/ghq/files/patch-ghq.txt (contents, props changed) head/devel/ghq/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Feb 2 11:37:51 2019 (r491945) +++ head/devel/Makefile Sat Feb 2 11:46:04 2019 (r491946) @@ -766,6 +766,7 @@ SUBDIR += gettext-runtime SUBDIR += gettext-tools SUBDIR += gflags + SUBDIR += ghq SUBDIR += ghub SUBDIR += gindent SUBDIR += gio-sharp Added: head/devel/ghq/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ghq/Makefile Sat Feb 2 11:46:04 2019 (r491946) @@ -0,0 +1,50 @@ +# $FreeBSD$ + +PORTNAME= ghq +DISTVERSIONPREFIX= v +DISTVERSION= 0.9.0 +CATEGORIES= devel + +MAINTAINER= tobik@FreeBSD.org +COMMENT= Remote repository management made easy + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +BUILD_DEPENDS= go>=1.8,1:lang/go + +USE_GITHUB= yes +GH_ACCOUNT= motemen +GH_SUBDIR= src/github.com/motemen/ghq +GH_TUPLE= urfave:cli:b67dcf995b6a7b7f14fad5fcb7cc5441b05e814b:cli/src/github.com/urfave/cli \ + motemen:go-colorine:45d19169413a019e4e2be69629dde5c7d92f8706:go_colorine/src/github.com/motemen/go-colorine \ + daviddengcn:go-colortext:186a3d44e9200d7eb331356ca4864f52708e1399:go_colortext/src/github.com/daviddengcn/go-colortext \ + mitchellh:go-homedir:af06845cf3004701891bf4fdb884bfe4920b3727:go_homedir/src/github.com/mitchellh/go-homedir + +MAKE_ENV= GOPATH=${WRKSRC} +PLIST_FILES= bin/ghq \ + share/zsh/site-functions/_ghq + +OPTIONS_DEFINE= MANPAGES +OPTIONS_DEFAULT= MANPAGES + +MANPAGES_BUILD_DEPENDS= asciidoctor:textproc/rubygem-asciidoctor +MANPAGES_PLIST_FILES= man/man1/ghq.1.gz + +do-build: + @cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} go build -o ${WRKSRC}/ghq \ + -ldflags "-X \"main.Version=${PKGVERSION}\"" + +do-build-MANPAGES-on: + cd ${WRKSRC} && asciidoctor -b manpage -d manpage ghq.txt + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/ghq ${STAGEDIR}${PREFIX}/bin + @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions + ${INSTALL_DATA} ${WRKSRC}/zsh/_ghq \ + ${STAGEDIR}${PREFIX}/share/zsh/site-functions + +do-install-MANPAGES-on: + ${INSTALL_MAN} ${WRKSRC}/ghq.1 ${STAGEDIR}${PREFIX}/man/man1 + +.include Added: head/devel/ghq/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ghq/distinfo Sat Feb 2 11:46:04 2019 (r491946) @@ -0,0 +1,11 @@ +TIMESTAMP = 1549105807 +SHA256 (motemen-ghq-v0.9.0_GH0.tar.gz) = c5b9ff71ab533a2789da27368603852a3969c5cf8137b12b95e1bcbdaa816cf6 +SIZE (motemen-ghq-v0.9.0_GH0.tar.gz) = 17413 +SHA256 (mitchellh-go-homedir-af06845cf3004701891bf4fdb884bfe4920b3727_GH0.tar.gz) = 89fc9db4b4e755e6190ab36192d74be56e69005bc46975232f524388bedea4db +SIZE (mitchellh-go-homedir-af06845cf3004701891bf4fdb884bfe4920b3727_GH0.tar.gz) = 3362 +SHA256 (motemen-go-colorine-45d19169413a019e4e2be69629dde5c7d92f8706_GH0.tar.gz) = 3a1684f54b1cf101a4470cc4fb7bf245e925985c631c247664b822a975e9a81c +SIZE (motemen-go-colorine-45d19169413a019e4e2be69629dde5c7d92f8706_GH0.tar.gz) = 88147 +SHA256 (daviddengcn-go-colortext-186a3d44e9200d7eb331356ca4864f52708e1399_GH0.tar.gz) = 3957e4cb7a2a1c45c3ed849c91b44755fa3d1eee80a03dddb23804f3a1cf4550 +SIZE (daviddengcn-go-colortext-186a3d44e9200d7eb331356ca4864f52708e1399_GH0.tar.gz) = 4537 +SHA256 (urfave-cli-b67dcf995b6a7b7f14fad5fcb7cc5441b05e814b_GH0.tar.gz) = f3c79af3916d5676323bb7a82bf7b37fe03bd6e8106b03f8170d26389cf688ff +SIZE (urfave-cli-b67dcf995b6a7b7f14fad5fcb7cc5441b05e814b_GH0.tar.gz) = 65421 Added: head/devel/ghq/files/patch-ghq.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ghq/files/patch-ghq.txt Sat Feb 2 11:46:04 2019 (r491946) @@ -0,0 +1,8 @@ +--- ghq.txt.orig 2019-02-02 11:26:33 UTC ++++ ghq.txt +@@ -1,4 +1,4 @@ +-= ghq(1) image:https://travis-ci.org/motemen/ghq.svg?branch=master["Build Status", link="https://travis-ci.org/motemen/ghq"] ++= ghq(1) + + == NAME + Added: head/devel/ghq/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/ghq/pkg-descr Sat Feb 2 11:46:04 2019 (r491946) @@ -0,0 +1,9 @@ +ghq provides a way to organize remote repository clones, like go +get does. When you clone a remote repository with ghq, it creates +a directory under a specific root directory using the remote +repository URL's host and path. + +You can also list local repositories, jump into local repositories, +and bulk get repositories by list of URLs. + +WWW: https://github.com/motemen/ghq