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 B1FF0158086 for ; Fri, 26 Nov 2021 08:17:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BF8CF2BC046; Fri, 26 Nov 2021 08:17:07 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 929222BC046 for ; Fri, 26 Nov 2021 08:17:07 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 98C0A342DDC for ; Fri, 26 Nov 2021 08:17:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D12AF1EE for ; Fri, 26 Nov 2021 08:17:03 +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: <1637914614.9b1499b1bbacc42c35ee4cdab592fd1c51e38d41.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/netrc/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/netrc/netrc-0.11.0.ebuild X-VCS-Directories: dev-ruby/netrc/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 9b1499b1bbacc42c35ee4cdab592fd1c51e38d41 X-VCS-Branch: master Date: Fri, 26 Nov 2021 08:17:03 +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: 0983501e-5c8e-4070-be57-fe9426947d90 X-Archives-Hash: da4595dd1a368332ae1e26cff7b2136e commit: 9b1499b1bbacc42c35ee4cdab592fd1c51e38d41 Author: Hans de Graaff gentoo org> AuthorDate: Fri Nov 26 07:08:33 2021 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Nov 26 08:16:54 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b1499b1 dev-ruby/netrc: cleanup Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/netrc/netrc-0.11.0.ebuild | 31 ------------------------------- 1 file changed, 31 deletions(-) diff --git a/dev-ruby/netrc/netrc-0.11.0.ebuild b/dev-ruby/netrc/netrc-0.11.0.ebuild deleted file mode 100644 index b1c827eb0f4e..000000000000 --- a/dev-ruby/netrc/netrc-0.11.0.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -USE_RUBY="ruby24 ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_EXTRADOC="changelog.txt Readme.md" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" - -inherit ruby-fakegem - -DESCRIPTION="This library reads and writes .netrc files" -HOMEPAGE="https://github.com/geemus/netrc" -LICENSE="MIT" - -KEYWORDS="amd64 ~arm x86" -SLOT="0" -IUSE="" - -all_ruby_prepare() { - # Avoid broken test that wrongly tests ruby internal code, bug 643922 - sed -e '/test_encrypted_roundtrip/,/^ end/ s:^:#:' \ - -e '/test_missing_environment/,/^ end/ s:^:#:' \ - -e "s:/tmp/:${T}/:" \ - -i test/test_netrc.rb || die -} - -each_ruby_test() { - ${RUBY} -Ilib:. -e "Dir['test/test_*.rb'].each{|f| require f}" || die -}