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 BDECA158087 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 C99EB2BC050; 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 A77002BC050 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 9F976342E43 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 BF2091EB 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.900cef70358e59711ddda186161c24f24b5a2439.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-http-digest_auth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4.1.ebuild X-VCS-Directories: dev-ruby/net-http-digest_auth/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 900cef70358e59711ddda186161c24f24b5a2439 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: 90f95b43-7983-437c-959b-546862eb5494 X-Archives-Hash: 1c10c44ffdb6eb1b3ae46498367f52a0 commit: 900cef70358e59711ddda186161c24f24b5a2439 Author: Hans de Graaff gentoo org> AuthorDate: Fri Nov 26 07:08:19 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=900cef70 dev-ruby/net-http-digest_auth: cleanup Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Hans de Graaff gentoo.org> .../net-http-digest_auth-1.4.1.ebuild | 27 ---------------------- 1 file changed, 27 deletions(-) diff --git a/dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4.1.ebuild b/dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4.1.ebuild deleted file mode 100644 index a8b4de7219e5..000000000000 --- a/dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4.1.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_DOCDIR="doc" - -RUBY_FAKEGEM_EXTRADOC="History.txt README.txt" - -inherit ruby-fakegem - -DESCRIPTION="An implementation of RFC 2617 - Digest Access Authentication" -HOMEPAGE="https://github.com/drbrain/net-http-digest_auth" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris" -IUSE="test" - -ruby_add_bdepend "test? ( dev-ruby/minitest )" - -each_ruby_test() { - ${RUBY} -Ilib:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die -}