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 C9D38158094 for ; Wed, 22 Jun 2022 04:35:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D41C3E0867; Wed, 22 Jun 2022 04:35:50 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 B88B1E0867 for ; Wed, 22 Jun 2022 04:35:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DACEC3413E4 for ; Wed, 22 Jun 2022 04:35:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4915950E for ; Wed, 22 Jun 2022 04:35:48 +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: <1655872259.f8cd0c931c4804f60b6bdc03b3a6aedba4f931e7.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/stringex/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/stringex/stringex-2.8.5.ebuild X-VCS-Directories: dev-ruby/stringex/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: f8cd0c931c4804f60b6bdc03b3a6aedba4f931e7 X-VCS-Branch: master Date: Wed, 22 Jun 2022 04:35:48 +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: 5128abcf-4c71-4818-ab46-0c4e748869fb X-Archives-Hash: 17f2636ba348dee8dd1eeeb8a02d4572 commit: f8cd0c931c4804f60b6bdc03b3a6aedba4f931e7 Author: Hans de Graaff gentoo org> AuthorDate: Tue Jun 21 06:12:16 2022 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Jun 22 04:30:59 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8cd0c93 dev-ruby/stringex: drop 2.8.5 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/stringex/stringex-2.8.5.ebuild | 33 --------------------------------- 1 file changed, 33 deletions(-) diff --git a/dev-ruby/stringex/stringex-2.8.5.ebuild b/dev-ruby/stringex/stringex-2.8.5.ebuild deleted file mode 100644 index 57771381bc08..000000000000 --- a/dev-ruby/stringex/stringex-2.8.5.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 -USE_RUBY="ruby25 ruby26 ruby27" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" - -inherit ruby-fakegem - -DESCRIPTION="Extensions for Ruby's String class" -HOMEPAGE="https://github.com/rsl/stringex" -LICENSE="MIT" - -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86" -IUSE="test" - -# we could rely on activerecord[sqlite3], but since we do not remove the -# sqlite3 adapter from activerecord when building -sqlite3, it's easier -# to just add another dependency, so the user doesn't have to change the -# USE flags at all. -ruby_add_bdepend " - test? ( - dev-ruby/i18n:1 - dev-ruby/redcloth - dev-ruby/test-unit:2 - || ( dev-ruby/activerecord:6.0 dev-ruby/activerecord:5.2 ) - dev-ruby/sqlite3 )" - -all_ruby_prepare() { - sed -i -e '1agem "i18n", "~>1.0"; gem "activerecord", "~> 6.0.0"' test/test_helper.rb || die -}