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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9970415812D for ; Sun, 22 Dec 2024 08:48:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E57AE093A; Sun, 22 Dec 2024 08:48:34 +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 0D645E0909 for ; Sun, 22 Dec 2024 08:48:34 +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 1FF0933C1EB for ; Sun, 22 Dec 2024 08:48:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E6FC18ED for ; Sun, 22 Dec 2024 08:48:30 +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: <1734857268.407403e0d6f5419c1dd8e61e445defa68ada7a20.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/oauth/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/oauth/oauth-0.6.2-r1.ebuild X-VCS-Directories: dev-ruby/oauth/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 407403e0d6f5419c1dd8e61e445defa68ada7a20 X-VCS-Branch: master Date: Sun, 22 Dec 2024 08:48:30 +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: eba29567-548d-4815-b3de-fec13133a40a X-Archives-Hash: 04e328b72d3b97b9c804d967fec3e235 commit: 407403e0d6f5419c1dd8e61e445defa68ada7a20 Author: Hans de Graaff gentoo org> AuthorDate: Sun Dec 22 08:42:24 2024 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Sun Dec 22 08:47:48 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=407403e0 dev-ruby/oauth: drop 0.6.2-r1 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/oauth/oauth-0.6.2-r1.ebuild | 56 ------------------------------------ 1 file changed, 56 deletions(-) diff --git a/dev-ruby/oauth/oauth-0.6.2-r1.ebuild b/dev-ruby/oauth/oauth-0.6.2-r1.ebuild deleted file mode 100644 index 7b74b5dfd58c..000000000000 --- a/dev-ruby/oauth/oauth-0.6.2-r1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby30 ruby31 ruby32" - -RUBY_FAKEGEM_BINWRAP="oauth" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md TODO" - -RUBY_FAKEGEM_GEMSPEC="oauth.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="A RubyGem for implementing both OAuth clients and servers" -HOMEPAGE="https://github.com/oauth-xx/oauth-ruby" -SRC_URI="https://github.com/oauth-xx/oauth-ruby/archive/v${PV}.tar.gz -> ${P}.tar.gz" -RUBY_S="${PN}-ruby-${PV}" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~riscv ~x86" -IUSE="" - -ruby_add_rdepend " - dev-ruby/snaky_hash:1 - >=dev-ruby/version_gem-1.1:1 -" - -ruby_add_bdepend "test? ( - dev-ruby/bundler - dev-ruby/test-unit:2 - dev-ruby/mocha:2 - dev-ruby/webmock - dev-ruby/rack - dev-ruby/rest-client - dev-ruby/actionpack:6.1 - dev-ruby/railties:6.1 -)" - -all_ruby_prepare() { - sed -i -e 's:_relative ": "./:' ${RUBY_FAKEGEM_GEMSPEC} || die - - # Require compatible versions of dependencies - sed -i -e '1igem "railties", "~>6.1.0" ; gem "actionpack", "~>6.1.0"; require "action_dispatch"' \ - -e '/mocha/ s/mini_test/minitest/' \ - -e 's/if RUN_COVERAGE/if false/' test/test_helper.rb || die - - # Avoid test tripped up by kwargs confusion - sed -e '/test_authorize/askip "kwargs confusion"' \ - -e 's/MiniTest/Minitest/' \ - -i test/units/cli_test.rb || die -} - -each_ruby_test() { - ${RUBY} -Ilib:test:. -e 'Dir["test/**/*test*.rb"].each {|f| require f}' || die -}