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/capistrano/
Date: Wed, 24 Nov 2021 12:46:18
Message-Id: 1637757968.0c37c31ae6447f6def2a20b020213934e5a1ac1b.graaff@gentoo
1 commit: 0c37c31ae6447f6def2a20b020213934e5a1ac1b
2 Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 24 10:52:47 2021 +0000
4 Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 24 12:46:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c37c31a
7
8 dev-ruby/capistrano: cleanup
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
12
13 dev-ruby/capistrano/capistrano-2.15.5-r2.ebuild | 48 -------------------------
14 1 file changed, 48 deletions(-)
15
16 diff --git a/dev-ruby/capistrano/capistrano-2.15.5-r2.ebuild b/dev-ruby/capistrano/capistrano-2.15.5-r2.ebuild
17 deleted file mode 100644
18 index 662b053f032b..000000000000
19 --- a/dev-ruby/capistrano/capistrano-2.15.5-r2.ebuild
20 +++ /dev/null
21 @@ -1,48 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -USE_RUBY="ruby24 ruby25 ruby26"
27 -
28 -RUBY_FAKEGEM_TASK_DOC=""
29 -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md"
30 -
31 -RUBY_FAKEGEM_BINWRAP=""
32 -
33 -inherit ruby-fakegem
34 -
35 -DESCRIPTION="A distributed application deployment system"
36 -HOMEPAGE="https://capistranorb.com/"
37 -
38 -LICENSE="MIT"
39 -SLOT="2"
40 -KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris"
41 -IUSE=""
42 -
43 -ruby_add_rdepend "
44 - >=dev-ruby/net-ssh-2.0.14:*
45 - >=dev-ruby/net-sftp-2.0.2
46 - >=dev-ruby/net-scp-1.0.2
47 - >=dev-ruby/net-ssh-gateway-1.1.0:*
48 - >=dev-ruby/highline-1.2.7"
49 -ruby_add_bdepend "
50 - test? ( dev-ruby/mocha:0.14 )"
51 -
52 -RUBY_PATCHES=( ${P}-sudo-cleanup.patch )
53 -
54 -all_ruby_prepare() {
55 - rm Gemfile || die
56 - sed -i -e '/[Bb]undler/d' Rakefile test/utils.rb || die
57 - sed -i -e '/pry/ s:^:#:' -e '4igem "mocha", "~>0.14.0"' test/utils.rb || die
58 -
59 - # Avoid copy strategy tests since these fail in some cases due to
60 - # complicated (aka unknown) interactions with other parts of the
61 - # test suite.
62 - rm test/deploy/strategy/copy_test.rb || die
63 -}
64 -
65 -all_ruby_install() {
66 - all_fakegem_install
67 -
68 - ruby_fakegem_binwrapper cap /usr/bin/cap-2 'gem "capistrano", "~>2.0"'
69 -}