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 40486158020 for ; Sat, 22 Oct 2022 21:34:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C84CFE0909; Sat, 22 Oct 2022 21:33:59 +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 AFAA7E0909 for ; Sat, 22 Oct 2022 21:33:59 +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 7AA653411E3 for ; Sat, 22 Oct 2022 21:33:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E77D62A for ; Sat, 22 Oct 2022 21:33:56 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1666474390.23f46cf57e1816cc641f2a94851e82d1282ab8a1.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/console/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/console/Manifest dev-ruby/console/console-1.15.3.ebuild dev-ruby/console/metadata.xml X-VCS-Directories: dev-ruby/console/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 23f46cf57e1816cc641f2a94851e82d1282ab8a1 X-VCS-Branch: master Date: Sat, 22 Oct 2022 21:33:56 +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: 1a1619b7-6b41-4472-9088-013c0367f1e0 X-Archives-Hash: 0b66bf46be64c129b946138f0e7697cf commit: 23f46cf57e1816cc641f2a94851e82d1282ab8a1 Author: matoro users noreply github com> AuthorDate: Wed Jun 15 04:27:40 2022 +0000 Commit: Matt Turner gentoo org> CommitDate: Sat Oct 22 21:33:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23f46cf5 dev-ruby/console: new package, add 1.15.3 Signed-off-by: matoro users.noreply.github.com> Signed-off-by: Matt Turner gentoo.org> dev-ruby/console/Manifest | 1 + dev-ruby/console/console-1.15.3.ebuild | 28 ++++++++++++++++++++++++++++ dev-ruby/console/metadata.xml | 11 +++++++++++ 3 files changed, 40 insertions(+) diff --git a/dev-ruby/console/Manifest b/dev-ruby/console/Manifest new file mode 100644 index 000000000000..694623a35a8b --- /dev/null +++ b/dev-ruby/console/Manifest @@ -0,0 +1 @@ +DIST console-1.15.3.tar.gz 23089 BLAKE2B 8387b0dc8ee84df3ce930ef79fcfec9e9b947b946770535beeb16fe58496c30134862b6a3fb48a842b321ab2ec493b1e4f9ec3462bdce04aa35066672ee55699 SHA512 c1d7fc987f3f6df3506c85c64d3c93b3eae6b5eca64ac7de2cf7cc0cb5572c102ebd6909d993d9d683081063ff8b7f2de46fefa255491adc47b88f13ff24ea67 diff --git a/dev-ruby/console/console-1.15.3.ebuild b/dev-ruby/console/console-1.15.3.ebuild new file mode 100644 index 000000000000..f6370717fffc --- /dev/null +++ b/dev-ruby/console/console-1.15.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby26 ruby27 ruby30 ruby31" +RUBY_FAKEGEM_RECIPE_TEST="rspec3" +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/fc6ecb94bc02b8b75003fc31f0a8b3e1e43cafcf.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="$(ver_cut 1)/$(ver_cut 1-2)" +KEYWORDS="~amd64 ~sparc" +IUSE="" +RUBY_S="${PN}-fc6ecb94bc02b8b75003fc31f0a8b3e1e43cafcf" + +ruby_add_rdepend "dev-ruby/fiber-local" + +all_ruby_prepare() { + sed -i -E 's/require_relative "(.+)"/require File.expand_path("\1")/g' "${RUBY_FAKEGEM_GEMSPEC}" || die + rm -f "gems.rb" || die + sed -i -E 's/require '"'"'covered\/rspec'"'"'//g' "spec/spec_helper.rb" || die +} diff --git a/dev-ruby/console/metadata.xml b/dev-ruby/console/metadata.xml new file mode 100644 index 000000000000..eaf87044f48c --- /dev/null +++ b/dev-ruby/console/metadata.xml @@ -0,0 +1,11 @@ + + + + + ruby@gentoo.org + Gentoo Ruby Project + + + socketry/console + +