From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 545C31584AD for ; Mon, 21 Apr 2025 16:58:39 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 3EFB23430BE for ; Mon, 21 Apr 2025 16:58:39 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 584051104B7; Mon, 21 Apr 2025 16:58:29 +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 bobolink.gentoo.org (Postfix) with ESMTPS id 53D4F1104B7 for ; Mon, 21 Apr 2025 16:58:29 +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 104D43430C4 for ; Mon, 21 Apr 2025 16:58:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 922DE24FC for ; Mon, 21 Apr 2025 16:58:27 +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: <1745254692.acc33f1fdfd2bc3374f4a8972b67261ebc4570bb.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/sus-fixtures-async/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/sus-fixtures-async/sus-fixtures-async-0.2.0-r1.ebuild X-VCS-Directories: dev-ruby/sus-fixtures-async/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: acc33f1fdfd2bc3374f4a8972b67261ebc4570bb X-VCS-Branch: master Date: Mon, 21 Apr 2025 16:58:27 +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: 1c444784-ab8e-4d9b-8e0b-e9e7cb44aaab X-Archives-Hash: c607b5998791ab5e9d7bdbda9930ee45 commit: acc33f1fdfd2bc3374f4a8972b67261ebc4570bb Author: Hans de Graaff gentoo org> AuthorDate: Mon Apr 21 16:55:52 2025 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Mon Apr 21 16:58:12 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc33f1f dev-ruby/sus-fixtures-async: add ruby34 Signed-off-by: Hans de Graaff gentoo.org> .../sus-fixtures-async-0.2.0-r1.ebuild | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/dev-ruby/sus-fixtures-async/sus-fixtures-async-0.2.0-r1.ebuild b/dev-ruby/sus-fixtures-async/sus-fixtures-async-0.2.0-r1.ebuild new file mode 100644 index 000000000000..3b6181fc7a88 --- /dev/null +++ b/dev-ruby/sus-fixtures-async/sus-fixtures-async-0.2.0-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 2022-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +USE_RUBY="ruby31 ruby32 ruby33 ruby34" + +RUBY_FAKEGEM_EXTRADOC="readme.md" +RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" +RUBY_FAKEGEM_RECIPE_TEST="sus" + +inherit ruby-fakegem + +DESCRIPTION="Convenient fixture for testing async components in a reactor" +HOMEPAGE="https://github.com/socketry/sus-fixtures-async" +SRC_URI="https://github.com/socketry/sus-fixtures-async/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~riscv ~sparc ~x86" + +ruby_add_rdepend " + dev-ruby/async + >=dev-ruby/sus-0.10:0 +" + +all_ruby_prepare() { + sed -i -E 's/require_relative "(.+)"/require File.expand_path("\1")/g' "${RUBY_FAKEGEM_GEMSPEC}" || die + + # Remove the sus configuration which enabled coverage checks. + # Its dependency is not packaged. + rm -f config/sus.rb || die +}