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/sshkit/
Date: Sun, 09 Feb 2020 15:07:51
Message-Id: 1581260857.47a4603cebf55172d36de9898866ba8fce97eab1.graaff@gentoo
1 commit: 47a4603cebf55172d36de9898866ba8fce97eab1
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 9 13:51:20 2020 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 9 15:07:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47a4603c
7
8 dev-ruby/sshkit: cleanup
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/sshkit/Manifest | 2 --
14 dev-ruby/sshkit/sshkit-1.18.2.ebuild | 42 ------------------------------------
15 dev-ruby/sshkit/sshkit-1.19.1.ebuild | 42 ------------------------------------
16 3 files changed, 86 deletions(-)
17
18 diff --git a/dev-ruby/sshkit/Manifest b/dev-ruby/sshkit/Manifest
19 index 1d51faa9729..97ad8951d57 100644
20 --- a/dev-ruby/sshkit/Manifest
21 +++ b/dev-ruby/sshkit/Manifest
22 @@ -1,3 +1 @@
23 -DIST sshkit-1.18.2.gem 150016 BLAKE2B b9427eab02b6967a71252bf4a519d86f06429241e28d661dd424ff7739fd69d68ca9b430096518872141e4e09fbac832e04aab8a89fc1d89ebe5077303b87238 SHA512 a98477dfc9c566ba3777a2557db95aa20c2b220b238d8acd59888c8ac271b71c1bbebb29f37ad87102a155beecdd0b60872b4c735f71f7a65be2c1fb5ae60c8f
24 -DIST sshkit-1.19.1.gem 155136 BLAKE2B 756d4f2e7575d0b2b2c0cdf885a22739e8b8f458d9ffebd614bc58135bd285853afe63bddc262dfb2d73ca64f6be5ebdb01436bbe25deaad73f5a62d9ac67b33 SHA512 9df31133c4d6b8da753aa2ab65574a813c99d086fff47b42db345057ff3eadce7e24bd6b648b28fcb476282a8b7f204acaec0cc766a3c25c52a3f64223169ebf
25 DIST sshkit-1.20.0.gem 155648 BLAKE2B fdb95aed6d407c598abde71591cbe2d7b1f98d91985695509a6545bcabc5c0f3337cfe8f73e82f4b212e3c04b6da09e7521637934baeea7a9b5e268ff72fcad1 SHA512 682234f99d6ae9533c99f0319ad0f3732f2ff166a8f1a07d5ce8ff59fd9606af9440798a39f657dd3899e9278639aa93d5fb29af8f64b2ebea7f3b8e75fb25fa
26
27 diff --git a/dev-ruby/sshkit/sshkit-1.18.2.ebuild b/dev-ruby/sshkit/sshkit-1.18.2.ebuild
28 deleted file mode 100644
29 index 5c4ef99622e..00000000000
30 --- a/dev-ruby/sshkit/sshkit-1.18.2.ebuild
31 +++ /dev/null
32 @@ -1,42 +0,0 @@
33 -# Copyright 1999-2019 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -USE_RUBY="ruby23 ruby24 ruby25 ruby26"
38 -
39 -# There are functional tests that require vagrant boxes to be set up.
40 -RUBY_FAKEGEM_TASK_TEST="test:units"
41 -
42 -RUBY_FAKEGEM_TASK_DOC=""
43 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md FAQ.md README.md"
44 -
45 -inherit ruby-fakegem
46 -
47 -DESCRIPTION="SSHKit makes it easy to write structured, testable SSH commands in Ruby"
48 -HOMEPAGE="https://github.com/capistrano/sshkit"
49 -
50 -LICENSE="MIT"
51 -SLOT="0"
52 -KEYWORDS="~amd64"
53 -IUSE=""
54 -
55 -ruby_add_rdepend "
56 - >=dev-ruby/net-ssh-2.8.0:*
57 - >=dev-ruby/net-scp-1.1.2
58 -"
59 -
60 -ruby_add_bdepend "test? ( dev-ruby/minitest dev-ruby/mocha )"
61 -
62 -all_ruby_prepare() {
63 - sed -i -e '/bundler/I s:^:#:' Rakefile test/helper.rb || die
64 - sed -i -e '/\(turn\|unindent\|reporters\)/I s:^:#:' \
65 - -e '1irequire "set"; require "pathname"' test/helper.rb || die
66 -
67 - # Fix assumption about parent directory name
68 - sed -i -e '/assert_match/ s/sshkit/sshkit.*/' test/unit/test_deprecation_logger.rb || die
69 -}
70 -
71 -each_ruby_test() {
72 - # Run tests directly to avoid dependencies in the Rakefile
73 - ${RUBY} -Ilib:test:. -e "Dir['test/unit/**/test*.rb'].each{|f| require f}" || die
74 -}
75
76 diff --git a/dev-ruby/sshkit/sshkit-1.19.1.ebuild b/dev-ruby/sshkit/sshkit-1.19.1.ebuild
77 deleted file mode 100644
78 index 2e3a0b61bd0..00000000000
79 --- a/dev-ruby/sshkit/sshkit-1.19.1.ebuild
80 +++ /dev/null
81 @@ -1,42 +0,0 @@
82 -# Copyright 1999-2019 Gentoo Authors
83 -# Distributed under the terms of the GNU General Public License v2
84 -
85 -EAPI=6
86 -USE_RUBY="ruby24 ruby25 ruby26"
87 -
88 -# There are functional tests that require vagrant boxes to be set up.
89 -RUBY_FAKEGEM_TASK_TEST="test:units"
90 -
91 -RUBY_FAKEGEM_TASK_DOC=""
92 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md FAQ.md README.md"
93 -
94 -inherit ruby-fakegem
95 -
96 -DESCRIPTION="SSHKit makes it easy to write structured, testable SSH commands in Ruby"
97 -HOMEPAGE="https://github.com/capistrano/sshkit"
98 -
99 -LICENSE="MIT"
100 -SLOT="0"
101 -KEYWORDS="~amd64"
102 -IUSE=""
103 -
104 -ruby_add_rdepend "
105 - >=dev-ruby/net-ssh-2.8.0:*
106 - >=dev-ruby/net-scp-1.1.2
107 -"
108 -
109 -ruby_add_bdepend "test? ( dev-ruby/minitest dev-ruby/mocha )"
110 -
111 -all_ruby_prepare() {
112 - sed -i -e '/bundler/I s:^:#:' Rakefile test/helper.rb || die
113 - sed -i -e '/\(turn\|unindent\|reporters\)/I s:^:#:' \
114 - -e '1irequire "set"; require "pathname"' test/helper.rb || die
115 -
116 - # Fix assumption about parent directory name
117 - sed -i -e '/assert_match/ s/sshkit/sshkit.*/' test/unit/test_deprecation_logger.rb || die
118 -}
119 -
120 -each_ruby_test() {
121 - # Run tests directly to avoid dependencies in the Rakefile
122 - ${RUBY} -Ilib:test:. -e "Dir['test/unit/**/test*.rb'].each{|f| require f}" || die
123 -}