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: Wed, 07 Jul 2021 06:53:46
Message-Id: 1625640816.257b0e1314ed5ebfcde2a2ff2a34af4ac209db53.graaff@gentoo
1 commit: 257b0e1314ed5ebfcde2a2ff2a34af4ac209db53
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 7 06:53:08 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 7 06:53:36 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=257b0e13
7
8 dev-ruby/puppet_forge: cleanup
9
10 Package-Manager: Portage-3.0.20, Repoman-3.0.2
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/puppet_forge/Manifest | 1 -
14 dev-ruby/puppet_forge/puppet_forge-2.3.3.ebuild | 44 -------------------------
15 2 files changed, 45 deletions(-)
16
17 diff --git a/dev-ruby/puppet_forge/Manifest b/dev-ruby/puppet_forge/Manifest
18 index 19f9bd34fcd..82af1fc11ec 100644
19 --- a/dev-ruby/puppet_forge/Manifest
20 +++ b/dev-ruby/puppet_forge/Manifest
21 @@ -1,2 +1 @@
22 -DIST puppet_forge-2.3.3.gem 772608 BLAKE2B 1bba9ce824019cefbcd4e28625c99855f68bc4d752f069bf84ff86c0f768dc8b795eaa95b76e340e273079dc2882abff91a2b44d0a6f280f541637261357508e SHA512 8e29d35b7175430a50d2da0b07ef3a9bd274df97f292e24c12a0d267257ff123df5380c0ba8c7124be21b4f4f0b2a11af0923e9fb5751683392c6d11ed6bf0e0
23 DIST puppet_forge-2.3.4.gem 772608 BLAKE2B abb730eaf55a3c87a6f31b192e1efe6783895fad468c850f1e4e87d15dc8887b72571c425e81272c308e3ba9e94936f20b3ccbd22e670d7c111c88ce1acc1974 SHA512 f903f3ecbfdfe80b4c9d769ba1f622bf64cd723fd9165d1e3ed27296eb0e2e67f827fbc5faf460391e462cfd1cc652e573093dae29622726b3e5a37e01cf61ec
24
25 diff --git a/dev-ruby/puppet_forge/puppet_forge-2.3.3.ebuild b/dev-ruby/puppet_forge/puppet_forge-2.3.3.ebuild
26 deleted file mode 100644
27 index abdaf707c6d..00000000000
28 --- a/dev-ruby/puppet_forge/puppet_forge-2.3.3.ebuild
29 +++ /dev/null
30 @@ -1,44 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -USE_RUBY="ruby24 ruby25 ruby26"
36 -
37 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
38 -
39 -RUBY_FAKEGEM_EXTRADOC="README.md CHANGELOG.md"
40 -
41 -RUBY_FAKEGEM_EXTRAINSTALL=locales
42 -
43 -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
44 -
45 -inherit ruby-fakegem
46 -
47 -DESCRIPTION="Tools to access Forge API information on Modules, Users, and Releases"
48 -HOMEPAGE="https://github.com/puppetlabs/forge-ruby"
49 -
50 -LICENSE="Apache-2.0"
51 -SLOT="2"
52 -KEYWORDS="~amd64"
53 -IUSE=""
54 -
55 -ruby_add_rdepend "
56 - >=dev-ruby/faraday-0.9.0:0
57 - >=dev-ruby/faraday_middleware-0.9.0:0
58 - >=dev-ruby/gettext-setup-0.11:0
59 - dev-ruby/minitar
60 - =dev-ruby/semantic_puppet-1*
61 -"
62 -
63 -all_ruby_prepare() {
64 - # Avoid integration and user specs since they all require network access
65 - rm -rf spec/integration spec/unit/forge/v3/user_spec.rb || die
66 -
67 - # Fix overly restrictive dependencies
68 - sed -i \
69 - -e '/faraday/ s/0.18.0/0.99.0/' \
70 - -e '/faraday_middleware/ s/0.14.0/0.99.0/' \
71 - ${RUBY_FAKEGEM_GEMSPEC} || die
72 -
73 - sed -i -e 's/git ls-files -z/find . -print0/' ${RUBY_FAKEGEM_GEMSPEC} || die
74 -}