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 672A415800F for ; Sat, 21 Jan 2023 09:08:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1BF58E0894; Sat, 21 Jan 2023 09:08:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 06420E0894 for ; Sat, 21 Jan 2023 09:08:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 026B1340A35 for ; Sat, 21 Jan 2023 09:08:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 498EB882 for ; Sat, 21 Jan 2023 09:08:41 +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: <1674292117.c8e3873cc38f7ade32d78bcc7515348fda3a40c5.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-ssh/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/net-ssh/net-ssh-6.1.0-r1.ebuild X-VCS-Directories: dev-ruby/net-ssh/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: c8e3873cc38f7ade32d78bcc7515348fda3a40c5 X-VCS-Branch: master Date: Sat, 21 Jan 2023 09:08:41 +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: 355bc980-9cd7-4f21-8d66-9ffd6037e440 X-Archives-Hash: c5d24a59206894f2305663ef3d27a0a7 commit: c8e3873cc38f7ade32d78bcc7515348fda3a40c5 Author: Hans de Graaff gentoo org> AuthorDate: Sat Jan 21 08:47:20 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Jan 21 09:08:37 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8e3873c dev-ruby/net-ssh: drop 6.1.0-r1 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/net-ssh/net-ssh-6.1.0-r1.ebuild | 45 -------------------------------- 1 file changed, 45 deletions(-) diff --git a/dev-ruby/net-ssh/net-ssh-6.1.0-r1.ebuild b/dev-ruby/net-ssh/net-ssh-6.1.0-r1.ebuild deleted file mode 100644 index 0a8dc086232b..000000000000 --- a/dev-ruby/net-ssh/net-ssh-6.1.0-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="CHANGES.txt README.md THANKS.txt" -RUBY_FAKEGEM_EXTRAINSTALL="support" - -RUBY_FAKEGEM_GEMSPEC="net-ssh.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Non-interactive SSH processing in pure Ruby" -HOMEPAGE="https://github.com/net-ssh/net-ssh" -SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> net-ssh-git-${PV}.tgz" - -LICENSE="GPL-2" -SLOT="$(ver_cut 1)" -KEYWORDS="amd64 ~arm ppc ppc64 x86" -IUSE="ed25519 test" -RESTRICT="!test? ( test )" - -ruby_add_rdepend "virtual/ruby-ssl ed25519? ( >=dev-ruby/ed25519-1.2:1 dev-ruby/x25519 dev-ruby/bcrypt_pbkdf:1 )" -ruby_add_bdepend "test? ( dev-ruby/test-unit:2 >=dev-ruby/mocha-0.13 )" - -all_ruby_prepare() { - # Avoid bundler dependency - sed -i -e '/\(bundler\|:release\)/ s:^:#:' Rakefile || die - - sed -e "s:require_relative ':require './:" \ - -e 's/git ls-files -z/find -print0/' \ - -i ${RUBY_FAKEGEM_GEMSPEC} || die -} - -src_test() { - # prevent tests from trying to connect to ssh-agent socket and failing - unset SSH_AUTH_SOCK - if ! use ed25519; then - export NET_SSH_NO_ED25519=true - fi - ruby-ng_src_test -}