From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-ssh/
Date: Thu, 3 Oct 2024 05:42:31 +0000 (UTC) [thread overview]
Message-ID: <1727934135.30d9e876019f0d414117c02c0a52cefb22036e20.graaff@gentoo> (raw)
commit: 30d9e876019f0d414117c02c0a52cefb22036e20
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 3 05:32:55 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Oct 3 05:42:15 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30d9e876
dev-ruby/net-ssh: drop 7.1.0, 7.2.1
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/net-ssh/Manifest | 2 --
dev-ruby/net-ssh/net-ssh-7.1.0.ebuild | 45 -------------------------------
dev-ruby/net-ssh/net-ssh-7.2.1.ebuild | 50 -----------------------------------
3 files changed, 97 deletions(-)
diff --git a/dev-ruby/net-ssh/Manifest b/dev-ruby/net-ssh/Manifest
index 59dc7379f9ea..261bde88aab7 100644
--- a/dev-ruby/net-ssh/Manifest
+++ b/dev-ruby/net-ssh/Manifest
@@ -1,4 +1,2 @@
-DIST net-ssh-git-7.1.0.tgz 229217 BLAKE2B ab3c46d3d8831335495ae72dc60f2659109b66566f04117a16e4fd41085203b6a2d333e65ffcda4e390c96a2b808c68baeb168be1a2e23d4c797ad63b5af93f9 SHA512 723f487e77526a7acba8a9c8f09dd85c8c0bb21577d148f6c4280c79d603d3d364e29fb55b2b282064b5c108465efb2b1da061a2ba5872d575b0be264f493745
-DIST net-ssh-git-7.2.1.tgz 233338 BLAKE2B 14696b3c5de24219b0e5d5ad345aa46a1576183f4836ccdaf1d5feb78cb932232da1890c55d8c39dbf1d47b1fc0c19acf53eedd1f87bf8acb0d62ae10045e828 SHA512 9b13c33ed76a9ac346c610e8eb04fba5b327c9f79d2a28ca7d2c9b6fa94d3979f68b43f3fd2b83eb2ea0e3ada5e200373848b5f7abdee7922d77aa30d148b88b
DIST net-ssh-git-7.2.3.tgz 233375 BLAKE2B d8eda3964b66e7a7c55f70a1ba763bacf192edcb6f32f679d36b4c589c6184af9911db6db4cb28e273a27ac4bd68afc4b0a0767d98955b2e37bcd65444c77d8a SHA512 621eb0c8080347614e924c236646cadaaceefb0894a818dc60cebc7c09c87d6ae6117f33628ed48fa8598fdb74146c9d2f114b178bd119908df8396103ceb4d9
DIST net-ssh-git-7.3.0.tgz 237275 BLAKE2B 70e463207f38a1ca45c3b0218289c99a7d0c212ff09f9178d1f929002d3b99af52d6fe2c397833f7e3c6742bf099b374ce62a51516db0a1620b60286724230a6 SHA512 d6278942511d4b5423af6e6f802b7ee20c795c534d0a7b08658d8962b2da49444c545d146851c0d214975fe0f1133b416a9295b9605629edd611160651698673
diff --git a/dev-ruby/net-ssh/net-ssh-7.1.0.ebuild b/dev-ruby/net-ssh/net-ssh-7.1.0.ebuild
deleted file mode 100644
index d5c87deb7de9..000000000000
--- a/dev-ruby/net-ssh/net-ssh-7.1.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
-
-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 ~arm64 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
-}
diff --git a/dev-ruby/net-ssh/net-ssh-7.2.1.ebuild b/dev-ruby/net-ssh/net-ssh-7.2.1.ebuild
deleted file mode 100644
index dd43d42338d9..000000000000
--- a/dev-ruby/net-ssh/net-ssh-7.2.1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-USE_RUBY="ruby31 ruby32 ruby33"
-
-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 ~arm64 ~ppc ~ppc64 ~x86"
-IUSE="chacha20 ed25519 test"
-RESTRICT="!test? ( test )"
-
-ruby_add_rdepend "
- virtual/ruby-ssl
- chacha20? ( dev-ruby/rbnacl )
- 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
-}
next reply other threads:[~2024-10-03 5:42 UTC|newest]
Thread overview: 97+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-03 5:42 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-12-23 12:22 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-ssh/ Hans de Graaff
2024-12-23 12:22 Hans de Graaff
2024-11-14 3:39 Sam James
2024-11-14 3:21 Sam James
2024-11-14 2:49 Sam James
2024-10-03 5:42 Hans de Graaff
2024-09-12 16:16 Jakov Smolić
2024-09-11 14:15 Sam James
2024-09-09 11:11 Sam James
2024-09-09 11:11 Sam James
2024-04-03 5:50 Hans de Graaff
2024-04-03 5:50 Hans de Graaff
2024-01-11 7:19 Hans de Graaff
2023-12-20 7:13 Hans de Graaff
2023-12-20 7:13 Hans de Graaff
2023-08-17 2:55 Sam James
2023-08-12 7:21 Hans de Graaff
2023-06-01 6:58 Jakov Smolić
2023-06-01 5:48 Sam James
2023-06-01 5:26 Sam James
2023-04-08 10:46 Arthur Zamarin
2023-04-02 2:56 Sam James
2023-04-02 2:56 Sam James
2023-03-26 3:03 Sam James
2023-03-13 7:14 Hans de Graaff
2023-01-21 9:08 Hans de Graaff
2022-12-03 10:23 Hans de Graaff
2022-08-17 15:39 Sam James
2022-08-17 15:39 Sam James
2022-06-26 6:20 Hans de Graaff
2022-03-14 6:34 Hans de Graaff
2021-09-28 1:01 Sam James
2020-08-21 6:57 Hans de Graaff
2020-07-21 9:33 Agostino Sarubbo
2020-07-21 9:31 Agostino Sarubbo
2020-07-21 9:29 Agostino Sarubbo
2020-07-21 8:48 Agostino Sarubbo
2020-07-20 6:15 Hans de Graaff
2020-07-20 2:23 Sam James
2020-07-11 17:43 Sam James
2020-07-11 15:28 Sam James
2020-07-11 3:39 Sam James
2020-06-12 12:22 Hans de Graaff
2020-06-10 4:58 Hans de Graaff
2020-04-26 5:28 Hans de Graaff
2020-04-22 5:51 Hans de Graaff
2020-03-05 8:11 Hans de Graaff
2019-09-11 11:06 Agostino Sarubbo
2019-09-11 8:43 Agostino Sarubbo
2019-09-11 8:28 Agostino Sarubbo
2019-09-11 8:20 Agostino Sarubbo
2019-09-11 7:43 Hans de Graaff
2019-03-12 5:49 Hans de Graaff
2019-01-20 10:17 Hans de Graaff
2019-01-19 14:48 Hans de Graaff
2019-01-16 19:01 Hans de Graaff
2018-12-31 6:58 Hans de Graaff
2018-11-26 19:27 Mikle Kolyada
2018-11-07 0:37 Sergei Trofimovich
2018-10-14 9:09 Sergei Trofimovich
2018-10-01 22:42 Thomas Deutschmann
2018-09-25 18:05 Hans de Graaff
2018-07-30 19:44 Hans de Graaff
2018-06-27 22:15 Sergei Trofimovich
2018-06-26 2:04 Aaron Bauman
2018-06-17 18:33 Hans de Graaff
2018-06-17 17:52 Hans de Graaff
2018-06-16 6:12 Hans de Graaff
2018-05-06 5:56 Hans de Graaff
2018-04-22 19:13 Hans de Graaff
2018-04-08 9:13 Sergei Trofimovich
2018-03-13 22:39 Sergei Trofimovich
2018-02-11 21:56 Thomas Deutschmann
2017-09-29 14:20 Hans de Graaff
2017-09-29 14:20 Hans de Graaff
2017-07-25 5:47 Hans de Graaff
2017-07-03 5:35 Hans de Graaff
2017-07-03 5:35 Hans de Graaff
2017-02-28 5:59 Hans de Graaff
2017-02-03 7:36 Hans de Graaff
2016-12-23 6:40 Hans de Graaff
2016-12-18 15:44 Agostino Sarubbo
2016-12-11 7:26 Hans de Graaff
2016-07-21 19:38 Hans de Graaff
2016-06-26 5:38 Hans de Graaff
2016-06-26 5:38 Hans de Graaff
2016-04-25 5:12 Hans de Graaff
2016-04-25 5:12 Hans de Graaff
2016-03-28 5:52 Hans de Graaff
2016-03-28 5:52 Hans de Graaff
2016-03-21 16:44 Hans de Graaff
2016-03-21 16:14 Hans de Graaff
2016-03-21 16:14 Hans de Graaff
2015-12-31 8:29 Hans de Graaff
2015-09-26 6:02 Hans de Graaff
2015-09-07 21:56 Richard Farina
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1727934135.30d9e876019f0d414117c02c0a52cefb22036e20.graaff@gentoo \
--to=graaff@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox