Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/gitsh/
Date: Fri, 05 May 2017 22:24:40
Message-Id: 1494023048.40c26b8e962a2e71a12b9c7b92215ae99f872bf3.mjo@gentoo
1 commit: 40c26b8e962a2e71a12b9c7b92215ae99f872bf3
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 5 22:24:08 2017 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Fri May 5 22:24:08 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40c26b8e
7
8 dev-vcs/gitsh: remove unused version 0.10.
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-vcs/gitsh/Manifest | 1 -
13 dev-vcs/gitsh/gitsh-0.10.ebuild | 55 -----------------------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/dev-vcs/gitsh/Manifest b/dev-vcs/gitsh/Manifest
17 index 317131275e2..f822a980e1d 100644
18 --- a/dev-vcs/gitsh/Manifest
19 +++ b/dev-vcs/gitsh/Manifest
20 @@ -1,2 +1 @@
21 -DIST gitsh-0.10.tar.gz 57550 SHA256 a5b07c44d68700c6e41681c838625650dbe1313f2bbe0976a3ee30086b4d5f93 SHA512 e51858c62e31e6b3644fb7239e6ffb7e8ffc7dd9983d67f792f739fd3459a8741d29f67709738127754454ff1e0f87014f8eb77cfd506cc5d32c5d9c719b2b16 WHIRLPOOL daac99aa5fef26652e606de5039e00be0d25579c3045e9eb5f4c2195ae34ec038408e29f8c55fdde7b9bef7ad1b3aab31aade2e5a03b60a8bbe46ccd0cf515b1
22 DIST gitsh-0.11.2.tar.gz 101503 SHA256 45572b528900bebf5fa2b81e3b04572cbf34dbfee3b17281a1c750ec9518533f SHA512 e8d473b4a13481722eb9a6b9232eb47174ed40f86af45848f33b9b936f09cf2010f8235036d9897bd637b841f35d051d3e426b56642f247b07c3a0d323e9a968 WHIRLPOOL 6d5da503e4f4df3211fc38552d35ce9bd2189bd10430acd234a701a413dc806c2ca4cd3aae2b55fc28d74f82f296ad7a862e72c3629e6c0383bd629c236065ec
23
24 diff --git a/dev-vcs/gitsh/gitsh-0.10.ebuild b/dev-vcs/gitsh/gitsh-0.10.ebuild
25 deleted file mode 100644
26 index eed09fb1a47..00000000000
27 --- a/dev-vcs/gitsh/gitsh-0.10.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2016 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=5
34 -
35 -USE_RUBY="ruby20 ruby21"
36 -
37 -RUBY_FAKEGEM_EXTRADOC="README.md"
38 -
39 -inherit autotools ruby-fakegem
40 -
41 -DESCRIPTION="An interactive shell for git"
42 -HOMEPAGE="https://github.com/thoughtbot/gitsh"
43 -SRC_URI="https://github.com/thoughtbot/gitsh/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -SLOT="0"
46 -LICENSE="BSD"
47 -KEYWORDS="~amd64 ~amd64-linux"
48 -IUSE=""
49 -
50 -ruby_add_rdepend "
51 - dev-ruby/bundler
52 - dev-ruby/blankslate:0
53 - dev-ruby/coderay
54 - dev-ruby/diff-lcs
55 - dev-ruby/method_source
56 - dev-ruby/parslet
57 - dev-ruby/pry
58 - dev-ruby/slop:3
59 - dev-ruby/rspec:3
60 - dev-ruby/rspec-core:3
61 - dev-ruby/rspec-expectations:3
62 - dev-ruby/rspec-mocks:3
63 - dev-ruby/rspec-support:3
64 - "
65 -
66 -DOCS="README.md"
67 -
68 -each_ruby_prepare() {
69 - rm Gemfile.lock || die
70 - eautoreconf
71 -}
72 -
73 -each_ruby_configure() {
74 - default
75 -}
76 -
77 -each_ruby_compile() {
78 - default
79 -}
80 -
81 -all_ruby_install() {
82 - all_fakegem_install
83 - doman "${S}"/man/man1/${PN}.1
84 -}