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/puppet_forge/
Date: Sun, 10 Feb 2019 07:25:35
Message-Id: 1549783522.f37ffb8dbe8a36aab7c50aff816141fab25a5f88.graaff@gentoo
1 commit: f37ffb8dbe8a36aab7c50aff816141fab25a5f88
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 10 07:04:42 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 10 07:25:22 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f37ffb8d
7
8 dev-ruby/puppet_forge: cleanup broken version
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 dev-ruby/puppet_forge/puppet_forge-2.2.9.ebuild | 41 -------------------------
14 1 file changed, 41 deletions(-)
15
16 diff --git a/dev-ruby/puppet_forge/puppet_forge-2.2.9.ebuild b/dev-ruby/puppet_forge/puppet_forge-2.2.9.ebuild
17 deleted file mode 100644
18 index e343cdbdd5d..00000000000
19 --- a/dev-ruby/puppet_forge/puppet_forge-2.2.9.ebuild
20 +++ /dev/null
21 @@ -1,41 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -USE_RUBY="ruby23 ruby24 ruby25"
27 -
28 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
29 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
30 -
31 -RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
32 -
33 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
34 -
35 -inherit ruby-fakegem
36 -
37 -DESCRIPTION="Tools to access Forge API information on Modules, Users, and Releases"
38 -HOMEPAGE="https://github.com/puppetlabs/forge-ruby"
39 -
40 -LICENSE="Apache-2.0"
41 -SLOT="2"
42 -KEYWORDS="~amd64"
43 -IUSE=""
44 -
45 -ruby_add_rdepend "
46 - >=dev-ruby/faraday-0.9.0:0
47 - >=dev-ruby/faraday_middleware-0.9.0:0
48 - >=dev-ruby/gettext-setup-0.11:0
49 - dev-ruby/archive-tar-minitar
50 - =dev-ruby/semantic_puppet-1*
51 -"
52 -
53 -all_ruby_prepare() {
54 - # Avoid integration and user specs since they all require network access
55 - rm -rf spec/integration spec/unit/forge/v3/user_spec.rb || die
56 -
57 - # Fix overly restrictive dependencies
58 - sed -i \
59 - -e '/faraday/ s/0.14.0/0.99.0/' \
60 - -e '/faraday_middleware/ s/0.13.0/0.99.0/' \
61 - ${RUBY_FAKEGEM_GEMSPEC} || die
62 -}