public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-event/
Date: Tue, 15 Jul 2025 06:06:42 +0000 (UTC)	[thread overview]
Message-ID: <1752559541.5b83a0be10e5f11bb5c1a7f16efe9db5e3bbbd1a.graaff@gentoo> (raw)

commit:     5b83a0be10e5f11bb5c1a7f16efe9db5e3bbbd1a
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 15 06:05:41 2025 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue Jul 15 06:05:41 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b83a0be

dev-ruby/io-event: add 1.12.0

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/io-event/Manifest               |  1 +
 dev-ruby/io-event/io-event-1.12.0.ebuild | 36 ++++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/dev-ruby/io-event/Manifest b/dev-ruby/io-event/Manifest
index 0280a526435d..72079503eeb1 100644
--- a/dev-ruby/io-event/Manifest
+++ b/dev-ruby/io-event/Manifest
@@ -3,3 +3,4 @@ DIST io-event-1.10.0.tar.gz 55073 BLAKE2B d711d716ef75ee172627130b627f0d1447a5b5
 DIST io-event-1.10.1.tar.gz 55429 BLAKE2B fbdb21a7dd01518798631c2240cfdd515428aed4142cdf311d8648638320d7c21aee1648b97e8f5231607ebc1f1bc4a21f50de6f97ba88d78199c7fe6aa22d8a SHA512 6ffe0904595f5e28239745bf8e094e1ec104723d763a96843593cc6b22e021f5ab03af128b2e2e78883958f5f9c4661dc8d6e48065eb17fdf1cbeaf08f66494c
 DIST io-event-1.11.0.tar.gz 63106 BLAKE2B 42f90d6069d4ba54f1f127ad9d1c9af900f942f0a94334b5d443c16d5ab1194e9fad83aa8551599e2255690c364c2468f62f6e06db299363e14747362b73f420 SHA512 390c08239af9c71548b4f6cd6679237b0d2bdd51fe4f9d06dbe4684eb37d4e2dc2ad5fd6b84d28d79f33c721d3c7bcd733e77583c7d07064ee0935732ccb71a9
 DIST io-event-1.11.2.tar.gz 63902 BLAKE2B 49a433818341e57d4c41e30b1075e4626f29cbaf7e2e5e12e2c452f43bc6b3a3add4f6090bb54396f4a979a58226a712e8bca374796d8c8a840aa4cf6afec693 SHA512 b24f644270b64e5588574b506fead1cd253a7c1838af61a80927b3e24924b02a465300f6ab1b9f83ebbe277f79a5e351f2e7dbfd880c7bd0708f46c4b544a811
+DIST io-event-1.12.0.tar.gz 80152 BLAKE2B 3cd424b58618fde341af0272027c35886f4dc4c0a5a30fd6099122ba92226dadf17990bb42cc00f275cf9ae028462ca3416a9c3a24baa6e5d3679e24480d7747 SHA512 79620fd6e39aec7b71f6fdb955f21b16c8d190fc9601dae9af18ac0b959ae3f7773fbe2e684d09edda0531bb785b3e99193c4e52beee851623f1928eccaac1c4

diff --git a/dev-ruby/io-event/io-event-1.12.0.ebuild b/dev-ruby/io-event/io-event-1.12.0.ebuild
new file mode 100644
index 000000000000..e05cf6aea0ce
--- /dev/null
+++ b/dev-ruby/io-event/io-event-1.12.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2022-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby32 ruby33 ruby34"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/extconf.rb)
+RUBY_FAKEGEM_EXTRADOC="readme.md"
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+RUBY_FAKEGEM_RECIPE_TEST="sus"
+
+inherit ruby-fakegem
+
+DESCRIPTION="An event loop"
+HOMEPAGE="https://github.com/socketry/io-event"
+SRC_URI="https://github.com/socketry/io-event/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="+io-uring"
+
+RDEPEND="io-uring? ( sys-libs/liburing:= )"
+DEPEND="${RDEPEND}"
+
+all_ruby_prepare() {
+	sed -i -E 's/require_relative "(.+)"/require File.expand_path("\1")/g' "${RUBY_FAKEGEM_GEMSPEC}" || die
+
+	# Avoid dependency on unpackaged covered package
+	rm -f config/sus.rb || die
+
+	if ! use io-uring ; then
+		sed -i -e "s:have_library('uring'):have_library('idonotexist_uring'):" ext/extconf.rb || die
+	fi
+}


             reply	other threads:[~2025-07-15  6:06 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-15  6:06 Hans de Graaff [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-09-06  7:42 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-event/ Hans de Graaff
2025-09-06  7:42 Hans de Graaff
2025-08-23  7:44 Hans de Graaff
2025-07-06  4:59 Hans de Graaff
2025-06-16  6:06 Hans de Graaff
2025-06-16  6:06 Hans de Graaff
2025-06-03 13:27 Hans de Graaff
2025-05-23  5:32 Hans de Graaff
2025-05-23  5:32 Hans de Graaff
2025-05-18 12:13 Arthur Zamarin
2025-03-16 11:09 Hans de Graaff
2025-03-16 11:09 Hans de Graaff
2025-02-08  1:08 Jakov Smolić
2025-01-03 10:26 Hans de Graaff
2024-12-16  6:19 Hans de Graaff
2024-12-08 18:55 Arthur Zamarin
2024-12-01 12:37 Sam James
2024-11-24 10:24 Hans de Graaff
2024-11-15 12:53 Hans de Graaff
2024-11-08  7:48 Hans de Graaff
2024-11-07  7:22 Hans de Graaff
2024-10-13  7:02 Hans de Graaff
2024-10-06 12:01 Sam James
2024-10-06 11:21 Sam James
2024-09-13  4:13 Sam James
2024-06-28 12:59 Sam James
2024-06-28  4:31 Hans de Graaff
2024-06-05  5:49 Hans de Graaff
2024-06-02  6:41 Hans de Graaff
2024-03-10 15:19 Hans de Graaff
2024-02-27  6:40 Hans de Graaff
2023-12-29  6:58 Arthur Zamarin
2023-12-29  0:24 Sam James
2023-12-28  6:56 Hans de Graaff
2023-10-24  9:30 Arthur Zamarin
2023-10-24  4:42 Hans de Graaff
2023-09-16  5:30 Hans de Graaff
2023-08-27  6:11 Hans de Graaff
2023-07-04 20:19 Sam James
2023-05-20  9:21 Sam James
2023-04-09  2:34 Sam James
2023-04-02 23:07 Sam James
2023-04-02 23:07 Sam James
2023-04-02 23:07 Sam James
2023-04-02 23:05 Sam James
2023-04-02 22:49 Sam James
2023-03-19  7:14 Hans de Graaff
2023-03-19  7:14 Hans de Graaff
2023-01-13  8:28 Hans de Graaff
2022-12-11  6:27 Hans de Graaff
2022-12-04  6:54 Hans de Graaff
2022-10-23 10:13 Hans de Graaff
2022-10-23  8:26 Hans de Graaff
2022-10-22 21:33 Matt Turner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1752559541.5b83a0be10e5f11bb5c1a7f16efe9db5e3bbbd1a.graaff@gentoo \
    --to=graaff@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox