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/mixlib-shellout/
Date: Sat, 29 Jul 2017 05:42:44
Message-Id: 1501306926.22ea101fb26ee7c2ec281e82710b7ccf061d5518.graaff@gentoo
1 commit: 22ea101fb26ee7c2ec281e82710b7ccf061d5518
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jul 29 05:18:18 2017 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sat Jul 29 05:42:06 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22ea101f
7
8 dev-ruby/mixlib-shellout: add 2.3.2
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 dev-ruby/mixlib-shellout/Manifest | 1 +
13 .../mixlib-shellout/mixlib-shellout-2.3.2.ebuild | 26 ++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-ruby/mixlib-shellout/Manifest b/dev-ruby/mixlib-shellout/Manifest
17 index 47a7de2a028..a91ca44d3ab 100644
18 --- a/dev-ruby/mixlib-shellout/Manifest
19 +++ b/dev-ruby/mixlib-shellout/Manifest
20 @@ -1 +1,2 @@
21 DIST mixlib-shellout-2.2.7.tar.gz 35122 SHA256 9fc9cd467d27ac3cb50cb3993a55d1aeb04ec92e74de4b2d73d839bce9f2e6e9 SHA512 e1179e296471d3aa0c22f2d7a9dfd957da4870f7fd5456c9f6788fca6a1efc62487fd719e45a6c3f85539db46cad0fbf4a67eddac087393004a179a19ce36fa3 WHIRLPOOL 35e98ebedb21c5a5852cac4d734ea90206a1a727c2884a82411126b42d03ef39ef611447240ba8ebe7b0b91448fc86d501eb83ef709a194d5115bd632ff4132e
22 +DIST mixlib-shellout-2.3.2.tar.gz 35828 SHA256 b80209525ae4232c9e6a51c3c0c508a9cec89958553a79a323babc63099ba399 SHA512 72f4979d1c444b1f097ecfd4767a2989e60398e84a78106b80077b664bc01d6fc68022cec26172f1e7c0384dd3fc4f64c723ad3a2882db7284dbadacc7cf24c9 WHIRLPOOL df320d02a6b29578ba8989f48cfffb3292ca353fe0f023aace1579f48908c5d620b52f74c586e5b8c634e77ad6500f3869e806cfb8f4895c6f5341bd47da4d1a
23
24 diff --git a/dev-ruby/mixlib-shellout/mixlib-shellout-2.3.2.ebuild b/dev-ruby/mixlib-shellout/mixlib-shellout-2.3.2.ebuild
25 new file mode 100644
26 index 00000000000..adcdf80bf37
27 --- /dev/null
28 +++ b/dev-ruby/mixlib-shellout/mixlib-shellout-2.3.2.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +USE_RUBY="ruby21 ruby22 ruby23 ruby24"
35 +
36 +RUBY_FAKEGEM_TASK_DOC=""
37 +RUBY_FAKEGEM_RECIPE_TEST="rspec3"
38 +
39 +RUBY_FAKEGEM_EXTRA_DOC="CHANGELOG.md README.md"
40 +
41 +inherit ruby-fakegem
42 +
43 +DESCRIPTION="Run external commands on Unix or Windows"
44 +HOMEPAGE="https://github.com/opscode/mixlib-shellout"
45 +SRC_URI="https://github.com/opscode/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +IUSE=""
51 +
52 +each_ruby_prepare() {
53 + # Make sure we actually use the right interpreter for testing
54 + sed -i -e "/ruby_eval/ s:ruby :${RUBY} :" spec/mixlib/shellout_spec.rb || die
55 +}