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/test_construct/
Date: Fri, 31 May 2019 04:44:34
Message-Id: 1559275953.c2541b94f6d9834643cf76c2d8669bf1fdecd307.graaff@gentoo
1 commit: c2541b94f6d9834643cf76c2d8669bf1fdecd307
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 31 04:12:33 2019 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri May 31 04:12:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2541b94
7
8 dev-ruby/test_construct: add 2.0.2
9
10 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
11 Package-Manager: Portage-2.3.66, Repoman-2.3.11
12
13 dev-ruby/test_construct/Manifest | 1 +
14 .../test_construct/test_construct-2.0.2.ebuild | 28 ++++++++++++++++++++++
15 2 files changed, 29 insertions(+)
16
17 diff --git a/dev-ruby/test_construct/Manifest b/dev-ruby/test_construct/Manifest
18 index ef54db1a618..4b58575f613 100644
19 --- a/dev-ruby/test_construct/Manifest
20 +++ b/dev-ruby/test_construct/Manifest
21 @@ -1 +1,2 @@
22 DIST test_construct-2.0.1.gem 13312 BLAKE2B cda8bec1e1fe343ae506c73bf480a982fdd1224da1e77ab19827a3b76dba57294397d811040448cef6956c8492c9c5cb618d204834d31b54e8619b3d224da20c SHA512 c9898beb04d23974dc5b66a9d7bb4a77cd040cc63b724108c4fc4b81f0680d23a9e09b96110c1b5458107d0c2c8714cbed8b2e81611eef8ca7fab92b31014e98
23 +DIST test_construct-2.0.2.gem 13312 BLAKE2B e1a5068e8133f739dfc407e943b0486c0c2bb2a8f18943a23b366205b206a56b792630daad7a92a021ea367d490b117aec1313faa0e5360bf6b984df3b82c16c SHA512 d73e2daf5c5974c79aedfcd7e1cd6681a3f1f6fe3f2c68bcde26690a18be920ea53b648407e4ee33444364b2a02f1517362c876e703abad02fc528a47de092ff
24
25 diff --git a/dev-ruby/test_construct/test_construct-2.0.2.ebuild b/dev-ruby/test_construct/test_construct-2.0.2.ebuild
26 new file mode 100644
27 index 00000000000..dd4b939f5a6
28 --- /dev/null
29 +++ b/dev-ruby/test_construct/test_construct-2.0.2.ebuild
30 @@ -0,0 +1,28 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +USE_RUBY="ruby24 ruby25 ruby26"
36 +
37 +RUBY_FAKEGEM_RECIPE_DOC="rdoc"
38 +RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
39 +
40 +inherit ruby-fakegem
41 +
42 +DESCRIPTION="Creates temporary files and directories for testing"
43 +HOMEPAGE="https://github.com/bhb/test_construct"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
48 +IUSE=""
49 +
50 +ruby_add_bdepend "test? (
51 + >=dev-ruby/minitest-5.0.8
52 + >=dev-ruby/mocha-0.14.0
53 + dev-ruby/rspec:3
54 +)"
55 +
56 +all_ruby_prepare() {
57 + sed -i -e '/bundler/ s:^:#:' Rakefile || die
58 +}