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 E027715801B for ; Wed, 12 Jul 2023 07:46:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 264A6E07BA; Wed, 12 Jul 2023 07:46:38 +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 12ED6E07A9 for ; Wed, 12 Jul 2023 07:46:38 +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 54FAD33BEEE for ; Wed, 12 Jul 2023 07:46:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 57065AD8 for ; Wed, 12 Jul 2023 07:46:34 +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: <1689147989.41ff89cdc2b8d940e67d6cc599a4ea3c76660ab3.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/console/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/console/console-1.16.2.ebuild X-VCS-Directories: dev-ruby/console/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 41ff89cdc2b8d940e67d6cc599a4ea3c76660ab3 X-VCS-Branch: master Date: Wed, 12 Jul 2023 07:46:34 +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: 1e884929-0575-42db-9afe-034427907035 X-Archives-Hash: 7fb3fa48a2d1199f69c5f262dd74ac9a commit: 41ff89cdc2b8d940e67d6cc599a4ea3c76660ab3 Author: Hans de Graaff gentoo org> AuthorDate: Wed Jul 12 07:35:09 2023 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Wed Jul 12 07:46:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41ff89cd dev-ruby/console: drop 1.16.2 Signed-off-by: Hans de Graaff gentoo.org> dev-ruby/console/console-1.16.2.ebuild | 38 ---------------------------------- 1 file changed, 38 deletions(-) diff --git a/dev-ruby/console/console-1.16.2.ebuild b/dev-ruby/console/console-1.16.2.ebuild deleted file mode 100644 index 4da430a2522e..000000000000 --- a/dev-ruby/console/console-1.16.2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby27 ruby30 ruby31" - -RUBY_FAKEGEM_EXTRADOC="readme.md" -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -inherit ruby-fakegem - -DESCRIPTION="Beautiful logging for Ruby" -HOMEPAGE="https://github.com/socketry/console" -SRC_URI="https://github.com/socketry/console/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="$(ver_cut 1)" -KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="" - -ruby_add_rdepend "dev-ruby/fiber-local" - -ruby_add_bdepend "test? ( dev-ruby/sus )" - -all_ruby_prepare() { - sed -i -E 's/require_relative "(.+)"/require File.expand_path("\1")/g' "${RUBY_FAKEGEM_GEMSPEC}" || die - - # Avoid dependency on covered. - rm -f config/sus.rb || die - - # Avoid sandbox violation during tests - sed -i -e 's:/tmp/:'"${TMPDIR}"'/:' test/console/output.rb || die -} - -each_ruby_test() { - ${RUBY} -S sus-parallel || die -}