summaryrefslogtreecommitdiff
path: root/dev-ruby
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-12-18 19:19:08 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-12-18 19:19:08 +0000
commit667aa2b0ba3c7ea09152f756f0369da6c969955e (patch)
tree88ac3ec4c32100d0c5b40acda84ad39c97772f98 /dev-ruby
parent99eeb2254cc481ca1d8ff8b90176dcaf6fd3c70f (diff)
downloadbaldeagleos-repo-667aa2b0ba3c7ea09152f756f0369da6c969955e.tar.gz
baldeagleos-repo-667aa2b0ba3c7ea09152f756f0369da6c969955e.tar.xz
baldeagleos-repo-667aa2b0ba3c7ea09152f756f0369da6c969955e.zip
Adding metadata
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/bigdecimal/Manifest1
-rw-r--r--dev-ruby/bigdecimal/bigdecimal-4.0.1.ebuild35
-rw-r--r--dev-ruby/forwardable/Manifest1
-rw-r--r--dev-ruby/forwardable/forwardable-1.4.0.ebuild38
-rw-r--r--dev-ruby/ipaddr/Manifest1
-rw-r--r--dev-ruby/ipaddr/ipaddr-1.2.8.ebuild34
6 files changed, 110 insertions, 0 deletions
diff --git a/dev-ruby/bigdecimal/Manifest b/dev-ruby/bigdecimal/Manifest
index 53be8d0ff721..d971a4639e3b 100644
--- a/dev-ruby/bigdecimal/Manifest
+++ b/dev-ruby/bigdecimal/Manifest
@@ -1,3 +1,4 @@
DIST bigdecimal-3.2.3.tar.gz 108558 BLAKE2B c4c03995d87724cef2dbd2afe0c803dfef531edd22bc4317e8ea4c68b957ba55461287d337b35c24ab869e40f95ee130fb2fda073bd36a8fe0e9587f56b74e1b SHA512 f65fc293a786be81b9bd5bda0ddeb3e26105e96a99998345e183621eefc15f3871f123577b85514a24649a116be6cf39dc089617a15b1a2fa4dbb1793cee38dc
DIST bigdecimal-3.3.1.tar.gz 110348 BLAKE2B 29b9bc4eb7879fdabb2fd45ed23a4e91c931a570ae5ea93f13af3d0c72ffb90d2f981b259b04430cc7bbb3e58bd6d0c6d8bf0cc44bcda613e86d8ba439719abb SHA512 7e6feff843328b21f51d9b875c52ae0bd3a88c956c1cf2f16dd96c7f26fa45b3c47cff5adf359b003f04e546b883a70c2c33add6430566f1293c267d0669e858
DIST bigdecimal-4.0.0.tar.gz 119235 BLAKE2B 6a8435e0681391b0c5e704712764cb4f0053172bca974b512ceea1f35180cd79f18fe6d617474d8f5499e68759df911e31450bc2ad3d78cdc55db0357d62313b SHA512 97c5ae813a0cba0fe4b9ed7ae498ae334afecab08de3642be4b7cba3da4eefa0f15c3fdeae84478f4da24d4f860f7c092580c17623ba30f07d47d4dfad91e044
+DIST bigdecimal-4.0.1.tar.gz 119123 BLAKE2B 68bdfa211fdf6b7b7dd0dc10d2b9849292597d17f161ceae3d5aeca6d7e4c44a23b5dfa9d1794575a5fcfd714298f26a4c245a7694e2f7b13c46539a66ec2155 SHA512 2235bdc27ad63872dd1ebc29be22fd5c9a56fc1ded0e0bff54140753d2578190277909dc04e427e8dfb33b90fc49b4154addb862993037eed9ccc28298c83578
diff --git a/dev-ruby/bigdecimal/bigdecimal-4.0.1.ebuild b/dev-ruby/bigdecimal/bigdecimal-4.0.1.ebuild
new file mode 100644
index 000000000000..989b71cf6a67
--- /dev/null
+++ b/dev-ruby/bigdecimal/bigdecimal-4.0.1.ebuild
@@ -0,0 +1,35 @@
+# 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/bigdecimal/extconf.rb)
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+RUBY_FAKEGEM_GEMSPEC="bigdecimal.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Arbitrary-precision decimal floating-point number library for Ruby"
+HOMEPAGE="https://github.com/ruby/bigdecimal"
+SRC_URI="https://github.com/ruby/bigdecimal/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="|| ( Ruby-BSD BSD-2 )"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~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 '/^source_version/,/^end/ s:^:#:' \
+ -e "/s.version/ s/= source_version/= '${PV}'/" \
+ -e "/s.name/ s/= name/= 'bigdecimal'/" \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_test() {
+ ${RUBY} -Ilib:test:. -rtest/lib/helper -e "Dir['test/**/test_*.rb'].each { require _1 }" || die
+}
diff --git a/dev-ruby/forwardable/Manifest b/dev-ruby/forwardable/Manifest
index bea83260043c..29da17891573 100644
--- a/dev-ruby/forwardable/Manifest
+++ b/dev-ruby/forwardable/Manifest
@@ -1 +1,2 @@
DIST forwardable-1.3.3.tar.gz 18044 BLAKE2B 41e3299698d6c48c18a2d5468fd446154eb2813d90d05b1e2531ad48cfe2a3bc27a8b33cf7818c3c46d25ddbc1c0e61ee6d755019d68363e31fae469c3b696a0 SHA512 fe388c3377aea76d350da1a140a09a522a405307ce2566160f1dbe7d2bb46612b57fe9d3c516684402586f20a4b510ada762809192ca81dedb7a251906e56ed7
+DIST forwardable-1.4.0.tar.gz 9010 BLAKE2B 0b5a92e58377d6eb4a26b9511d64decad872f5f01f9c489d7bd3b9a150eae00ed42c66bbfad6fb06fccbbea9ce9ef0db7e8100bb3d8998429e738c2e86252895 SHA512 b28d375dd1ec1cd3c2548fab0a3ce06d5d75c0241e25a9b49c3c910c4734f72d7402553e5f173cd83901cb224ff59d4f921c858214188ef906050f2ca6569951
diff --git a/dev-ruby/forwardable/forwardable-1.4.0.ebuild b/dev-ruby/forwardable/forwardable-1.4.0.ebuild
new file mode 100644
index 000000000000..2dcec402620d
--- /dev/null
+++ b/dev-ruby/forwardable/forwardable-1.4.0.ebuild
@@ -0,0 +1,38 @@
+# 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="forwardable.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides delegation of specified methods to a designated object"
+HOMEPAGE="https://github.com/ruby/forwardable"
+SRC_URI="https://github.com/ruby/forwardable/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 ~amd64-linux ~x86-linux ~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
+
+ # Avoid failing test due to 3.4 changes in error messages.
+ sed -e '/test_basicobject_subclass/aomit "Ruby 3.4 changed error messages"' \
+ -i test/test_forwardable.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/ipaddr/Manifest b/dev-ruby/ipaddr/Manifest
index c47e6393a0dc..1347ca35dcc5 100644
--- a/dev-ruby/ipaddr/Manifest
+++ b/dev-ruby/ipaddr/Manifest
@@ -1 +1,2 @@
DIST ipaddr-1.2.7.tar.gz 13050 BLAKE2B 90718d0a131297bee394715b62e70cd0592a7edf0be5a14bba9cbdf097e4115e1dd069d895fe22951ada77c1e7668b710f7944eed84ee6c5c58679384053c104 SHA512 3900331c7f7822e330e983b243da3f7ef5387af8467212770577a501a584ba834f03c112ec476bb274c80784f45928b9a12d7d5851608430283c4e12ed1e317a
+DIST ipaddr-1.2.8.tar.gz 13896 BLAKE2B fc507bff67a1de0c9ce843048e39dcd03ad3b3b86a186ba3ccc8afa269d33de71e723e2730e256be87bbaace7a604001d0180f820e58690c9178bf2e22fae8d1 SHA512 a6e4b962e76384e8eddff371fd7a2534950afa9f094bfd766638c8c16a78093c647e24fdfda2f5a7b6c81452f33d1a91769ea99241ac5a7f58908b8d9698a97d
diff --git a/dev-ruby/ipaddr/ipaddr-1.2.8.ebuild b/dev-ruby/ipaddr/ipaddr-1.2.8.ebuild
new file mode 100644
index 000000000000..8cb61855a130
--- /dev/null
+++ b/dev-ruby/ipaddr/ipaddr-1.2.8.ebuild
@@ -0,0 +1,34 @@
+# 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="ipaddr.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="IPAddr provides a set of methods to manipulate an IPv4 or IPv6 address"
+HOMEPAGE="https://github.com/ruby/ipaddr"
+SRC_URI="https://github.com/ruby/ipaddr/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 ~amd64-linux ~x86-linux ~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
+}
+
+each_ruby_test() {
+ ${RUBY} -Ilib:.:test:test/lib -rhelper -e 'Dir["test/**/test_*.rb"].each{|f| require f}' || die
+}