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/hoe/
Date: Mon, 14 Sep 2020 07:29:03
Message-Id: 1600068534.8f60cf97d684c709079f8f13114bacb353f454c1.graaff@gentoo
1 commit: 8f60cf97d684c709079f8f13114bacb353f454c1
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 14 07:25:29 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 14 07:28:54 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f60cf97
7
8 dev-ruby/hoe: cleanup
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/hoe/Manifest | 1 -
14 dev-ruby/hoe/hoe-3.16.0.ebuild | 48 ------------------------------------------
15 2 files changed, 49 deletions(-)
16
17 diff --git a/dev-ruby/hoe/Manifest b/dev-ruby/hoe/Manifest
18 index 0b6b0575bb0..ef657aca310 100644
19 --- a/dev-ruby/hoe/Manifest
20 +++ b/dev-ruby/hoe/Manifest
21 @@ -1,2 +1 @@
22 -DIST hoe-3.16.0.gem 188416 BLAKE2B 48383c46512a359a269ca3475ec701b1443e0ef71b31d1ca1604de391ed4df6b0ad27dd1c5f6ed04751047d211f2c6299245361cf131e2418f224324ac9934c3 SHA512 66cefb5a24906e19bbf0c82c8539d6d101b84d0dc1d3ce1910e4117357639489968271e76e86bd3c432b9ef7e3b24a78294c06210cbef280860f7dac18100606
23 DIST hoe-3.21.0.gem 193024 BLAKE2B 2ff65edc6e0aebc93ebc8f3e628261ac3fabec4034b8e7b1bb3c38ab45c8b4641267a8c46c851ad69425c08782553c628574ae0a1417257cf64ba05a86de08f3 SHA512 39da93520bdb4efcbc58af58562ff8abbdecf45f92071ddb31f68ac799eb6f704431cea3d699aa039ba3a5217dc9b0f2d87f8b553d62860c34cb63803b625754
24
25 diff --git a/dev-ruby/hoe/hoe-3.16.0.ebuild b/dev-ruby/hoe/hoe-3.16.0.ebuild
26 deleted file mode 100644
27 index 48ff1b3da9b..00000000000
28 --- a/dev-ruby/hoe/hoe-3.16.0.ebuild
29 +++ /dev/null
30 @@ -1,48 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -USE_RUBY="ruby22 ruby23 ruby24 ruby25"
36 -
37 -RUBY_FAKEGEM_RECIPE_DOC="rdoc"
38 -
39 -RUBY_FAKEGEM_DOCDIR="doc"
40 -RUBY_FAKEGEM_EXTRADOC="History.rdoc Manifest.txt README.rdoc"
41 -
42 -RUBY_FAKEGEM_EXTRAINSTALL="template"
43 -
44 -inherit ruby-fakegem
45 -
46 -DESCRIPTION="Hoe extends rake to provide full project automation"
47 -HOMEPAGE="https://www.zenspider.com/projects/hoe.html"
48 -
49 -LICENSE="MIT"
50 -SLOT="0"
51 -KEYWORDS="~alpha amd64 arm ~arm64 hppa ~mips ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
52 -IUSE="doc"
53 -
54 -ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.9:5 )"
55 -
56 -ruby_add_rdepend ">=dev-ruby/rake-0.8.7 <dev-ruby/rake-13.0"
57 -
58 -all_ruby_prepare() {
59 - # Skip isolation
60 - sed -i -e '/isolate/ s:^:#:' Rakefile || die
61 -
62 - # Skip test depending on specifics of gem command name
63 - sed -i -e '/test_nosudo/,/^ end/ s:^:#:' test/test_hoe.rb || die
64 -
65 - # Gem.bin_wrapper does not work as expected on Gentoo.
66 - sed -i -e 's/Gem.bin_wrapper//' lib/hoe/rcov.rb lib/hoe/publish.rb test/test_hoe_publish.rb || die
67 -
68 - # Fix broken test by including the right plugin first
69 - sed -i -e '/test_extensions/a Hoe.plugin :clean' test/test_hoe.rb || die
70 -}
71 -
72 -all_ruby_compile() {
73 - all_fakegem_compile
74 -
75 - if use doc; then
76 - rdoc --title "seattlerb's hoe-3.5.1 Documentation" -o doc --main README.txt lib History.txt Manifest.txt README.txt || die
77 - fi
78 -}