Gentoo Archives: gentoo-commits

From: Hans de Graaff <graaff@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/pry/
Date: Thu, 09 May 2019 05:54:58
Message-Id: 1557381216.09a80a6fbd74c75fe38e8242fa3f715f8b07ace7.graaff@gentoo
1 commit: 09a80a6fbd74c75fe38e8242fa3f715f8b07ace7
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 9 05:34:48 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu May 9 05:53:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09a80a6f
7
8 dev-ruby/pry: cleanup
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-ruby/pry/Manifest | 1 -
14 dev-ruby/pry/pry-0.12.0.ebuild | 45 ------------------------------------------
15 2 files changed, 46 deletions(-)
16
17 diff --git a/dev-ruby/pry/Manifest b/dev-ruby/pry/Manifest
18 index 7f1818da7d8..bef25e9fc93 100644
19 --- a/dev-ruby/pry/Manifest
20 +++ b/dev-ruby/pry/Manifest
21 @@ -1,2 +1 @@
22 -DIST pry-0.12.0.tar.gz 237643 BLAKE2B 3c1d749c4df638652d0c9e2a11efe1c48225f2aa434e1adb3323fa5cc21fce40f12c7cecdff20589e8329acef30523114292a2834392b53f5d31c40132bc4232 SHA512 bd8ea74c281d64262d499970c0861659679670f052acde37f1d7fa50f2184c816e5681ef2566bf3a6010d150f9c649b39024a79a269e2a7b47057e1d8173d2ce
23 DIST pry-0.12.2.tar.gz 237824 BLAKE2B 2a99e6092968150f2c685bc93004bd596adbe5e289bd52ee68f11b52512ac43d0e7079b8129445160652c668c355edae97f1fd0fd2ead940f769831ac9ecf4ff SHA512 b3a2a9a26d7062b994760fc5ca6c8b477813e215624d88ae56d23703429d3d8d21357b5d89583c1af1c7654f892c0c57ffbc6dd6b6f126e0a6b786c7c48df6af
24
25 diff --git a/dev-ruby/pry/pry-0.12.0.ebuild b/dev-ruby/pry/pry-0.12.0.ebuild
26 deleted file mode 100644
27 index dca7baa3cb1..00000000000
28 --- a/dev-ruby/pry/pry-0.12.0.ebuild
29 +++ /dev/null
30 @@ -1,45 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -USE_RUBY="ruby23 ruby24 ruby25"
37 -
38 -RUBY_FAKEGEM_RECIPE_DOC="yard"
39 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
40 -RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
41 -RUBY_FAKEGEM_GEMSPEC=${PN}.gemspec
42 -
43 -inherit ruby-fakegem
44 -
45 -DESCRIPTION="Pry is a powerful alternative to the standard IRB shell for Ruby"
46 -HOMEPAGE="https://github.com/pry/pry/wiki"
47 -SRC_URI="https://github.com/pry/pry/archive/v${PV}.tar.gz -> ${P}.tar.gz"
48 -IUSE=""
49 -SLOT="ruby19"
50 -
51 -LICENSE="MIT"
52 -KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
53 -
54 -ruby_add_rdepend "
55 - >=dev-ruby/coderay-1.1.0 =dev-ruby/coderay-1.1*
56 - >=dev-ruby/method_source-0.9.0 =dev-ruby/method_source-0.9*"
57 -
58 -ruby_add_bdepend "
59 - test? (
60 - >=dev-ruby/open4-1.3
61 - >=dev-ruby/rake-0.9
62 - >=dev-ruby/mocha-1.0
63 - )"
64 -
65 -all_ruby_prepare() {
66 - # Avoid unneeded dependency on git.
67 - # Loosen coderay dependency.
68 - sed -e '/git ls-files/d' \
69 - -e '/coderay/s/~>/>=/' \
70 - -e '/bundler/d' \
71 - -i ${RUBY_FAKEGEM_GEMSPEC} || die
72 - sed -e '/[Bb]undler/d' -e "1irequire 'mocha/api'\ " -i spec/helper.rb || die
73 - # Out of date tests
74 - rm spec/commands/gist_spec.rb || die
75 -}