* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-wait/
@ 2022-02-13 9:06 Hans de Graaff
0 siblings, 0 replies; 9+ messages in thread
From: Hans de Graaff @ 2022-02-13 9:06 UTC (permalink / raw
To: gentoo-commits
commit: 65650804093cf764eb4fac2aeaa28c452cabdbaf
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 12 09:01:48 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Feb 13 09:06:07 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65650804
dev-ruby/io-wait: add 0.2.1
Extracted from dev-lang/ruby, keywords have been migrated.
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/io-wait/Manifest | 1 +
dev-ruby/io-wait/io-wait-0.2.1.ebuild | 28 ++++++++++++++++++++++++++++
dev-ruby/io-wait/metadata.xml | 11 +++++++++++
3 files changed, 40 insertions(+)
diff --git a/dev-ruby/io-wait/Manifest b/dev-ruby/io-wait/Manifest
new file mode 100644
index 000000000000..25896ccd1cf2
--- /dev/null
+++ b/dev-ruby/io-wait/Manifest
@@ -0,0 +1 @@
+DIST io-wait-0.2.1.tar.gz 18944 BLAKE2B c77e0f839160d0129660003586f7785447e7b2e89df47d83ff6868bbdf1e667d432f0d84afb06b5bcc8f751c433da9c8bcd7b5fc0b701adbe2f10ae338dcacab SHA512 7e914ce7d6b66fabd1799567dd448124b7c1dd266bd1ce975b24a96f18c15b7dab20d2f68a7686aa8383d518783486370225b22a07fdb3c9fddae93278282427
diff --git a/dev-ruby/io-wait/io-wait-0.2.1.ebuild b/dev-ruby/io-wait/io-wait-0.2.1.ebuild
new file mode 100644
index 000000000000..9a4ccbcf463c
--- /dev/null
+++ b/dev-ruby/io-wait/io-wait-0.2.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_EXTENSIONS="ext/io/wait/extconf.rb"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_GEMSPEC="io-wait.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Waits until IO is readable or writable without blocking"
+HOMEPAGE="https://github.com/ruby/io-wait"
+SRC_URI="https://github.com/ruby/io-wait/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+all_ruby_prepare() {
+ sed -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+ sed -e '/task :test/ s:^:#:' -i Rakefile || die
+}
diff --git a/dev-ruby/io-wait/metadata.xml b/dev-ruby/io-wait/metadata.xml
new file mode 100644
index 000000000000..8e2d4cc9ea78
--- /dev/null
+++ b/dev-ruby/io-wait/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>ruby@gentoo.org</email>
+ <name>Gentoo Ruby Project</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">ruby/io-wait</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-wait/
@ 2022-03-27 7:13 Hans de Graaff
0 siblings, 0 replies; 9+ messages in thread
From: Hans de Graaff @ 2022-03-27 7:13 UTC (permalink / raw
To: gentoo-commits
commit: 5a32cf169e4c84dfde402089523e09f60e494aa1
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 27 05:51:15 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Mar 27 07:13:12 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a32cf16
dev-ruby/io-wait: enable ruby31, fix test setup
Closes: https://bugs.gentoo.org/833262
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/io-wait/io-wait-0.2.1.ebuild | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/dev-ruby/io-wait/io-wait-0.2.1.ebuild b/dev-ruby/io-wait/io-wait-0.2.1.ebuild
index 9a4ccbcf463c..4def09c942da 100644
--- a/dev-ruby/io-wait/io-wait-0.2.1.ebuild
+++ b/dev-ruby/io-wait/io-wait-0.2.1.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-USE_RUBY="ruby26 ruby27 ruby30"
+USE_RUBY="ruby26 ruby27 ruby30 ruby31"
RUBY_FAKEGEM_BINWRAP=""
RUBY_FAKEGEM_EXTENSIONS="ext/io/wait/extconf.rb"
@@ -26,3 +26,7 @@ all_ruby_prepare() {
-i ${RUBY_FAKEGEM_GEMSPEC} || die
sed -e '/task :test/ s:^:#:' -i Rakefile || die
}
+
+each_ruby_test() {
+ ${RUBY} -Ilib:.:test:test/lib -rhelper -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-wait/
@ 2022-05-10 5:00 Hans de Graaff
0 siblings, 0 replies; 9+ messages in thread
From: Hans de Graaff @ 2022-05-10 5:00 UTC (permalink / raw
To: gentoo-commits
commit: 22540bc77964fda6f6260ccac99106972c9574f9
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Tue May 10 04:54:37 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue May 10 04:54:37 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22540bc7
dev-ruby/io-wait: add 0.2.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/io-wait/Manifest | 1 +
dev-ruby/io-wait/io-wait-0.2.3.ebuild | 32 ++++++++++++++++++++++++++++++++
2 files changed, 33 insertions(+)
diff --git a/dev-ruby/io-wait/Manifest b/dev-ruby/io-wait/Manifest
index 25896ccd1cf2..145f709a1d06 100644
--- a/dev-ruby/io-wait/Manifest
+++ b/dev-ruby/io-wait/Manifest
@@ -1 +1,2 @@
DIST io-wait-0.2.1.tar.gz 18944 BLAKE2B c77e0f839160d0129660003586f7785447e7b2e89df47d83ff6868bbdf1e667d432f0d84afb06b5bcc8f751c433da9c8bcd7b5fc0b701adbe2f10ae338dcacab SHA512 7e914ce7d6b66fabd1799567dd448124b7c1dd266bd1ce975b24a96f18c15b7dab20d2f68a7686aa8383d518783486370225b22a07fdb3c9fddae93278282427
+DIST io-wait-0.2.3.tar.gz 22171 BLAKE2B 359bf268aafcb2dcbdf59912a0973b96bf396801678a3aa2780e3bd20e8a01471404a269eaaced939e47e4e99c417eadb86f0f2bd6ccd11fc3256bb04ca05f4f SHA512 2fbea3419152cd83e411742dd074491bd78b6a077b68a2ea5d802bac671b839bb484a06654ca11f18f45deb1e33a9019dfae0a33eeda0696c1c14b05706a95ba
diff --git a/dev-ruby/io-wait/io-wait-0.2.3.ebuild b/dev-ruby/io-wait/io-wait-0.2.3.ebuild
new file mode 100644
index 000000000000..4def09c942da
--- /dev/null
+++ b/dev-ruby/io-wait/io-wait-0.2.3.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30 ruby31"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_EXTENSIONS="ext/io/wait/extconf.rb"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_GEMSPEC="io-wait.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Waits until IO is readable or writable without blocking"
+HOMEPAGE="https://github.com/ruby/io-wait"
+SRC_URI="https://github.com/ruby/io-wait/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+all_ruby_prepare() {
+ sed -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+ sed -e '/task :test/ s:^:#:' -i Rakefile || die
+}
+
+each_ruby_test() {
+ ${RUBY} -Ilib:.:test:test/lib -rhelper -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-wait/
@ 2023-07-03 9:15 Hans de Graaff
0 siblings, 0 replies; 9+ messages in thread
From: Hans de Graaff @ 2023-07-03 9:15 UTC (permalink / raw
To: gentoo-commits
commit: 13db64894c1275247345172c46f8ae73db4fcd64
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 3 05:49:02 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Jul 3 09:14:58 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13db6489
dev-ruby/io-wait: enable ruby32
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/io-wait/io-wait-0.2.3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/io-wait/io-wait-0.2.3.ebuild b/dev-ruby/io-wait/io-wait-0.2.3.ebuild
index 1e0b2f170113..415a5b87b2ff 100644
--- a/dev-ruby/io-wait/io-wait-0.2.3.ebuild
+++ b/dev-ruby/io-wait/io-wait-0.2.3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-USE_RUBY="ruby26 ruby27 ruby30 ruby31"
+USE_RUBY="ruby30 ruby31 ruby32"
RUBY_FAKEGEM_BINWRAP=""
RUBY_FAKEGEM_EXTENSIONS="ext/io/wait/extconf.rb"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-wait/
@ 2023-08-27 6:44 Hans de Graaff
0 siblings, 0 replies; 9+ messages in thread
From: Hans de Graaff @ 2023-08-27 6:44 UTC (permalink / raw
To: gentoo-commits
commit: 49188a5b879ed449b777a0a001fce26d9f8868a0
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 27 06:34:27 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Aug 27 06:44:49 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49188a5b
dev-ruby/io-wait: drop 0.2.1
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/io-wait/Manifest | 1 -
dev-ruby/io-wait/io-wait-0.2.1.ebuild | 32 --------------------------------
2 files changed, 33 deletions(-)
diff --git a/dev-ruby/io-wait/Manifest b/dev-ruby/io-wait/Manifest
index 145f709a1d06..d52a4a63fe49 100644
--- a/dev-ruby/io-wait/Manifest
+++ b/dev-ruby/io-wait/Manifest
@@ -1,2 +1 @@
-DIST io-wait-0.2.1.tar.gz 18944 BLAKE2B c77e0f839160d0129660003586f7785447e7b2e89df47d83ff6868bbdf1e667d432f0d84afb06b5bcc8f751c433da9c8bcd7b5fc0b701adbe2f10ae338dcacab SHA512 7e914ce7d6b66fabd1799567dd448124b7c1dd266bd1ce975b24a96f18c15b7dab20d2f68a7686aa8383d518783486370225b22a07fdb3c9fddae93278282427
DIST io-wait-0.2.3.tar.gz 22171 BLAKE2B 359bf268aafcb2dcbdf59912a0973b96bf396801678a3aa2780e3bd20e8a01471404a269eaaced939e47e4e99c417eadb86f0f2bd6ccd11fc3256bb04ca05f4f SHA512 2fbea3419152cd83e411742dd074491bd78b6a077b68a2ea5d802bac671b839bb484a06654ca11f18f45deb1e33a9019dfae0a33eeda0696c1c14b05706a95ba
diff --git a/dev-ruby/io-wait/io-wait-0.2.1.ebuild b/dev-ruby/io-wait/io-wait-0.2.1.ebuild
deleted file mode 100644
index 1e0b2f170113..000000000000
--- a/dev-ruby/io-wait/io-wait-0.2.1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby26 ruby27 ruby30 ruby31"
-
-RUBY_FAKEGEM_BINWRAP=""
-RUBY_FAKEGEM_EXTENSIONS="ext/io/wait/extconf.rb"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_GEMSPEC="io-wait.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Waits until IO is readable or writable without blocking"
-HOMEPAGE="https://github.com/ruby/io-wait"
-SRC_URI="https://github.com/ruby/io-wait/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
-IUSE=""
-
-all_ruby_prepare() {
- sed -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \
- -e 's/git ls-files -z/find * -print0/' \
- -i ${RUBY_FAKEGEM_GEMSPEC} || die
- sed -e '/task :test/ s:^:#:' -i Rakefile || die
-}
-
-each_ruby_test() {
- ${RUBY} -Ilib:.:test:test/lib -rhelper -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-wait/
@ 2023-12-27 19:51 Hans de Graaff
0 siblings, 0 replies; 9+ messages in thread
From: Hans de Graaff @ 2023-12-27 19:51 UTC (permalink / raw
To: gentoo-commits
commit: 659e2da7cb44fc52ffebb22f8fcd3ea3883662cb
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 27 19:45:51 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Dec 27 19:45:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=659e2da7
dev-ruby/io-wait: enable ruby33
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/io-wait/io-wait-0.2.3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/io-wait/io-wait-0.2.3.ebuild b/dev-ruby/io-wait/io-wait-0.2.3.ebuild
index 415a5b87b2ff..80e425823662 100644
--- a/dev-ruby/io-wait/io-wait-0.2.3.ebuild
+++ b/dev-ruby/io-wait/io-wait-0.2.3.ebuild
@@ -2,7 +2,7 @@
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-USE_RUBY="ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
RUBY_FAKEGEM_BINWRAP=""
RUBY_FAKEGEM_EXTENSIONS="ext/io/wait/extconf.rb"
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-wait/
@ 2024-05-03 11:13 Hans de Graaff
0 siblings, 0 replies; 9+ messages in thread
From: Hans de Graaff @ 2024-05-03 11:13 UTC (permalink / raw
To: gentoo-commits
commit: 60fa4321ce5ea11571d6cda76ae84734db7b05b1
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri May 3 07:38:26 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri May 3 11:13:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60fa4321
dev-ruby/io-wait: add 0.3.1
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/io-wait/Manifest | 1 +
dev-ruby/io-wait/io-wait-0.3.1.ebuild | 31 +++++++++++++++++++++++++++++++
2 files changed, 32 insertions(+)
diff --git a/dev-ruby/io-wait/Manifest b/dev-ruby/io-wait/Manifest
index d52a4a63fe49..48c122abeb2b 100644
--- a/dev-ruby/io-wait/Manifest
+++ b/dev-ruby/io-wait/Manifest
@@ -1 +1,2 @@
DIST io-wait-0.2.3.tar.gz 22171 BLAKE2B 359bf268aafcb2dcbdf59912a0973b96bf396801678a3aa2780e3bd20e8a01471404a269eaaced939e47e4e99c417eadb86f0f2bd6ccd11fc3256bb04ca05f4f SHA512 2fbea3419152cd83e411742dd074491bd78b6a077b68a2ea5d802bac671b839bb484a06654ca11f18f45deb1e33a9019dfae0a33eeda0696c1c14b05706a95ba
+DIST io-wait-0.3.1.tar.gz 13187 BLAKE2B 2d8e0c8cdd29d01279d5b700cd3cfcb5ab23f651ef5a2be388c2813734636f35a00d478b56ee168fc8a1be43b5ff38bf4ea78ff98abcfe4f95e17c20cf2defa9 SHA512 34cf02e0533c32b781a01e5c3ff987b6463a45a5356180733c06a03280ce7767d1274fe0d47dc9783061d588de83bb080b5cb315e3c3779da30a8562b11871de
diff --git a/dev-ruby/io-wait/io-wait-0.3.1.ebuild b/dev-ruby/io-wait/io-wait-0.3.1.ebuild
new file mode 100644
index 000000000000..4c5293ff23a6
--- /dev/null
+++ b/dev-ruby/io-wait/io-wait-0.3.1.ebuild
@@ -0,0 +1,31 @@
+# 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_BINWRAP=""
+RUBY_FAKEGEM_EXTENSIONS="ext/io/wait/extconf.rb"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_GEMSPEC="io-wait.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Waits until IO is readable or writable without blocking"
+HOMEPAGE="https://github.com/ruby/io-wait"
+SRC_URI="https://github.com/ruby/io-wait/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+
+all_ruby_prepare() {
+ sed -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+ sed -e '/task :test/ s:^:#:' -i Rakefile || die
+
+ # Avoid tests that require a working console
+ sed -e '/test_wait_mask_\(negative\|readable\|writable\|zero\)/aomit("Requires working console")' \
+ -i test/io/wait/test_io_wait.rb || die
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-wait/
@ 2024-05-04 6:47 Hans de Graaff
0 siblings, 0 replies; 9+ messages in thread
From: Hans de Graaff @ 2024-05-04 6:47 UTC (permalink / raw
To: gentoo-commits
commit: c9435ce51cf36392d0db0625584125b3a48b1953
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat May 4 06:46:45 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat May 4 06:47:32 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9435ce5
dev-ruby/io-wait: fix running tests
Run the tests directly again to avoid unneeded dependencies in the
Rakefile.
Closes: https://bugs.gentoo.org/931132
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/io-wait/io-wait-0.3.1.ebuild | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-ruby/io-wait/io-wait-0.3.1.ebuild b/dev-ruby/io-wait/io-wait-0.3.1.ebuild
index 4c5293ff23a6..eb46cedf6b23 100644
--- a/dev-ruby/io-wait/io-wait-0.3.1.ebuild
+++ b/dev-ruby/io-wait/io-wait-0.3.1.ebuild
@@ -29,3 +29,7 @@ all_ruby_prepare() {
sed -e '/test_wait_mask_\(negative\|readable\|writable\|zero\)/aomit("Requires working console")' \
-i test/io/wait/test_io_wait.rb || die
}
+
+each_ruby_test() {
+ ${RUBY} -Ilib:.:test:test/lib -rhelper -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-wait/
@ 2024-05-04 16:50 Hans de Graaff
0 siblings, 0 replies; 9+ messages in thread
From: Hans de Graaff @ 2024-05-04 16:50 UTC (permalink / raw
To: gentoo-commits
commit: 73b618d61066dc6b7f6715567e282fc723484037
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat May 4 16:49:15 2024 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat May 4 16:50:16 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73b618d6
dev-ruby/io-wait: add missing test dependency
Closes: https://bugs.gentoo.org/931199
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/io-wait/io-wait-0.3.1.ebuild | 2 ++
1 file changed, 2 insertions(+)
diff --git a/dev-ruby/io-wait/io-wait-0.3.1.ebuild b/dev-ruby/io-wait/io-wait-0.3.1.ebuild
index eb46cedf6b23..204a8c0a49fe 100644
--- a/dev-ruby/io-wait/io-wait-0.3.1.ebuild
+++ b/dev-ruby/io-wait/io-wait-0.3.1.ebuild
@@ -19,6 +19,8 @@ LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+ruby_add_bdepend "test? ( dev-ruby/test-unit dev-ruby/test-unit-ruby-core )"
+
all_ruby_prepare() {
sed -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \
-e 's/git ls-files -z/find * -print0/' \
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2024-05-04 16:50 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-03 11:13 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/io-wait/ Hans de Graaff
-- strict thread matches above, loose matches on Subject: below --
2024-05-04 16:50 Hans de Graaff
2024-05-04 6:47 Hans de Graaff
2023-12-27 19:51 Hans de Graaff
2023-08-27 6:44 Hans de Graaff
2023-07-03 9:15 Hans de Graaff
2022-05-10 5:00 Hans de Graaff
2022-03-27 7:13 Hans de Graaff
2022-02-13 9:06 Hans de Graaff
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox