diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-ruby/io-wait | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-ruby/io-wait')
| -rw-r--r-- | dev-ruby/io-wait/Manifest | 4 | ||||
| -rw-r--r-- | dev-ruby/io-wait/io-wait-0.3.1.ebuild | 37 | ||||
| -rw-r--r-- | dev-ruby/io-wait/io-wait-0.3.2.ebuild | 38 | ||||
| -rw-r--r-- | dev-ruby/io-wait/io-wait-0.3.6.ebuild | 40 | ||||
| -rw-r--r-- | dev-ruby/io-wait/io-wait-0.4.0.ebuild | 40 | ||||
| -rw-r--r-- | dev-ruby/io-wait/metadata.xml | 11 |
6 files changed, 0 insertions, 170 deletions
diff --git a/dev-ruby/io-wait/Manifest b/dev-ruby/io-wait/Manifest deleted file mode 100644 index c44ff2e119d7..000000000000 --- a/dev-ruby/io-wait/Manifest +++ /dev/null @@ -1,4 +0,0 @@ -DIST io-wait-0.3.1.tar.gz 13187 BLAKE2B 2d8e0c8cdd29d01279d5b700cd3cfcb5ab23f651ef5a2be388c2813734636f35a00d478b56ee168fc8a1be43b5ff38bf4ea78ff98abcfe4f95e17c20cf2defa9 SHA512 34cf02e0533c32b781a01e5c3ff987b6463a45a5356180733c06a03280ce7767d1274fe0d47dc9783061d588de83bb080b5cb315e3c3779da30a8562b11871de -DIST io-wait-0.3.2.tar.gz 14091 BLAKE2B 9372b0c18356a1f53d3612f181e454f066e982971c586e35065968b8418821238a0b384d5d1711a806ffe4a5144a4e665b4e401193b39c7a44e054b1b002f14a SHA512 64b0f0ca3b43bbba04e9b570dfb6d4fdcdb88005044eed61e2786e8ca8b34afc60d6b021f951d20da50e48480d63fed230e8ddc4d23b3dc0954acc476d8b1112 -DIST io-wait-0.3.6.tar.gz 14595 BLAKE2B 2a131cc83276cae71a13dae2427ffe618a93264bae731754dd783c25f3500ba00ef239e284c3c82a84bd39e91a824a2d40d4e87c71b114182c22a5840440271c SHA512 8117d5dec92d558bfa84016a7f0147c27186592ed3158a4483c9364413646edc029fadf61e27c8fafbc4b01652a5fda6cff13c15dee82f6f33d69ec550629f25 -DIST io-wait-0.4.0.tar.gz 11197 BLAKE2B 0ca0fa3565d3e6462e89310227f16cb54a1c47763b8ee879f9bc194bd77e327cc0462f26b1cf4c3e1bea27d6ea3f0d212b7d480953cfd4874b842a7ac7167d24 SHA512 28559611c1718b6e720ff4d47fd7bc4e1eb1181373c3890a6e7c3f4d4c5b975a66b9e035d6b507554e0e9e0cecb8e16a1defd7e9e329aaf06bfcce1bf22f1738 diff --git a/dev-ruby/io-wait/io-wait-0.3.1.ebuild b/dev-ruby/io-wait/io-wait-0.3.1.ebuild deleted file mode 100644 index 244249d15388..000000000000 --- a/dev-ruby/io-wait/io-wait-0.3.1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 -USE_RUBY="ruby31 ruby32 ruby33 ruby34" - -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 ~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/' \ - -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 -} - -each_ruby_test() { - ${RUBY} -Ilib:.:test:test/lib -rhelper -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die -} diff --git a/dev-ruby/io-wait/io-wait-0.3.2.ebuild b/dev-ruby/io-wait/io-wait-0.3.2.ebuild deleted file mode 100644 index 3089ab202f1c..000000000000 --- a/dev-ruby/io-wait/io-wait-0.3.2.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby32 ruby33 ruby34" - -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 ~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/' \ - -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 -} - -each_ruby_test() { - ${RUBY} -Ilib:.:test:test/lib -rhelper -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die -} diff --git a/dev-ruby/io-wait/io-wait-0.3.6.ebuild b/dev-ruby/io-wait/io-wait-0.3.6.ebuild deleted file mode 100644 index e480fb2942a3..000000000000 --- a/dev-ruby/io-wait/io-wait-0.3.6.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby32 ruby33 ruby34" - -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 ~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/' \ - -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 - sed -e '/test_after_ungetc_in_text_/aomit("Requires working console")' \ - -i test/io/wait/test_io_wait_uncommon.rb || die -} - -each_ruby_test() { - ${RUBY} -Ilib:.:test:test/lib -rhelper -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die -} diff --git a/dev-ruby/io-wait/io-wait-0.4.0.ebuild b/dev-ruby/io-wait/io-wait-0.4.0.ebuild deleted file mode 100644 index 22976ceb6515..000000000000 --- a/dev-ruby/io-wait/io-wait-0.4.0.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -USE_RUBY="ruby32 ruby33 ruby34 ruby40" - -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 ~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/' \ - -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 - sed -e '/test_after_ungetc_in_text_/aomit("Requires working console")' \ - -i test/io/wait/test_io_wait_uncommon.rb || die -} - -each_ruby_test() { - ${RUBY} -Ilib:.:test:test/lib -rhelper -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die -} diff --git a/dev-ruby/io-wait/metadata.xml b/dev-ruby/io-wait/metadata.xml deleted file mode 100644 index 8e2d4cc9ea78..000000000000 --- a/dev-ruby/io-wait/metadata.xml +++ /dev/null @@ -1,11 +0,0 @@ -<?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> |
