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: Fri, 11 Sep 2020 06:58:05
Message-Id: 1599807473.79e1e76911f80ec8ef11a0a541730cc36047eef4.graaff@gentoo
1 commit: 79e1e76911f80ec8ef11a0a541730cc36047eef4
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 11 05:19:20 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 11 06:57:53 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79e1e769
7
8 dev-ruby/mixlib-shellout: 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/mixlib-shellout/Manifest | 1 -
14 .../mixlib-shellout/mixlib-shellout-3.0.4.ebuild | 29 ----------------------
15 2 files changed, 30 deletions(-)
16
17 diff --git a/dev-ruby/mixlib-shellout/Manifest b/dev-ruby/mixlib-shellout/Manifest
18 index aa4e92d5b96..57b3d175506 100644
19 --- a/dev-ruby/mixlib-shellout/Manifest
20 +++ b/dev-ruby/mixlib-shellout/Manifest
21 @@ -1,2 +1 @@
22 -DIST mixlib-shellout-3.0.4.tar.gz 42533 BLAKE2B 4d71cfb2d41120be04613749fd5c0e73d6939fe64410e46285a6f81ec61107b1e658ecc011c032621b433eb15e9ffd42b4f589419ffd8f68b7c5977691e011d1 SHA512 2ed866333874c8c40109de9bb4a1e5a3afea4f4c4cf537b11a1ccd670d374b9ce132717e87d43bb41065a9361e45de13bb1fa2db3e1f2d9f4af18253548f5811
23 DIST mixlib-shellout-3.0.9.tar.gz 42476 BLAKE2B 4fab1d0f7d7ee5190f65d312304c7137d940b5cc19bb205d4de1d14eb5bc5829671560785b7f3179220246433b15b9022f8a1d16fb7491e180940c9dc6da5280 SHA512 7234c188e25cc6da3c4859eb12e4f86ce0d6538d17e4c90b1b5105fe677fcd13d884d7045be9767473c3ac63ffcfac7af25dc8efcec184928ba32852a5a760cc
24
25 diff --git a/dev-ruby/mixlib-shellout/mixlib-shellout-3.0.4.ebuild b/dev-ruby/mixlib-shellout/mixlib-shellout-3.0.4.ebuild
26 deleted file mode 100644
27 index 95d017b5ca3..00000000000
28 --- a/dev-ruby/mixlib-shellout/mixlib-shellout-3.0.4.ebuild
29 +++ /dev/null
30 @@ -1,29 +0,0 @@
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_TASK_DOC=""
38 -RUBY_FAKEGEM_RECIPE_TEST="rspec3"
39 -
40 -RUBY_FAKEGEM_EXTRA_DOC="CHANGELOG.md README.md"
41 -
42 -inherit ruby-fakegem
43 -
44 -DESCRIPTION="Run external commands on Unix or Windows"
45 -HOMEPAGE="https://github.com/opscode/mixlib-shellout"
46 -SRC_URI="https://github.com/opscode/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 -
48 -LICENSE="Apache-2.0"
49 -SLOT="0"
50 -KEYWORDS="~amd64 ~x86"
51 -IUSE=""
52 -
53 -each_ruby_prepare() {
54 - # Make sure we actually use the right interpreter for testing
55 - sed -i -e "/ruby_eval/ s:ruby :${RUBY} :" spec/mixlib/shellout_spec.rb || die
56 -
57 - # Avoid spec that requires an interactive terminal
58 - sed -i -e '/with subprocess writing lots of data to both stdout and stderr/,/^ end/ s:^:#:' spec/mixlib/shellout_spec.rb || die
59 -}