From: "Hans de Graaff" <graaff@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/fakefs/
Date: Mon, 06 Oct 2025 11:37:58 +0000 (UTC) [thread overview]
Message-ID: <1759750651.9ccd42f626e871c4b5f33bf357f1e34e3deecbd5.graaff@gentoo> (raw)
commit: 9ccd42f626e871c4b5f33bf357f1e34e3deecbd5
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 5 07:44:19 2025 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Oct 6 11:37:31 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ccd42f6
dev-ruby/fakefs: add 3.0.4
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/fakefs/Manifest | 1 +
dev-ruby/fakefs/fakefs-3.0.4.ebuild | 52 +++++++++++++++++++++++++++++++++++++
2 files changed, 53 insertions(+)
diff --git a/dev-ruby/fakefs/Manifest b/dev-ruby/fakefs/Manifest
index 21414c3c3e4e..5c40b049831c 100644
--- a/dev-ruby/fakefs/Manifest
+++ b/dev-ruby/fakefs/Manifest
@@ -4,3 +4,4 @@ DIST fakefs-3.0.0.tar.gz 62480 BLAKE2B 28e73bf01066124fe5e7783551fbb6d73629ef97f
DIST fakefs-3.0.1.tar.gz 62629 BLAKE2B 508660807ac96457524061d62be2e8ad009f5fff31f0945ff976c68ddf6a5632fe2ba4655b446f615b74397268783171aaafd97896e215c0642f7848053b0403 SHA512 ef3c7aaa947c93fbcdd30bdba886d1d6cd9503678bd5dd37c4e5cb0841a13f6cb0e09f598a9e111cdfed5daeb5d34c2853037e956be84689218a2fc2a85ce03d
DIST fakefs-3.0.2.tar.gz 63165 BLAKE2B 36c7c15464bab1f75fe76141d45a6b77920f44ae1efbf2e48afea869dcc7171052dd02cee77d6bcf2dc92c71dacdb7cf176b536aa328d796e38f236d7b7c34bd SHA512 279e40e36c410fec4efd762d792d405754fa445d865d801f97949f4e01f995a7370f9ce81820741d12bc438527048cb3f93b89c5eb4dab9d104eff0386cd0255
DIST fakefs-3.0.3.tar.gz 63277 BLAKE2B a10dd352c0860833ae042a79bba668a199eea554cb113533ae646064a5259234d03a3fd6aed46c89b388b2f9bc95c228b2a1ec079f7461e1c14b68087c4636b2 SHA512 31d4b30b04e99af267a3dcde806aa0bdd14e61523cde7ee1473037f2f29aa7e8e5111486c511e63428a11f543045c27f8567c226cb642bdecab5d3386bc7704a
+DIST fakefs-3.0.4.tar.gz 63375 BLAKE2B dc196eba9ee84c1f112b6cfa571f2635348cc3d0888f8272e756beaab9d334bc902621933b7718be526a7d76a307435192531c332ef1e27091c2c9f36c244198 SHA512 51198fa56b3f7bc65e72c2f84cd28fef7b56ac7f0f5d51131cb71ee8106a7416c2f3da3d397845aaaf26335ff68c6eb2e1ae6128be699426d361080ab506ba3d
diff --git a/dev-ruby/fakefs/fakefs-3.0.4.ebuild b/dev-ruby/fakefs/fakefs-3.0.4.ebuild
new file mode 100644
index 000000000000..1682d5a82d8d
--- /dev/null
+++ b/dev-ruby/fakefs/fakefs-3.0.4.ebuild
@@ -0,0 +1,52 @@
+# 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_RECIPE_TEST="none"
+
+RUBY_FAKEGEM_EXTRADOC="CONTRIBUTORS README.md"
+
+RUBY_FAKEGEM_GEMSPEC="fakefs.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A fake filesystem. Use it in your tests"
+HOMEPAGE="https://github.com/fakefs/fakefs"
+SRC_URI="https://github.com/fakefs/fakefs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="$(ver_cut 1)"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+IUSE="test"
+
+ruby_add_bdepend "
+ test? (
+ >=dev-ruby/rspec-3.1:3
+ >=dev-ruby/maxitest-3.6:1
+ )"
+
+all_ruby_prepare() {
+ # Remove bundler
+ rm Gemfile || die
+
+ # Avoid unneeded minitest-rg dependency.
+ sed -i -e '1igem "maxitest"; gem "minitest", "~>5.5"' \
+ -e '/bundler/ s:^:#:' \
+ -e '/minitest\/rg/ s:^:#:' test/test_helper.rb || die
+
+ sed -i -e 's/git ls-files/find */' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+ # Avoid test that uses the console and hangs on user input
+ rm -f test/pry_test.rb || die
+
+ # Avoid a test broken by newer irb versions.
+ rm -f test/irb_test.rb || die
+}
+
+each_ruby_test() {
+ RSPEC_VERSION=3 ruby-ng_rspec
+ ${RUBY} -Ilib:.:test -e 'Dir["test/**/*_test.rb"].each{|f| require f}' || die
+}
next reply other threads:[~2025-10-06 11:38 UTC|newest]
Thread overview: 115+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-06 11:37 Hans de Graaff [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-10-06 11:37 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/fakefs/ Hans de Graaff
2025-09-01 12:23 Hans de Graaff
2025-08-27 12:26 Hans de Graaff
2025-08-03 12:23 Hans de Graaff
2025-07-17 8:01 Hans de Graaff
2025-05-17 12:08 Hans de Graaff
2025-03-23 18:04 Arthur Zamarin
2025-02-08 18:04 Sam James
2025-02-08 13:55 Arthur Zamarin
2025-02-08 12:04 Arthur Zamarin
2025-02-08 10:16 Hans de Graaff
2024-12-09 7:07 Hans de Graaff
2024-06-02 7:00 Hans de Graaff
2024-06-02 7:00 Hans de Graaff
2024-03-08 8:09 Hans de Graaff
2023-08-24 18:05 Arthur Zamarin
2023-08-21 5:58 Sam James
2023-07-24 13:39 Arthur Zamarin
2023-07-24 12:32 Jakov Smolić
2023-06-17 5:31 Hans de Graaff
2023-06-17 5:31 Hans de Graaff
2023-06-17 5:31 Hans de Graaff
2023-06-17 5:31 Hans de Graaff
2023-04-07 7:37 Hans de Graaff
2023-04-07 6:34 Hans de Graaff
2023-03-28 23:39 Sam James
2023-03-28 23:39 Sam James
2023-03-28 22:13 Sam James
2023-03-27 8:35 Sam James
2022-12-24 15:00 Hans de Graaff
2022-12-24 15:00 Hans de Graaff
2022-12-07 18:43 Sam James
2022-12-07 17:54 Sam James
2022-12-07 17:54 Sam James
2022-12-07 17:51 Sam James
2022-12-07 17:51 Sam James
2021-11-21 6:58 Hans de Graaff
2021-11-21 4:58 Arthur Zamarin
2021-11-17 9:02 Arthur Zamarin
2021-11-17 9:02 Arthur Zamarin
2021-11-09 21:49 Jakov Smolić
2021-11-09 14:16 Jakov Smolić
2021-10-09 7:27 Hans de Graaff
2021-07-06 6:27 Hans de Graaff
2020-12-08 7:43 Hans de Graaff
2020-08-21 8:36 Hans de Graaff
2020-06-09 17:07 Sergei Trofimovich
2020-06-07 7:36 Hans de Graaff
2020-04-20 5:04 Hans de Graaff
2020-03-31 15:41 Hans de Graaff
2020-01-11 7:41 Hans de Graaff
2019-05-24 7:06 Hans de Graaff
2019-05-23 13:13 Mikle Kolyada
2019-05-13 0:38 Thomas Deutschmann
2019-05-07 8:46 Tobias Klausmann
2019-05-04 6:50 Hans de Graaff
2019-04-17 11:54 Mikle Kolyada
2019-04-11 18:29 Hans de Graaff
2019-03-15 6:39 Hans de Graaff
2019-03-15 6:39 Hans de Graaff
2019-02-22 6:19 Hans de Graaff
2019-02-10 11:07 Hans de Graaff
2019-01-17 5:26 Hans de Graaff
2019-01-17 5:26 Hans de Graaff
2018-08-06 5:31 Hans de Graaff
2018-07-30 5:48 Hans de Graaff
2018-07-20 4:43 Hans de Graaff
2018-07-09 4:09 Hans de Graaff
2018-06-01 4:13 Hans de Graaff
2018-06-01 4:13 Hans de Graaff
2018-05-17 4:57 Hans de Graaff
2018-04-26 4:57 Hans de Graaff
2018-04-26 4:21 Matt Turner
2018-04-15 5:38 Hans de Graaff
2018-04-11 5:50 Hans de Graaff
2018-04-08 22:11 Matt Turner
2018-03-25 17:18 Markus Meier
2018-02-28 5:27 Hans de Graaff
2018-02-25 6:47 Hans de Graaff
2018-01-15 7:26 Hans de Graaff
2018-01-04 7:31 Hans de Graaff
2018-01-04 7:31 Hans de Graaff
2017-11-26 10:02 Hans de Graaff
2017-10-10 4:24 Hans de Graaff
2017-10-10 4:24 Hans de Graaff
2017-09-14 4:56 Hans de Graaff
2017-08-23 6:14 Hans de Graaff
2017-08-14 19:42 Hans de Graaff
2017-07-18 4:28 Markus Meier
2017-07-17 18:16 Hans de Graaff
2017-07-17 18:16 Hans de Graaff
2017-07-17 18:16 Hans de Graaff
2017-07-17 18:16 Hans de Graaff
2017-07-07 14:50 Agostino Sarubbo
2017-06-30 11:10 Agostino Sarubbo
2017-06-26 20:18 Tobias Klausmann
2017-06-23 8:33 Agostino Sarubbo
2017-05-30 4:51 Hans de Graaff
2017-04-09 5:00 Hans de Graaff
2017-04-09 5:00 Hans de Graaff
2017-01-26 6:07 Hans de Graaff
2017-01-26 6:07 Hans de Graaff
2016-12-13 6:53 Hans de Graaff
2016-12-13 6:53 Hans de Graaff
2016-11-13 7:17 Hans de Graaff
2016-10-17 5:23 Hans de Graaff
2016-10-06 6:05 Hans de Graaff
2016-06-30 5:21 Hans de Graaff
2016-06-30 5:21 Hans de Graaff
2016-06-30 5:21 Hans de Graaff
2016-03-10 5:48 Hans de Graaff
2016-03-10 5:48 Hans de Graaff
2016-02-27 7:00 Hans de Graaff
2016-01-23 7:47 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=1759750651.9ccd42f626e871c4b5f33bf357f1e34e3deecbd5.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