From owner-svn-ports-all@FreeBSD.ORG Sun Oct 21 13:47:51 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 137693DF; Sun, 21 Oct 2012 13:47:51 +0000 (UTC) (envelope-from rakuco@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id E56228FC17; Sun, 21 Oct 2012 13:47:50 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9LDloug088045; Sun, 21 Oct 2012 13:47:50 GMT (envelope-from rakuco@svn.freebsd.org) Received: (from rakuco@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9LDloTN088040; Sun, 21 Oct 2012 13:47:50 GMT (envelope-from rakuco@svn.freebsd.org) Message-Id: <201210211347.q9LDloTN088040@svn.freebsd.org> From: Raphael Kubo da Costa Date: Sun, 21 Oct 2012 13:47:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r306234 - in head/devel: . hub 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.14 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, 21 Oct 2012 13:47:51 -0000 Author: rakuco Date: Sun Oct 21 13:47:50 2012 New Revision: 306234 URL: http://svn.freebsd.org/changeset/ports/306234 Log: Add devel/hub. hub is a command line tool that wraps git in order to extend it with extra features and commands that make working with GitHub easier. PR: ports/172214 Submitted by: Simon Olofsson Feature safe: yes Added: head/devel/hub/ head/devel/hub/Makefile (contents, props changed) head/devel/hub/distinfo (contents, props changed) head/devel/hub/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Oct 21 13:20:05 2012 (r306233) +++ head/devel/Makefile Sun Oct 21 13:47:50 2012 (r306234) @@ -779,6 +779,7 @@ SUBDIR += hs-vector-algorithms SUBDIR += hs-void SUBDIR += htable + SUBDIR += hub SUBDIR += hwloc SUBDIR += hyena SUBDIR += hypersrc Added: head/devel/hub/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/hub/Makefile Sun Oct 21 13:47:50 2012 (r306234) @@ -0,0 +1,39 @@ +# Created by: Simon Olofsson +# $FreeBSD$ + +PORTNAME= hub +PORTVERSION= 1.10.2 +CATEGORIES= devel + +MAINTAINER= simon@olofsson.de +COMMENT= Introduces git to GitHub + +USE_GITHUB= yes +GH_ACCOUNT= defunkt +GH_TAGNAME= v${DISTVERSION} +GH_COMMIT= 16b388a + +USE_RUBY= yes +USE_RAKE= yes + +PLIST_FILES= bin/hub \ + etc/bash_completion.d/hub \ + share/zsh/site-functions/_hub +PLIST_DIRSTRY= etc/bash_completion.d \ + share/zsh/site-functions share/zsh +MAN1= hub.1 + +do-build: + @cd ${WRKSRC} && ${RAKE_BIN} standalone + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/hub ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/man/hub.1 ${MAN1PREFIX}/man/man1 + +post-install: + ${MKDIR} ${PREFIX}/etc/bash_completion.d + ${INSTALL_DATA} ${WRKSRC}/etc/hub.bash_completion.sh ${PREFIX}/etc/bash_completion.d/hub + ${MKDIR} ${PREFIX}/share/zsh/site-functions + ${INSTALL_DATA} ${WRKSRC}/etc/hub.zsh_completion ${PREFIX}/share/zsh/site-functions/_hub + +.include Added: head/devel/hub/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/hub/distinfo Sun Oct 21 13:47:50 2012 (r306234) @@ -0,0 +1,2 @@ +SHA256 (hub-1.10.2.tar.gz) = 3bd8cf160062dac2dcdad176d14a88237fb4018522ef3a584a83c3f812d5b1c5 +SIZE (hub-1.10.2.tar.gz) = 54805 Added: head/devel/hub/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/hub/pkg-descr Sun Oct 21 13:47:50 2012 (r306234) @@ -0,0 +1,4 @@ +hub is a command line tool that wraps git in order to extend it with extra +features and commands that make working with GitHub easier. + +WWW: http://defunkt.io/hub/