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 BBB75158020 for ; Sat, 3 Dec 2022 09:14:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A9D5DE0B67; Sat, 3 Dec 2022 09:14:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8B265E0B67 for ; Sat, 3 Dec 2022 09:14:24 +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 C327D3413FA for ; Sat, 3 Dec 2022 09:14:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2FB52772 for ; Sat, 3 Dec 2022 09:14:22 +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: <1670058763.dccdbdd0bf0f38c873f0957ac157048f90710b96.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-telnet/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/net-telnet/net-telnet-0.2.0.ebuild X-VCS-Directories: dev-ruby/net-telnet/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: dccdbdd0bf0f38c873f0957ac157048f90710b96 X-VCS-Branch: master Date: Sat, 3 Dec 2022 09:14:22 +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: 51bc20c3-40ae-4f75-b1ed-16b814676239 X-Archives-Hash: 1fe02fc729956adfcc84fe975b6d107d commit: dccdbdd0bf0f38c873f0957ac157048f90710b96 Author: Hans de Graaff gentoo org> AuthorDate: Sat Dec 3 09:11:28 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sat Dec 3 09:12:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dccdbdd0 dev-ruby/net-telnet: drop 0.2.0 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/net-telnet/net-telnet-0.2.0.ebuild | 30 ----------------------------- 1 file changed, 30 deletions(-) diff --git a/dev-ruby/net-telnet/net-telnet-0.2.0.ebuild b/dev-ruby/net-telnet/net-telnet-0.2.0.ebuild deleted file mode 100644 index cabf9da5cc46..000000000000 --- a/dev-ruby/net-telnet/net-telnet-0.2.0.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="README.md" - -# Don't install the binaries since they don't seem to be intended for -# general use and they have very generic names leading to collisions, -# e.g. bug 571186 -RUBY_FAKEGEM_BINWRAP="" - -inherit ruby-fakegem - -DESCRIPTION="Provides telnet client functionality" -HOMEPAGE="https://github.com/ruby/net-telnet" -SRC_URI="https://github.com/ruby/net-telnet/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="|| ( Ruby-BSD BSD-2 )" -SLOT="1" -KEYWORDS="~alpha amd64 arm arm64 hppa ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="test" - -ruby_add_bdepend "test? ( dev-ruby/minitest )" - -all_ruby_prepare() { - sed -i -e '/bundler/ s:^:#:' Rakefile || die -}