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/rake-compiler/
Date: Sat, 21 Sep 2019 06:30:24
Message-Id: 1569047401.767ec247dd0995f870e71a1429c8fab04428ff66.graaff@gentoo
1 commit: 767ec247dd0995f870e71a1429c8fab04428ff66
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 21 06:29:14 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 21 06:30:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=767ec247
7
8 dev-ruby/rake-compiler: add 1.0.8
9
10 Package-Manager: Portage-2.3.69, Repoman-2.3.16
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/rake-compiler/Manifest | 1 +
14 dev-ruby/rake-compiler/rake-compiler-1.0.8.ebuild | 49 +++++++++++++++++++++++
15 2 files changed, 50 insertions(+)
16
17 diff --git a/dev-ruby/rake-compiler/Manifest b/dev-ruby/rake-compiler/Manifest
18 index 14721e8f1ca..d52a48bf00f 100644
19 --- a/dev-ruby/rake-compiler/Manifest
20 +++ b/dev-ruby/rake-compiler/Manifest
21 @@ -1 +1,2 @@
22 DIST rake-compiler-1.0.7.tar.gz 33444 BLAKE2B c3a92206d4d7defdf21295aaf094f704596962a3ee79c3517ea1058732e1f9f378b5f14bbe3b9652572564d11c566e26014e187dcdb488409bf95ea9a52e0a7c SHA512 fa901f5cc48891f07bd8d9a27cf4e745e87d5a667dbee0c9f4b43f9564fdfe3067b9c658f10ea8bcacd32ea7320a542ef0fca9373147057472f5572a4a4c5268
23 +DIST rake-compiler-1.0.8.tar.gz 33547 BLAKE2B 542544543cd6d02a9ff964571244c65a0d748e09ea88027a514f25d13086463094aec29b0961881aa175f9553afcf14fc9f7c12dba0e96a07bf88e21f51e87bf SHA512 30b753d45a1180e034b520ad6385f2799098f0916d55e8b4729f5e3a29dabc1acfa292475edfb384c7809543e1c3e428e28db1bacb5383deb9f4bb31b18d6fe5
24
25 diff --git a/dev-ruby/rake-compiler/rake-compiler-1.0.8.ebuild b/dev-ruby/rake-compiler/rake-compiler-1.0.8.ebuild
26 new file mode 100644
27 index 00000000000..1c37feb616f
28 --- /dev/null
29 +++ b/dev-ruby/rake-compiler/rake-compiler-1.0.8.ebuild
30 @@ -0,0 +1,49 @@
31 +# Copyright 1999-2019 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="none"
38 +
39 +RUBY_FAKEGEM_RECIPE_DOC="none"
40 +RUBY_FAKEGEM_EXTRADOC="History.txt README.rdoc"
41 +
42 +inherit ruby-fakegem eutils
43 +
44 +DESCRIPTION="Provide a standard and simplified way to build and package Ruby extensions"
45 +HOMEPAGE="https://github.com/luislavena/rake-compiler"
46 +LICENSE="MIT"
47 +
48 +SRC_URI="https://github.com/luislavena/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
49 +
50 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
51 +SLOT="0"
52 +IUSE=""
53 +
54 +ruby_add_rdepend "dev-ruby/rake"
55 +
56 +ruby_add_bdepend "test? ( dev-ruby/rspec:3 )"
57 +
58 +USE_RUBY="ruby24 ruby25 ruby26" ruby_add_bdepend "test? ( dev-util/cucumber dev-ruby/rspec:2 )"
59 +
60 +all_ruby_prepare() {
61 + # Make sure the right rspec version is used in cucumber.
62 + sed -i -e "1igem 'rspec', '~>2.0'" features/support/env.rb || die
63 +
64 + # Avoid failing features for native gems, this also fails with rubygems
65 + sed -i -e '/generate native gem/,$ s:^:#:' features/package.feature || die
66 +}
67 +
68 +each_ruby_test() {
69 + # Skip cucumber for new ruby versions (not ready yet)
70 + case ${RUBY} in
71 + **ruby24|*ruby25|*ruby26)
72 + RSPEC_VERSION=3 ruby-ng_rspec
73 + ruby-ng_cucumber
74 + ;;
75 + *)
76 + RSPEC_VERSION=3 ruby-ng_rspec
77 + ;;
78 + esac
79 +}