summaryrefslogtreecommitdiff
path: root/dev-ruby
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-05-30 19:00:02 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2025-05-30 19:00:02 +0000
commit36a035beea8d3011a17d3090851d72caed6b87a9 (patch)
tree80fe65a93f5a482b509b9943685368c92e302dd8 /dev-ruby
parent111feb03ecf6c5395acf51355d99a5c33ac31358 (diff)
downloadbaldeagleos-repo-36a035beea8d3011a17d3090851d72caed6b87a9.tar.gz
baldeagleos-repo-36a035beea8d3011a17d3090851d72caed6b87a9.tar.xz
baldeagleos-repo-36a035beea8d3011a17d3090851d72caed6b87a9.zip
Adding metadata
Diffstat (limited to 'dev-ruby')
-rw-r--r--dev-ruby/bigdecimal/Manifest1
-rw-r--r--dev-ruby/bigdecimal/bigdecimal-3.2.0.ebuild35
-rw-r--r--dev-ruby/dry-core/dry-core-1.0.1.ebuild4
-rw-r--r--dev-ruby/dry-logic/dry-logic-1.5.0.ebuild4
-rw-r--r--dev-ruby/dry-logic/dry-logic-1.6.0.ebuild2
-rw-r--r--dev-ruby/dry-monads/dry-monads-1.6.0.ebuild4
-rw-r--r--dev-ruby/dry-monads/dry-monads-1.7.1.ebuild2
-rw-r--r--dev-ruby/dry-struct/dry-struct-1.6.0.ebuild4
-rw-r--r--dev-ruby/dry-types/dry-types-1.7.2.ebuild4
-rw-r--r--dev-ruby/highline/highline-3.1.1.ebuild4
-rw-r--r--dev-ruby/highline/highline-3.1.2.ebuild2
-rw-r--r--dev-ruby/process_executer/Manifest1
-rw-r--r--dev-ruby/process_executer/process_executer-3.2.4.ebuild34
13 files changed, 86 insertions, 15 deletions
diff --git a/dev-ruby/bigdecimal/Manifest b/dev-ruby/bigdecimal/Manifest
index b6c7cd680cc9..f3374dd2f88f 100644
--- a/dev-ruby/bigdecimal/Manifest
+++ b/dev-ruby/bigdecimal/Manifest
@@ -1,2 +1,3 @@
DIST bigdecimal-3.1.8.tar.gz 105551 BLAKE2B 5bd35c9a719e99dd94f4386c3d7202553add779bf2724e44476cc64488715353e242150308671a4ed1c1ac2a1087035db7cb3a7234191dc4c41c606fe813040a SHA512 4f3c07d4111261c74f74d757040f979e2d486c3df06f470e8f2c801d9fa8e9b6c2a0e0bbf353f8c2006685c4530bcb1d5c9a9f7c208e5fd549a5283939bdd519
DIST bigdecimal-3.1.9.tar.gz 105616 BLAKE2B eebec5ce41907d39a22dbe016a534d0dff81a55761e88ff530b6dc2cedbaf4d8b4db34996221b6c5c50d9b1ae6d7214aa3698e91a4da81fb28d6f5434b1893af SHA512 bd888ec1b999c786c50b24843fe063dda950dbade7940999a8bf98a7e23f68c5050e0400c5cfa2a78cc61e74d1a6643c62a4bb1288be1e431cacb6fdaf1ddead
+DIST bigdecimal-3.2.0.tar.gz 107152 BLAKE2B 83f9b6dad060ec45ad6cc4fa9c121a53b614d8f4911ec257bff7e18d22a95739cd1c5c1a972893e3ca1facb1efe3a20f7cb0210709f0903740f57ad90890cd02 SHA512 4873530ab05729490cded093e11d0ac187f35adcbc5d034f84cac15340fc527fa6eebc2f357cdae624a80d1f58aa42346618e469b071959711c6fbe94b210c78
diff --git a/dev-ruby/bigdecimal/bigdecimal-3.2.0.ebuild b/dev-ruby/bigdecimal/bigdecimal-3.2.0.ebuild
new file mode 100644
index 000000000000..7e2dfff6ade1
--- /dev/null
+++ b/dev-ruby/bigdecimal/bigdecimal-3.2.0.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="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-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 '/^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/dry-core/dry-core-1.0.1.ebuild b/dev-ruby/dry-core/dry-core-1.0.1.ebuild
index 54a511318637..dfae1e01c55a 100644
--- a/dev-ruby/dry-core/dry-core-1.0.1.ebuild
+++ b/dev-ruby/dry-core/dry-core-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -19,7 +19,7 @@ HOMEPAGE="https://dry-rb.org/gems/dry-core/"
SRC_URI="https://github.com/dry-rb/dry-core/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
-KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc ~x86"
SLOT="$(ver_cut 1)"
# Skip tests for now to avoid circular dependencies.
diff --git a/dev-ruby/dry-logic/dry-logic-1.5.0.ebuild b/dev-ruby/dry-logic/dry-logic-1.5.0.ebuild
index 858329bbf57c..da6b0e386a72 100644
--- a/dev-ruby/dry-logic/dry-logic-1.5.0.ebuild
+++ b/dev-ruby/dry-logic/dry-logic-1.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -19,7 +19,7 @@ HOMEPAGE="https://dry-rb.org/gems/dry-logic/"
SRC_URI="https://github.com/dry-rb/dry-logic/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
-KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc ~x86"
SLOT="$(ver_cut 1)"
IUSE="test"
diff --git a/dev-ruby/dry-logic/dry-logic-1.6.0.ebuild b/dev-ruby/dry-logic/dry-logic-1.6.0.ebuild
index 8dc076e8ad20..1d01323eaf7e 100644
--- a/dev-ruby/dry-logic/dry-logic-1.6.0.ebuild
+++ b/dev-ruby/dry-logic/dry-logic-1.6.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="https://github.com/dry-rb/dry-logic/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="MIT"
SLOT="$(ver_cut 1)"
-KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 ~sparc ~x86"
IUSE="test"
ruby_add_rdepend "
diff --git a/dev-ruby/dry-monads/dry-monads-1.6.0.ebuild b/dev-ruby/dry-monads/dry-monads-1.6.0.ebuild
index 0f33f0ddd29d..0c257aa26c42 100644
--- a/dev-ruby/dry-monads/dry-monads-1.6.0.ebuild
+++ b/dev-ruby/dry-monads/dry-monads-1.6.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -19,7 +19,7 @@ HOMEPAGE="https://dry-rb.org/gems/dry-monads/"
SRC_URI="https://github.com/dry-rb/dry-monads/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
-KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc ~x86"
SLOT="$(ver_cut 1)"
IUSE="test"
diff --git a/dev-ruby/dry-monads/dry-monads-1.7.1.ebuild b/dev-ruby/dry-monads/dry-monads-1.7.1.ebuild
index c300a3dd5c31..bdf5f80a41b8 100644
--- a/dev-ruby/dry-monads/dry-monads-1.7.1.ebuild
+++ b/dev-ruby/dry-monads/dry-monads-1.7.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="https://github.com/dry-rb/dry-monads/archive/v${PV}.tar.gz -> ${P}.tar.
LICENSE="MIT"
SLOT="$(ver_cut 1)"
-KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="test"
ruby_add_rdepend "
diff --git a/dev-ruby/dry-struct/dry-struct-1.6.0.ebuild b/dev-ruby/dry-struct/dry-struct-1.6.0.ebuild
index 4ad7e03d01b5..60339e7be9b7 100644
--- a/dev-ruby/dry-struct/dry-struct-1.6.0.ebuild
+++ b/dev-ruby/dry-struct/dry-struct-1.6.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -19,7 +19,7 @@ HOMEPAGE="https://dry-rb.org/gems/dry-struct/"
SRC_URI="https://github.com/dry-rb/dry-struct/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
-KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc ~x86"
SLOT="$(ver_cut 1)"
IUSE="test"
diff --git a/dev-ruby/dry-types/dry-types-1.7.2.ebuild b/dev-ruby/dry-types/dry-types-1.7.2.ebuild
index 8239c2ab356d..3cf4a09b8da7 100644
--- a/dev-ruby/dry-types/dry-types-1.7.2.ebuild
+++ b/dev-ruby/dry-types/dry-types-1.7.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -19,7 +19,7 @@ HOMEPAGE="https://dry-rb.org/gems/dry-types/"
SRC_URI="https://github.com/dry-rb/dry-types/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
-KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc ~x86"
SLOT="$(ver_cut 1)"
IUSE="test"
diff --git a/dev-ruby/highline/highline-3.1.1.ebuild b/dev-ruby/highline/highline-3.1.1.ebuild
index f0be41bb5c78..9164a867d869 100644
--- a/dev-ruby/highline/highline-3.1.1.ebuild
+++ b/dev-ruby/highline/highline-3.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/JEG2/highline/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="|| ( GPL-2 Ruby-BSD )"
SLOT="$(ver_cut 1)"
-KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc x86"
+KEYWORDS="amd64 ~arm64 ~hppa ppc ppc64 sparc ~x86"
IUSE="test"
ruby_add_rdepend "dev-ruby/reline"
diff --git a/dev-ruby/highline/highline-3.1.2.ebuild b/dev-ruby/highline/highline-3.1.2.ebuild
index a3a78ae99049..e6a5c10af067 100644
--- a/dev-ruby/highline/highline-3.1.2.ebuild
+++ b/dev-ruby/highline/highline-3.1.2.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/JEG2/highline/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="|| ( GPL-2 Ruby-BSD )"
SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ppc64 ~sparc x86"
+KEYWORDS="~amd64 ~arm64 ~hppa ~ppc ppc64 ~sparc ~x86"
IUSE="test"
ruby_add_rdepend "dev-ruby/reline"
diff --git a/dev-ruby/process_executer/Manifest b/dev-ruby/process_executer/Manifest
index eb90bae5373f..4134e1434612 100644
--- a/dev-ruby/process_executer/Manifest
+++ b/dev-ruby/process_executer/Manifest
@@ -4,3 +4,4 @@ DIST process_executer-2.0.0.tar.gz 26269 BLAKE2B f937695b5cab8a7df07d7f3ec30e523
DIST process_executer-3.0.0.tar.gz 38807 BLAKE2B ff799e60e3c5aec8f635b5b87f0e8d6a167dba331dd4253954ec9e491dd469606162f4668c39f4e3407d3eedb8825851880f9ff26ff77b77fca594e3c2e8ce1d SHA512 227facd4981dedef5effbbe24eb905e79410f5ae6f9f8f701a4d2d4f3f3346e80580fd38ec41f46bce0778034f22a42b257cbadd50e6a437914043c9c21115b7
DIST process_executer-3.1.0.tar.gz 39136 BLAKE2B c6c0e03ac0376c61f626c339078b9782e38763e0c9c6f82293019e793585db1ab8c82a521d021455c752b10cfb78e3bd90838d36244164245b734f7f4a9d6e91 SHA512 64b847d35506604631b4e1140cb3e0ac9a9c398941f79bab43d002463665707b29ddb7f94f15fead1476ae6301a474ec4150fea57f5c28184639e3d8dc29b3d0
DIST process_executer-3.2.0.tar.gz 40069 BLAKE2B 73e1fae902c29946beb7b6768a61368dfd3ac093e9f137cd7a9e7a92b20e811576c63f7d8238dece5f5f687d25a9e788bf0e8f70d787b2f1ded670a814e558e6 SHA512 965c936a30588e4f63b8a06c3a8c27e4fe910c231380b5049f4b4f1c64a16de4eff9dad1aa8a386db1b4aac7f2ebb17c1c514bae198e48fa621bb9e3caf6dcc1
+DIST process_executer-3.2.4.tar.gz 41876 BLAKE2B bd8115807fe2b3644d45f7c49e1704cfaf21486533f75e4ac52ff381809dd9c018541f8aba5197737d11ab7da6794d6b5c7492c950a75b284741aa82640ad90d SHA512 22b8896d46cbc1e37ff88d92a0f2f71a8c8661290e9a6bbebdf82ea77efa884881f68f4688fabfd10c36bc5d6207e4689fcd5ce96d0daf54fea9b6521ab0cf1c
diff --git a/dev-ruby/process_executer/process_executer-3.2.4.ebuild b/dev-ruby/process_executer/process_executer-3.2.4.ebuild
new file mode 100644
index 000000000000..21f983e97d51
--- /dev/null
+++ b/dev-ruby/process_executer/process_executer-3.2.4.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="CHANGELOG.md README.md"
+RUBY_FAKEGEM_GEMSPEC="process_executer.gemspec"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
+DESCRIPTION="An API for executing commands in a subprocess"
+HOMEPAGE="https://github.com/main-branch/process_executer"
+SRC_URI="https://github.com/main-branch/process_executer/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64"
+
+ruby_add_rdepend ">=dev-ruby/track_open_instances-0.1:0"
+
+all_ruby_prepare() {
+ sed -e '/simplecov/ s:^:#:' \
+ -e '/SimpleCov::RSpec/,/^end/ s:^:#:' \
+ -i spec/spec_helper.rb || die
+
+ sed -e "s:_relative ': './:" \
+ -e "s/__dir__/'.'/" \
+ -e 's/git ls-files -z/find * -print0/' \
+ -i ${RUBY_FAKEGEM_GEMSPEC} || die
+}