summaryrefslogtreecommitdiff
path: root/dev-ruby/timeout
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-12 19:09:37 -0500
commitb590c8d7572b727d565cc0b8ff660d43569845de (patch)
tree06f7a4102ea4e845df8b66660f252920d52952f9 /dev-ruby/timeout
parent24f9cbfc4c34fdb6a6e03311674414e881ceab47 (diff)
downloadbaldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.gz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.tar.xz
baldeagleos-repo-b590c8d7572b727d565cc0b8ff660d43569845de.zip
Adding metadata
Diffstat (limited to 'dev-ruby/timeout')
-rw-r--r--dev-ruby/timeout/Manifest4
-rw-r--r--dev-ruby/timeout/metadata.xml9
-rw-r--r--dev-ruby/timeout/timeout-0.4.3.ebuild29
-rw-r--r--dev-ruby/timeout/timeout-0.4.4.ebuild30
-rw-r--r--dev-ruby/timeout/timeout-0.5.0.ebuild30
-rw-r--r--dev-ruby/timeout/timeout-0.6.0.ebuild30
6 files changed, 132 insertions, 0 deletions
diff --git a/dev-ruby/timeout/Manifest b/dev-ruby/timeout/Manifest
new file mode 100644
index 000000000000..5833e41d32f1
--- /dev/null
+++ b/dev-ruby/timeout/Manifest
@@ -0,0 +1,4 @@
+DIST timeout-0.4.3.tar.gz 8695 BLAKE2B bc94fe6ee95f562d3ee10f3d26eafe4c644d1dd62e51fdc5ba7f83c8ddf051ffd04144d764d6546c05d62ed1b36567f5607346cb31332de096ab91a7a6681863 SHA512 e9f9fa4fe7465bd6b27997e0fd045c5e5abdb57dc102669d54329630291daffb13c57895177ef7d93a02ade2a34f6be1a418ffc864c85a9775bb616adc56f3c4
+DIST timeout-0.4.4.tar.gz 9082 BLAKE2B 4dd3c745852cdb01ceec20ca895aff6b88966775b57072e7b869c3f7bc55d30b2835ab97a76d5946cd33472acf9c1d863f84a03f98a843445fbeaa8c3ad19ffb SHA512 2b6c43093bf6b3cf6e957f7d3204d9e46f9c4d5dd8dba8fb92a5deee2f5996d4b721b9bcda9f40d22793ef3820513af370b440e897f44402b7ac9c12ceb0202c
+DIST timeout-0.5.0.tar.gz 9601 BLAKE2B dfd7afc4ffd4b8eb4bc8343772908fff32873b496317f91a04c24d524e04df26b09533bb5e371c20713e441bd5f27a01a3f924eea362276f100bed39d8fb0ca8 SHA512 196844a93e92085d959d7e842bce31ac1a50811bcc0f7d1d694d7ac91e19b25be280994ade7a6761d91ab9676b1530b6dc1b77eedb1bf3d9793e80ce28c165a9
+DIST timeout-0.6.0.tar.gz 11363 BLAKE2B 5870c28f5bd65f49f383ff2d42e0ce21f97cd763ad2b75e8eb640d9d461c359d958b7a1b083e6d78c399c78dc277c915266a654ce4b01753c39ad02e6803c41c SHA512 742fbd63b0616cb17c822106c90ccbcb07894d6b5f54af2d5db303caa9410fae03e570501988e18b9bd2c3720acc086b348856adccbd8e25d45bb4468de5dcca
diff --git a/dev-ruby/timeout/metadata.xml b/dev-ruby/timeout/metadata.xml
new file mode 100644
index 000000000000..c685ebad7e3a
--- /dev/null
+++ b/dev-ruby/timeout/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://docs.baldeagleos.com/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>ruby@gentoo.org</email>
+ <name>Gentoo Ruby Project</name>
+ </maintainer>
+ <origin>baldeagleos-repo</origin>
+</pkgmetadata>
diff --git a/dev-ruby/timeout/timeout-0.4.3.ebuild b/dev-ruby/timeout/timeout-0.4.3.ebuild
new file mode 100644
index 000000000000..ec15d7d9e5be
--- /dev/null
+++ b/dev-ruby/timeout/timeout-0.4.3.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2025 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_EXTRADOC="README.md"
+RUBY_FAKEGEM_GEMSPEC="timeout.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides a framework for message digest libraries"
+HOMEPAGE="https://github.com/ruby/timeout"
+SRC_URI="https://github.com/ruby/timeout/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86 ~arm64-macos ~x64-macos ~x64-solaris"
+IUSE="test"
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit dev-ruby/test-unit-ruby-core )"
+
+all_ruby_prepare() {
+ sed -e 's/__dir__/"."/' \
+ -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}
diff --git a/dev-ruby/timeout/timeout-0.4.4.ebuild b/dev-ruby/timeout/timeout-0.4.4.ebuild
new file mode 100644
index 000000000000..6a919495273d
--- /dev/null
+++ b/dev-ruby/timeout/timeout-0.4.4.ebuild
@@ -0,0 +1,30 @@
+# 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_EXTRADOC="README.md"
+RUBY_FAKEGEM_GEMSPEC="timeout.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides a framework for message digest libraries"
+HOMEPAGE="https://github.com/ruby/timeout"
+SRC_URI="https://github.com/ruby/timeout/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
+IUSE="test"
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit dev-ruby/test-unit-ruby-core )"
+
+all_ruby_prepare() {
+ sed -e 's/__dir__/"."/' \
+ -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}
diff --git a/dev-ruby/timeout/timeout-0.5.0.ebuild b/dev-ruby/timeout/timeout-0.5.0.ebuild
new file mode 100644
index 000000000000..6a919495273d
--- /dev/null
+++ b/dev-ruby/timeout/timeout-0.5.0.ebuild
@@ -0,0 +1,30 @@
+# 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_EXTRADOC="README.md"
+RUBY_FAKEGEM_GEMSPEC="timeout.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides a framework for message digest libraries"
+HOMEPAGE="https://github.com/ruby/timeout"
+SRC_URI="https://github.com/ruby/timeout/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
+IUSE="test"
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit dev-ruby/test-unit-ruby-core )"
+
+all_ruby_prepare() {
+ sed -e 's/__dir__/"."/' \
+ -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}
diff --git a/dev-ruby/timeout/timeout-0.6.0.ebuild b/dev-ruby/timeout/timeout-0.6.0.ebuild
new file mode 100644
index 000000000000..09b41e80070f
--- /dev/null
+++ b/dev-ruby/timeout/timeout-0.6.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2025 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_EXTRADOC="README.md"
+RUBY_FAKEGEM_GEMSPEC="timeout.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides a framework for message digest libraries"
+HOMEPAGE="https://github.com/ruby/timeout"
+SRC_URI="https://github.com/ruby/timeout/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
+IUSE="test"
+
+ruby_add_bdepend "test? ( dev-ruby/test-unit dev-ruby/test-unit-ruby-core )"
+
+all_ruby_prepare() {
+ sed -e 's/__dir__/"."/' \
+ -e 's/__FILE__/"'${RUBY_FAKEGEM_GEMSPEC}'"/' \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}