From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/nio4r/
Date: Tue, 29 Oct 2024 06:25:58 +0000 (UTC) [thread overview]
Message-ID: <1730182992.05d5b95ac5c252ae753d88eea7899abc5a7af0a8.graaff@gentoo> (raw)
commit: 05d5b95ac5c252ae753d88eea7899abc5a7af0a8
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 29 06:23:12 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue Oct 29 06:23:12 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05d5b95a
dev-ruby/nio4r: add 2.7.4
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/nio4r/Manifest | 1 +
dev-ruby/nio4r/nio4r-2.7.4.ebuild | 38 ++++++++++++++++++++++++++++++++++++++
2 files changed, 39 insertions(+)
diff --git a/dev-ruby/nio4r/Manifest b/dev-ruby/nio4r/Manifest
index ac3150d25064..eebcceebb4fe 100644
--- a/dev-ruby/nio4r/Manifest
+++ b/dev-ruby/nio4r/Manifest
@@ -3,3 +3,4 @@ DIST nio4r-2.6.1.gem 123904 BLAKE2B 5fbfe2a67fbd9fb6f49607358827391a56760c794357
DIST nio4r-2.7.0.gem 124416 BLAKE2B f02a16cf45dc2ea547dd8e036ddff5c37c24e9188db9ab4f817a55243f87f78264ed11bcd8d055e244c655aea08fa4922cd53dcae39e090031c87d0d78909c7b SHA512 aeb0bd3e727fa6999a314cd2b15a35035694f41294f7e9c406a72fd50a7a7a02311efec8c5795a116fd3793bf6b81e17d884e156b844722933e45d056f0cbeb9
DIST nio4r-2.7.1.gem 124416 BLAKE2B 4ae03731b0ae51bc51cfd12049e4d9beb9141feeb4196edafb26dd5ea4cc88e3cecaf0b121cd28c142cb509f991d22af5befe593443f7ecc420eb403fa83c0a1 SHA512 acade5696fe343b92f35f4bcfb7fbda48c8d9bbacff8e0571cffa193ade48d0c8f184db3480084bf3d796e5bd9176b285be4a52e4470c406bf867f538f1bfd4a
DIST nio4r-2.7.3.tar.gz 123160 BLAKE2B 283e3f7ea278936a15efe8f8e7219ac3191b4be72f04ab63e64d6ca2125f6be7164353707a7418be31bcbed240317d51912e5c2a2dea0042b1ca2b3a39d56993 SHA512 185e0cbe146495d657e8954eef2208e61766c30f5cf132078ce9c00b5b6d678eafaa108102dc79bb8d42d90fd5809a606344d35b03bfc41d7a1f3f75a7c2820f
+DIST nio4r-2.7.4.tar.gz 123192 BLAKE2B 263b061945dbdd1c36d951ff0bdf6ffe5193a730bd1924933fcff4150c574a5164ba7a59f0a040d71cba108ea08085ac9351635179974c03b5f8731583288e99 SHA512 5f89cddf3e772f05c10ab2ce7fbffd9b878ac129bc0adb7be5e35a67c7b17748a5722e784a19dace2308006bcbc7eaef70a49f9f58771faa0d97758742703338
diff --git a/dev-ruby/nio4r/nio4r-2.7.4.ebuild b/dev-ruby/nio4r/nio4r-2.7.4.ebuild
new file mode 100644
index 000000000000..29610cf2f0db
--- /dev/null
+++ b/dev-ruby/nio4r/nio4r-2.7.4.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby31 ruby32 ruby33"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC=""
+RUBY_FAKEGEM_EXTRADOC="changes.md readme.md"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/nio4r/extconf.rb)
+RUBY_FAKEGEM_GEMSPEC="nio4r.gemspec"
+
+inherit flag-o-matic ruby-fakegem
+
+DESCRIPTION="A high performance selector API for monitoring IO objects"
+HOMEPAGE="https://github.com/socketry/nio4r"
+SRC_URI="https://github.com/socketry/nio4r/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT || ( BSD GPL-2 )"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~ppc-macos ~x64-macos ~x64-solaris"
+
+# Note that nio4r bundles a patched copy of libev, and without these
+# patches the tests fail: https://github.com/celluloid/nio4r/issues/15
+
+all_ruby_prepare() {
+ # See bug #855869 and its large number of dupes in bundled libev copies.
+ filter-lto
+ append-flags -fno-strict-aliasing
+
+ sed -i -e '/[Bb]undler/d' spec/spec_helper.rb || die
+ sed -e '/extension/ s:^:#:' -i Rakefile || die
+
+ sed -e 's:_relative ": "./:' -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}
next reply other threads:[~2024-10-29 6:26 UTC|newest]
Thread overview: 69+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-29 6:25 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-30 6:17 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/nio4r/ Hans de Graaff
2024-10-29 6:25 Hans de Graaff
2024-10-06 13:30 Jakov Smolić
2024-10-06 11:18 Sam James
2024-07-15 8:33 Hans de Graaff
2024-03-21 6:42 Hans de Graaff
2024-02-29 0:50 Sam James
2023-12-31 14:36 Hans de Graaff
2023-12-31 14:36 Hans de Graaff
2023-12-01 6:18 Hans de Graaff
2023-11-21 6:40 Hans de Graaff
2023-11-17 7:46 Hans de Graaff
2023-11-17 7:46 Hans de Graaff
2023-04-03 0:47 Sam James
2023-04-03 0:47 Sam James
2022-12-03 7:43 Hans de Graaff
2022-04-02 8:03 Agostino Sarubbo
2022-03-31 12:33 Jakov Smolić
2022-03-31 6:15 Hans de Graaff
2021-11-08 2:51 Yixun Lan
2021-10-28 5:27 Hans de Graaff
2021-08-04 6:41 Hans de Graaff
2021-05-10 4:35 Hans de Graaff
2021-03-04 6:55 Hans de Graaff
2021-02-13 7:55 Hans de Graaff
2021-02-06 6:59 Hans de Graaff
2021-02-04 7:58 Agostino Sarubbo
2021-02-03 23:55 Thomas Deutschmann
2021-02-03 6:45 Hans de Graaff
2020-09-16 5:55 Hans de Graaff
2020-09-11 5:14 Hans de Graaff
2020-09-08 5:48 Hans de Graaff
2020-09-05 8:01 Hans de Graaff
2020-05-31 8:19 Sergei Trofimovich
2020-04-25 12:44 Sergei Trofimovich
2020-04-15 21:49 Sergei Trofimovich
2020-04-14 21:06 Sergei Trofimovich
2020-02-29 6:00 Hans de Graaff
2020-02-29 6:00 Hans de Graaff
2019-09-25 6:11 Hans de Graaff
2019-08-29 5:24 Hans de Graaff
2019-08-29 5:24 Hans de Graaff
2019-08-28 5:15 Hans de Graaff
2019-07-24 23:16 Aaron Bauman
2019-07-08 4:24 Hans de Graaff
2019-01-31 7:35 Hans de Graaff
2019-01-31 7:35 Hans de Graaff
2018-05-03 4:48 Hans de Graaff
2018-04-19 19:37 Hans de Graaff
2018-04-19 19:37 Hans de Graaff
2018-03-25 17:58 Sergei Trofimovich
2018-03-18 6:25 Hans de Graaff
2018-02-07 5:52 Thomas Deutschmann
2017-12-28 6:34 Hans de Graaff
2017-09-12 8:18 Sergei Trofimovich
2017-08-26 8:27 Hans de Graaff
2017-08-26 8:27 Hans de Graaff
2017-06-21 7:27 Hans de Graaff
2017-05-29 4:31 Hans de Graaff
2017-04-16 6:40 Hans de Graaff
2017-01-31 7:05 Hans de Graaff
2016-07-21 17:36 Hans de Graaff
2016-03-22 21:58 Manuel Rüger
2016-02-02 6:25 Hans de Graaff
2015-12-24 6:37 Hans de Graaff
2015-12-24 6:37 Hans de Graaff
2015-12-06 7:05 Hans de Graaff
2015-12-05 13:01 Markus Meier
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=1730182992.05d5b95ac5c252ae753d88eea7899abc5a7af0a8.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