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 1386E15800F for ; Wed, 25 Jan 2023 07:30:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 47294E0837; Wed, 25 Jan 2023 07:30:27 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 21F40E0837 for ; Wed, 25 Jan 2023 07:30:27 +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 1BFEC340F4E for ; Wed, 25 Jan 2023 07:30:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 594C984D for ; Wed, 25 Jan 2023 07:30:24 +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: <1674631820.63b5cf2d54c9c3dfb12d5c5fd1510749d5af8ac9.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/rest-client/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/rest-client/rest-client-2.1.0.ebuild X-VCS-Directories: dev-ruby/rest-client/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 63b5cf2d54c9c3dfb12d5c5fd1510749d5af8ac9 X-VCS-Branch: master Date: Wed, 25 Jan 2023 07:30:24 +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: 10d482df-4a02-4b51-82a7-f5728271c299 X-Archives-Hash: 7ce42f615c4dafa0f060cffeb730094f commit: 63b5cf2d54c9c3dfb12d5c5fd1510749d5af8ac9 Author: Hans de Graaff gentoo org> AuthorDate: Wed Jan 25 07:06:05 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Jan 25 07:30:20 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63b5cf2d dev-ruby/rest-client: drop 2.1.0 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/rest-client/rest-client-2.1.0.ebuild | 37 --------------------------- 1 file changed, 37 deletions(-) diff --git a/dev-ruby/rest-client/rest-client-2.1.0.ebuild b/dev-ruby/rest-client/rest-client-2.1.0.ebuild deleted file mode 100644 index 165d50bc2b26..000000000000 --- a/dev-ruby/rest-client/rest-client-2.1.0.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="history.md README.md" - -inherit ruby-fakegem - -DESCRIPTION="Simple Simple HTTP and REST client for Ruby" -HOMEPAGE="https://github.com/rest-client/rest-client" - -LICENSE="MIT" -SLOT="2" -KEYWORDS="amd64" -IUSE="" - -ruby_add_bdepend "test? ( dev-ruby/webmock:3 )" - -ruby_add_rdepend " - >=dev-ruby/http-accept-1.7.0:1 - >=dev-ruby/http-cookie-1.0.2:0 - >=dev-ruby/mime-types-1.16:* =dev-ruby/netrc-0.8:0 -" - -all_ruby_prepare() { - sed -e '/bundler/I s:^:#:' \ - -e '/namespace :windows/,/^end/ s:^:#:' -i Rakefile || die - - # Remove specs that requires network access. - rm spec/integration/{httpbin,request}_spec.rb || die -}