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: Thu, 14 Mar 2019 05:56:21
Message-Id: 1552542890.d98d808832bd9845fd9cf1186011234c6306c345.graaff@gentoo
1 commit: d98d808832bd9845fd9cf1186011234c6306c345
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Thu Mar 14 05:54:50 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 14 05:54:50 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d98d8088
7
8 dev-ruby/hoe: add 3.17.2
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/hoe/Manifest | 1 +
14 dev-ruby/hoe/hoe-3.17.2.ebuild | 48 ++++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 49 insertions(+)
16
17 diff --git a/dev-ruby/hoe/Manifest b/dev-ruby/hoe/Manifest
18 index dc7b7d8dd49..9a88d8b9e7e 100644
19 --- a/dev-ruby/hoe/Manifest
20 +++ b/dev-ruby/hoe/Manifest
21 @@ -1,2 +1,3 @@
22 DIST hoe-3.16.0.gem 188416 BLAKE2B 48383c46512a359a269ca3475ec701b1443e0ef71b31d1ca1604de391ed4df6b0ad27dd1c5f6ed04751047d211f2c6299245361cf131e2418f224324ac9934c3 SHA512 66cefb5a24906e19bbf0c82c8539d6d101b84d0dc1d3ce1910e4117357639489968271e76e86bd3c432b9ef7e3b24a78294c06210cbef280860f7dac18100606
23 DIST hoe-3.17.1.gem 188416 BLAKE2B 0fef6dd9ae4bda93f527d7451d0d591cdc4ba1361aaec531f82e0d7ff03575845c3d5ff85189d76f9ecec17797774fd0ca82f7332a4588d086a494095af99a9d SHA512 5e4b83309ed88da098a5ae8698f9686cea1657f4554fff72446bac46bc567125232a3c5a5b941bd6d5ea18dc53f3cbf5b329f2f0623ef74e81d81586edc63ca3
24 +DIST hoe-3.17.2.gem 188416 BLAKE2B a6f4f93cc2d724b1c1e855c4e6976b5dbb469c4e10fc9c181b6cafaeb7088f9c19bd4bb5b858a25f011dead1b6e8392d349fe9e86d704a6a4d627cddab8de46a SHA512 d6703cd8913ac7055c33dbfead5610bd197be90ac3aeeaf2e4498ab088447d7e08dbe1ad3fdc602afd26fc7cfda12d73dd43a605b9bf59ecd83b1cfd8845f55b
25
26 diff --git a/dev-ruby/hoe/hoe-3.17.2.ebuild b/dev-ruby/hoe/hoe-3.17.2.ebuild
27 new file mode 100644
28 index 00000000000..daae06b70ab
29 --- /dev/null
30 +++ b/dev-ruby/hoe/hoe-3.17.2.ebuild
31 @@ -0,0 +1,48 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +USE_RUBY="ruby23 ruby24 ruby25 ruby26"
37 +
38 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
39 +
40 +RUBY_FAKEGEM_DOCDIR="doc"
41 +RUBY_FAKEGEM_EXTRADOC="History.rdoc Manifest.txt README.rdoc"
42 +
43 +RUBY_FAKEGEM_EXTRAINSTALL="template"
44 +
45 +inherit ruby-fakegem
46 +
47 +DESCRIPTION="Hoe extends rake to provide full project automation"
48 +HOMEPAGE="https://www.zenspider.com/projects/hoe.html"
49 +
50 +LICENSE="MIT"
51 +SLOT="0"
52 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
53 +IUSE="doc"
54 +
55 +ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.9:5 )"
56 +
57 +ruby_add_rdepend ">=dev-ruby/rake-0.8.7 <dev-ruby/rake-13.0"
58 +
59 +all_ruby_prepare() {
60 + # Skip isolation
61 + sed -i -e '/isolate/ s:^:#:' Rakefile || die
62 +
63 + # Skip test depending on specifics of gem command name
64 + sed -i -e '/test_nosudo/,/^ end/ s:^:#:' test/test_hoe.rb || die
65 +
66 + # Gem.bin_wrapper does not work as expected on Gentoo.
67 + sed -i -e 's/#{Gem.bin_wrapper "rdoc"}/-S rdoc/' lib/hoe/rcov.rb lib/hoe/publish.rb test/test_hoe_publish.rb || die
68 +
69 + # Avoid test with random sort order
70 + sed -i -e '/test_possibly_better/askip "ordering issues"' test/test_hoe.rb || die
71 +}
72 +
73 +all_ruby_compile() {
74 + all_fakegem_compile
75 +
76 + if use doc; then
77 + rdoc --title "seattlerb's hoe-3.5.1 Documentation" -o doc --main README.txt lib History.txt Manifest.txt README.txt || die
78 + fi
79 +}