public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Christoph Junghans" <junghans@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/hub/
Date: Wed, 16 Nov 2016 02:17:56 +0000 (UTC)	[thread overview]
Message-ID: <1479261872.a688b46cc665ae52fb3453c86bb955b78c668bb6.junghans@gentoo> (raw)

commit:     a688b46cc665ae52fb3453c86bb955b78c668bb6
Author:     Christoph Junghans <junghans <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 16 02:02:52 2016 +0000
Commit:     Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Wed Nov 16 02:04:32 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a688b46c

dev-vcs/hub: version bump

Package-Manager: portage-2.3.0

 dev-vcs/hub/Manifest         |  1 +
 dev-vcs/hub/hub-2.2.9.ebuild | 47 ++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-vcs/hub/Manifest b/dev-vcs/hub/Manifest
index b7cae90..eafe397 100644
--- a/dev-vcs/hub/Manifest
+++ b/dev-vcs/hub/Manifest
@@ -1,3 +1,4 @@
 DIST hub-2.2.0.tar.gz 301460 SHA256 2da1351197eb5696c207f22c69a5422af052d74277b73d0b8661efb9ec1d0eb1 SHA512 ad65cfd2a81ab92ab69d31ff7a068cf2da1557ca1d2f6e1b97b7f939249e9955bb2cace42b8900ec2d5b98970fbca27435edcd503af7ee3c05a79462e7734d8a WHIRLPOOL 83ea1d3b1086d7cdcebed6cb604027763cd41dd3f101dd56827c469ec61034a9e3a7b4cbd1111b5b7820707a13679a558704d80d58fed125f07573fb983dff9a
 DIST hub-2.2.2.tar.gz 311726 SHA256 610572ee903aea1fa8622c16ab7ddef2bd1bfec9f4854447ab8e0fbdbe6a0cae SHA512 27eb8d3b973b30ab16fa59649af55934a2543d74d5160337be881b9d6038efaac4d19e3b2d3295191e65daedafa93d36773f05b3e3a48eae312b711db34762c0 WHIRLPOOL e4274515eac18938c42b4bf71a5ed7ec0e1c66a4ea65db68559172c039bd2b7b252d0c0ffc7209545f966d4d8b0d7b89c6e075f589ac677e16340ba5c641f778
 DIST hub-2.2.3.tar.gz 314438 SHA256 f8a43df60b2efd95c70054324e73f27c3b253ec1c4969de8ea6c514669c688ed SHA512 6f05b697ea4aa4962ac2977e2060e418a7332756c713828ec987aad6c06b6cfb9f39c2ed79797f6c2243f841cd009344482a341d11c14fd4728ba4b8cc0318d5 WHIRLPOOL 105edccf4841eafd7718b071efffbd42ce2974c646940f1ea3a6130a96a2bb0ffaf772f44f1f64666bd9d4ceae631dfc8de1c1343bd68e84fe59ccefe518214b
+DIST hub-2.2.9.tar.gz 318275 SHA256 b3cf227e38a34a56e37b7705a60bec258cea52174d8e030b559f74af647a70d6 SHA512 69d69683eb5f1c881b15c9b3294878c35edc51f9b7d568a3e0609c3d77cebf5c1be5c7c018b0356bdd68cf3f56691a860381a53f3e016b28b9f95ab0b852d9f9 WHIRLPOOL 4c7a6f6a5057c3a60514f79fb1964c343f57e2f1e146c033edf67c9568741d781dff7c002601ef383d23eff3b85077bfba1601d81201dfc7536ac12a8c5e3ed1

diff --git a/dev-vcs/hub/hub-2.2.9.ebuild b/dev-vcs/hub/hub-2.2.9.ebuild
new file mode 100644
index 00000000..d78960b
--- /dev/null
+++ b/dev-vcs/hub/hub-2.2.9.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit bash-completion-r1 readme.gentoo-r1
+
+DESCRIPTION="Command-line wrapper for git that makes you better at GitHub"
+HOMEPAGE="https://github.com/github/hub"
+SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+DEPEND=">=dev-lang/go-1.5.1:="
+RDEPEND=">=dev-vcs/git-1.7.3"
+
+DOC_CONTENTS="You may want to add 'alias git=hub' to your .{csh,bash}rc"
+
+src_compile() {
+	./script/build || die
+}
+
+#src_test() {
+#	./script/test || die
+#}
+
+src_install() {
+	readme.gentoo_create_doc
+
+	dobin bin/hub
+
+	doman man/${PN}.1
+	dodoc README.md
+
+	newbashcomp etc/${PN}.bash_completion.sh ${PN}
+
+	insinto /usr/share/zsh/site-functions
+	newins etc/hub.zsh_completion _${PN}
+}
+
+pkg_postinst() {
+	readme.gentoo_print_elog
+}


             reply	other threads:[~2016-11-16  2:18 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-16  2:17 Christoph Junghans [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-05-28 20:14 [gentoo-commits] repo/gentoo:master commit in: dev-vcs/hub/ Sam James
2021-05-28 20:14 Sam James
2021-05-28 20:14 Sam James
2021-02-15 21:02 William Hubbs
2020-06-14 17:43 William Hubbs
2020-05-26  6:07 Georgy Yakovlev
2020-03-18  0:44 William Hubbs
2020-02-17  2:39 William Hubbs
2020-01-01 15:09 William Hubbs
2019-11-25 17:26 William Hubbs
2019-11-25 16:17 William Hubbs
2019-07-25 14:22 William Hubbs
2019-07-25 14:12 William Hubbs
2019-04-13 20:52 William Hubbs
2019-03-16  1:37 William Hubbs
2019-02-28  0:14 William Hubbs
2019-01-21 22:46 William Hubbs
2019-01-15 18:07 William Hubbs
2019-01-01 17:35 William Hubbs
2018-12-26 22:18 William Hubbs
2018-12-26 18:56 William Hubbs
2016-08-06 16:51 Michał Górny
2016-03-13  0:09 Christoph Junghans
2016-01-22 18:48 Justin Lecher
2015-10-31  9:00 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1479261872.a688b46cc665ae52fb3453c86bb955b78c668bb6.junghans@gentoo \
    --to=junghans@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox