From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 296F9158086 for ; Wed, 24 Nov 2021 12:46:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46634E086F; Wed, 24 Nov 2021 12:46:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1A019E086E for ; Wed, 24 Nov 2021 12:46:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 11219342FDA for ; Wed, 24 Nov 2021 12:46:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 825C78E for ; Wed, 24 Nov 2021 12:46:14 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1637757968.0c37c31ae6447f6def2a20b020213934e5a1ac1b.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/capistrano/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/capistrano/capistrano-2.15.5-r2.ebuild X-VCS-Directories: dev-ruby/capistrano/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 0c37c31ae6447f6def2a20b020213934e5a1ac1b X-VCS-Branch: master Date: Wed, 24 Nov 2021 12:46:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a2a3b4c1-8494-4fc5-8d32-e1c173988bae X-Archives-Hash: bda4658e09bb6424886207f992185041 commit: 0c37c31ae6447f6def2a20b020213934e5a1ac1b Author: Hans de Graaff gentoo org> AuthorDate: Wed Nov 24 10:52:47 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Nov 24 12:46:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c37c31a dev-ruby/capistrano: cleanup Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/capistrano/capistrano-2.15.5-r2.ebuild | 48 ------------------------- 1 file changed, 48 deletions(-) diff --git a/dev-ruby/capistrano/capistrano-2.15.5-r2.ebuild b/dev-ruby/capistrano/capistrano-2.15.5-r2.ebuild deleted file mode 100644 index 662b053f032b..000000000000 --- a/dev-ruby/capistrano/capistrano-2.15.5-r2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -USE_RUBY="ruby24 ruby25 ruby26" - -RUBY_FAKEGEM_TASK_DOC="" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG README.md" - -RUBY_FAKEGEM_BINWRAP="" - -inherit ruby-fakegem - -DESCRIPTION="A distributed application deployment system" -HOMEPAGE="https://capistranorb.com/" - -LICENSE="MIT" -SLOT="2" -KEYWORDS="amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris ~x86-solaris" -IUSE="" - -ruby_add_rdepend " - >=dev-ruby/net-ssh-2.0.14:* - >=dev-ruby/net-sftp-2.0.2 - >=dev-ruby/net-scp-1.0.2 - >=dev-ruby/net-ssh-gateway-1.1.0:* - >=dev-ruby/highline-1.2.7" -ruby_add_bdepend " - test? ( dev-ruby/mocha:0.14 )" - -RUBY_PATCHES=( ${P}-sudo-cleanup.patch ) - -all_ruby_prepare() { - rm Gemfile || die - sed -i -e '/[Bb]undler/d' Rakefile test/utils.rb || die - sed -i -e '/pry/ s:^:#:' -e '4igem "mocha", "~>0.14.0"' test/utils.rb || die - - # Avoid copy strategy tests since these fail in some cases due to - # complicated (aka unknown) interactions with other parts of the - # test suite. - rm test/deploy/strategy/copy_test.rb || die -} - -all_ruby_install() { - all_fakegem_install - - ruby_fakegem_binwrapper cap /usr/bin/cap-2 'gem "capistrano", "~>2.0"' -}