From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bigdecimal/
Date: Wed, 08 Oct 2025 11:41:06 +0000 (UTC) [thread overview]
Message-ID: <1759923651.a4dede69d191f1b82f95d570fcde9ed49fc7ea2f.graaff@gentoo> (raw)
commit: a4dede69d191f1b82f95d570fcde9ed49fc7ea2f
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 8 09:51:21 2025 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Oct 8 11:40:51 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4dede69
dev-ruby/bigdecimal: add 3.3.0
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/bigdecimal/Manifest | 1 +
dev-ruby/bigdecimal/bigdecimal-3.3.0.ebuild | 35 +++++++++++++++++++++++++++++
2 files changed, 36 insertions(+)
diff --git a/dev-ruby/bigdecimal/Manifest b/dev-ruby/bigdecimal/Manifest
index ccf58bf10011..78f5088621dd 100644
--- a/dev-ruby/bigdecimal/Manifest
+++ b/dev-ruby/bigdecimal/Manifest
@@ -2,3 +2,4 @@ DIST bigdecimal-3.1.9.tar.gz 105616 BLAKE2B eebec5ce41907d39a22dbe016a534d0dff81
DIST bigdecimal-3.2.1.tar.gz 107845 BLAKE2B 47c8b653672444880ab220181c5198370ad10ccf907b3f988b97082a1a47fe3452cb5f7e589cee9fd143d00e30e89fa5a01eaf84603fc09eae31421bad1078a4 SHA512 764342e05bb0b1257d72a3984adc729e9ef8aa68016df7eb6a9fb4850041dca6ee1bac0307ae9727f96721fa0e805e9fc37476afdea3dabfca33ac26eab953bf
DIST bigdecimal-3.2.2.tar.gz 108377 BLAKE2B a09b488ee91b7354f7c1319bcadcce50f738c471acb3f1ab227c43817556613e028e805fd3a3cb61295972291501b7a8848ccfb1a2363df6c75c4ad75e89364e SHA512 22ec356d6adbac49e5202897163081fa12ccfd50f618c3f490ffc9be4dd6edafbebe9b9f735f9fc8ce41b713d19f7a8bce60311d24ab132dd18fdb9d0614ebd7
DIST bigdecimal-3.2.3.tar.gz 108558 BLAKE2B c4c03995d87724cef2dbd2afe0c803dfef531edd22bc4317e8ea4c68b957ba55461287d337b35c24ab869e40f95ee130fb2fda073bd36a8fe0e9587f56b74e1b SHA512 f65fc293a786be81b9bd5bda0ddeb3e26105e96a99998345e183621eefc15f3871f123577b85514a24649a116be6cf39dc089617a15b1a2fa4dbb1793cee38dc
+DIST bigdecimal-3.3.0.tar.gz 109821 BLAKE2B 706438b5cf4856c49460d95c7a91c407745948a140f955e8aad283f302f5d467944a0a05b162cb5b92e3963ced2e8ac028e042c249386cd2dd656a3e2a3387ac SHA512 38ae099bcb2492a152dbed3385b8f01769e3b79546808f1b02cf2c5ee5a5e3a4453f8d63f340b46a555d4b76e01bef7832f6ab598c97ba9d01c1a5122cc22f07
diff --git a/dev-ruby/bigdecimal/bigdecimal-3.3.0.ebuild b/dev-ruby/bigdecimal/bigdecimal-3.3.0.ebuild
new file mode 100644
index 000000000000..7e2dfff6ade1
--- /dev/null
+++ b/dev-ruby/bigdecimal/bigdecimal-3.3.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
+}
next reply other threads:[~2025-10-08 11:41 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-08 11:41 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-10-17 12:30 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/bigdecimal/ Arthur Zamarin
2025-10-10 7:09 Hans de Graaff
2025-10-09 0:07 Sam James
2025-10-09 0:07 Sam James
2025-10-09 0:07 Sam James
2025-10-09 0:07 Sam James
2025-10-08 11:41 Hans de Graaff
2025-09-04 16:45 Hans de Graaff
2025-08-18 9:52 Hans de Graaff
2025-06-05 4:44 Hans de Graaff
2025-05-31 6:47 Hans de Graaff
2025-05-31 6:47 Hans de Graaff
2025-05-30 5:51 Hans de Graaff
2025-05-21 10:56 Arthur Zamarin
2025-05-20 21:04 Sam James
2025-05-18 17:57 Arthur Zamarin
2025-05-18 17:57 Arthur Zamarin
2025-05-18 9:39 Sam James
2025-05-18 9:38 Sam James
2024-12-25 5:25 Hans de Graaff
2024-12-25 5:25 Hans de Graaff
2024-10-13 20:39 Sam James
2024-10-10 16:20 Arthur Zamarin
2024-10-09 2:53 Jakov Smolić
2024-10-06 14:29 Arthur Zamarin
2024-10-06 11:21 Sam James
2024-10-06 11:12 Sam James
2024-10-06 11:11 Sam James
2024-09-11 15:04 Arthur Zamarin
2024-07-12 6:21 Ionen Wolkens
2024-07-02 3:56 Ionen Wolkens
2024-06-13 4:53 Sam James
2024-06-08 11:12 Arthur Zamarin
2024-05-08 5:06 Hans de Graaff
2024-05-08 5:06 Hans de Graaff
2024-03-15 6:08 Hans de Graaff
2024-01-19 8:08 Hans de Graaff
2023-12-27 20:59 Hans de Graaff
2023-12-14 6:30 Hans de Graaff
2023-10-13 5:37 Hans de Graaff
2023-10-13 5:37 Hans de Graaff
2023-09-02 6:19 Hans de Graaff
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1759923651.a4dede69d191f1b82f95d570fcde9ed49fc7ea2f.graaff@gentoo \
--to=graaff@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox