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 44CC6158094 for ; Wed, 20 Jul 2022 05:38:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83140E0C35; Wed, 20 Jul 2022 05:38:27 +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 676AEE0C2A for ; Wed, 20 Jul 2022 05:38: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A7D6A340BC0 for ; Wed, 20 Jul 2022 05:38:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43B79542 for ; Wed, 20 Jul 2022 05:38:25 +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: <1658295502.4d366ddfe8e7cf8fff9c9dff2a76fd6950fe5a8a.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/arel/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/arel/arel-9.0.0.ebuild X-VCS-Directories: dev-ruby/arel/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 4d366ddfe8e7cf8fff9c9dff2a76fd6950fe5a8a X-VCS-Branch: master Date: Wed, 20 Jul 2022 05:38:25 +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: eebaf7f3-4e05-47ac-ac09-7e9c538c350d X-Archives-Hash: 97776a6d02fb4316e82421f238a31374 commit: 4d366ddfe8e7cf8fff9c9dff2a76fd6950fe5a8a Author: Hans de Graaff gentoo org> AuthorDate: Wed Jul 20 05:31:33 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Jul 20 05:38:22 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d366ddf dev-ruby/arel: drop 9.0.0 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/arel/arel-9.0.0.ebuild | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/dev-ruby/arel/arel-9.0.0.ebuild b/dev-ruby/arel/arel-9.0.0.ebuild deleted file mode 100644 index 5ebc8d41dbfd..000000000000 --- a/dev-ruby/arel/arel-9.0.0.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby23 ruby24 ruby25 ruby26" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_DOCDIR="doc" -RUBY_FAKEGEM_EXTRADOC="History.txt README.md" - -RUBY_FAKEGEM_GEMSPEC="arel.gemspec" - -inherit ruby-fakegem versionator - -DESCRIPTION="Arel is a Relational Algebra for Ruby" -HOMEPAGE="https://github.com/rails/arel" -SRC_URI="https://github.com/rails/arel/archive/v${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="MIT" -SLOT="$(get_version_component_range 1).0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" -IUSE="" - -ruby_add_bdepend " - test? ( - dev-ruby/concurrent-ruby:1 - dev-ruby/test-unit:2 - >=dev-ruby/minitest-5.4:5 - )" - -all_ruby_prepare() { - sed -i -e "/[Bb]undler/d" \ - -e '/specname/,$ s:^:#:' Rakefile || die -}