public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2019-05-26  5:41 Hans de Graaff
  0 siblings, 0 replies; 24+ messages in thread
From: Hans de Graaff @ 2019-05-26  5:41 UTC (permalink / raw
  To: gentoo-commits

commit:     c24d574d7a5edb11169fa7b84e7e287c3b834cfc
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun May 26 05:16:01 2019 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun May 26 05:41:27 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c24d574d

dev-ruby/minitest-around: import 0.5.0 from graaff overlay

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
Package-Manager: Portage-2.3.66, Repoman-2.3.11

 dev-ruby/minitest-around/Manifest                  |  1 +
 dev-ruby/minitest-around/metadata.xml              | 11 +++++++
 .../minitest-around/minitest-around-0.5.0.ebuild   | 34 ++++++++++++++++++++++
 3 files changed, 46 insertions(+)

diff --git a/dev-ruby/minitest-around/Manifest b/dev-ruby/minitest-around/Manifest
new file mode 100644
index 00000000000..b2daff26380
--- /dev/null
+++ b/dev-ruby/minitest-around/Manifest
@@ -0,0 +1 @@
+DIST minitest-around-0.5.0.gem 11776 BLAKE2B 1b1bacc229252e41412380d95e50ad05f918c13d37e7939f96fa19e4254c7f5222482d0f080355e5a900ff8ef89f768cc527c9b1c2644817e4d46842cbf83140 SHA512 8e57d436d39a41c5a08df6006a5cd46f92550844f01f9b6662918b9ba9536b74f6c83fcaea64180c7e025a1a14d4e037e1b17b84ae395a2b745e58f21ba5c752

diff --git a/dev-ruby/minitest-around/metadata.xml b/dev-ruby/minitest-around/metadata.xml
new file mode 100644
index 00000000000..4cbe1280bf7
--- /dev/null
+++ b/dev-ruby/minitest-around/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <maintainer type="project">
+    <email>ruby@gentoo.org</email>
+    <name>Gentoo Ruby Project</name>
+  </maintainer>
+  <upstream>
+    <remote-id type="github">splattael/minitest-around</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
new file mode 100644
index 00000000000..286620470fb
--- /dev/null
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Alternative for setup/teardown dance"
+HOMEPAGE="https://github.com/splattael/minitest-around"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/minitest:5"
+
+ruby_add_bdepend "test? ( dev-ruby/bundler dev-util/cucumber )"
+
+all_ruby_prepare() {
+	sed -i -e '/bump/ s:^:#:' \
+		-e '/ls-files/d' \
+		-e '/cucumber/ s/,.*$//' minitest-around.gemspec Rakefile || die
+}
+
+each_ruby_test() {
+	for f in test/*_{test,spec}.rb ; do
+		${RUBY} -S rake test:isolated TEST="${f}" || die
+	done
+}


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2020-07-12  6:22 Hans de Graaff
  0 siblings, 0 replies; 24+ messages in thread
From: Hans de Graaff @ 2020-07-12  6:22 UTC (permalink / raw
  To: gentoo-commits

commit:     606921328899e1d82a3963d5b24895b85eb27354
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 12 06:02:41 2020 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Jul 12 06:21:53 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60692132

dev-ruby/minitest-around: add ruby27

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
index 286620470fb..fe345c84dc3 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-USE_RUBY="ruby24 ruby25 ruby26"
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="README.md"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2020-07-27  2:09 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2020-07-27  2:09 UTC (permalink / raw
  To: gentoo-commits

commit:     b4bc4befd7d668ec6830ed69ee1ce7b73538e69d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 27 02:06:55 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Jul 27 02:06:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4bc4bef

dev-ruby/minitest-around: arm64 keyworded (bug #733784)

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
index fe345c84dc3..f10bc3cb786 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2021-10-10  0:09 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-10-10  0:09 UTC (permalink / raw
  To: gentoo-commits

commit:     2677fd8de17f99ff5a0de36ae91c861fd2750cdb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 00:07:37 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 00:07:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2677fd8d

dev-ruby/minitest-around: Keyword 0.5.0 ppc64, #816501

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
index f10bc3cb786..b6d8fa4959a 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="~amd64 ~arm64 ~ppc64"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2021-10-10 20:43 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-10-10 20:43 UTC (permalink / raw
  To: gentoo-commits

commit:     46f46a1ae42dec3f3f187fdbd62472af9c47e208
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 20:42:48 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 20:42:48 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f46a1a

dev-ruby/minitest-around: Keyword 0.5.0 ppc, #816501

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
index b6d8fa4959a..836bf2b9903 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2021-10-10 21:48 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-10-10 21:48 UTC (permalink / raw
  To: gentoo-commits

commit:     ec0b78c87adfa85f4c984a92170937524ec7e31d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 21:47:33 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 21:47:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec0b78c8

dev-ruby/minitest-around: Keyword 0.5.0 arm, #816501

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
index 836bf2b9903..7f7a304e037 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2021-10-10 23:45 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-10-10 23:45 UTC (permalink / raw
  To: gentoo-commits

commit:     d81656d33912dcf2dacdd76adb777a093008a836
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 10 23:43:50 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 10 23:43:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d81656d3

dev-ruby/minitest-around: Keyword 0.5.0 x86, #816501

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
index 7f7a304e037..6bcd6380383 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2021-10-31 18:03 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2021-10-31 18:03 UTC (permalink / raw
  To: gentoo-commits

commit:     d49cb5943915a8ef57ce53222d043dc88f9d0092
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Sun Oct 31 09:01:31 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Oct 31 18:02:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d49cb594

dev-ruby/minitest-around: keyworded 0.5.0 for hppa, bug #816501

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer <eike <AT> sf-mail.de>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
index 6bcd6380383..487cabee9de 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2021-11-08  2:51 Yixun Lan
  0 siblings, 0 replies; 24+ messages in thread
From: Yixun Lan @ 2021-11-08  2:51 UTC (permalink / raw
  To: gentoo-commits

commit:     6b6cb684604dc6443569bba336813ce8953cec60
Author:     Yongxiang Liang <tanekliang <AT> gmail <DOT> com>
AuthorDate: Fri Nov  5 11:33:54 2021 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Nov  8 02:49:13 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b6cb684

dev-ruby/minitest-around: keyword ~riscv

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Yongxiang Liang <tanekliang <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
index 487cabee9de..3650de71246 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2022-03-19 12:00 Hans de Graaff
  0 siblings, 0 replies; 24+ messages in thread
From: Hans de Graaff @ 2022-03-19 12:00 UTC (permalink / raw
  To: gentoo-commits

commit:     20404c54e3c08d440c7652c534a45750e8dfccb9
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 19 09:22:10 2022 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Mar 19 12:00:45 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20404c54

dev-ruby/minitest-around: add ruby30; EAPI 8

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 .../minitest-around-0.5.0-r1.ebuild                | 34 ++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
new file mode 100644
index 000000000000..7036fe227017
--- /dev/null
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Alternative for setup/teardown dance"
+HOMEPAGE="https://github.com/splattael/minitest-around"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/minitest:5"
+
+ruby_add_bdepend "test? ( dev-ruby/bundler dev-util/cucumber )"
+
+all_ruby_prepare() {
+	sed -i -e '/bump/ s:^:#:' \
+		-e '/ls-files/d' \
+		-e '/cucumber/ s/,.*$//' minitest-around.gemspec Rakefile || die
+}
+
+each_ruby_test() {
+	for f in test/*_{test,spec}.rb ; do
+		${RUBY} -S rake test:isolated TEST="${f}" || die
+	done
+}


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2022-04-18 12:14 Hans de Graaff
  0 siblings, 0 replies; 24+ messages in thread
From: Hans de Graaff @ 2022-04-18 12:14 UTC (permalink / raw
  To: gentoo-commits

commit:     34260d158a0baadea03e5e609e6fa4ab411fb068
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 18 07:37:27 2022 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Apr 18 12:14:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34260d15

dev-ruby/minitest-around: drop 0.5.0

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 .../minitest-around/minitest-around-0.5.0.ebuild   | 34 ----------------------
 1 file changed, 34 deletions(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
deleted file mode 100644
index 3650de712461..000000000000
--- a/dev-ruby/minitest-around/minitest-around-0.5.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby24 ruby25 ruby26 ruby27"
-
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Alternative for setup/teardown dance"
-HOMEPAGE="https://github.com/splattael/minitest-around"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
-IUSE=""
-
-ruby_add_rdepend "dev-ruby/minitest:5"
-
-ruby_add_bdepend "test? ( dev-ruby/bundler dev-util/cucumber )"
-
-all_ruby_prepare() {
-	sed -i -e '/bump/ s:^:#:' \
-		-e '/ls-files/d' \
-		-e '/cucumber/ s/,.*$//' minitest-around.gemspec Rakefile || die
-}
-
-each_ruby_test() {
-	for f in test/*_{test,spec}.rb ; do
-		${RUBY} -S rake test:isolated TEST="${f}" || die
-	done
-}


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2022-06-19  8:14 Agostino Sarubbo
  0 siblings, 0 replies; 24+ messages in thread
From: Agostino Sarubbo @ 2022-06-19  8:14 UTC (permalink / raw
  To: gentoo-commits

commit:     db443fdfd18a4314b67fe0972b741696af63238c
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 19 08:14:18 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Jun 19 08:14:18 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db443fdf

dev-ruby/minitest-around: arm stable wrt bug #852890

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="arm"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index 7036fe227017..d64cc5a40771 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2022-06-19  8:15 Agostino Sarubbo
  0 siblings, 0 replies; 24+ messages in thread
From: Agostino Sarubbo @ 2022-06-19  8:15 UTC (permalink / raw
  To: gentoo-commits

commit:     32d71a0878138a6e3eb16fdb73a2249b92e19e93
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 19 08:14:49 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Jun 19 08:14:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32d71a08

dev-ruby/minitest-around: arm64 stable wrt bug #852890

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="arm64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index d64cc5a40771..1a198b7f3b69 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2022-06-19  8:24 Agostino Sarubbo
  0 siblings, 0 replies; 24+ messages in thread
From: Agostino Sarubbo @ 2022-06-19  8:24 UTC (permalink / raw
  To: gentoo-commits

commit:     b3033d4c79c1235450fecdc9f40c073a0bdc2b5f
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 19 08:24:13 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sun Jun 19 08:24:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3033d4c

dev-ruby/minitest-around: x86 stable wrt bug #852890

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index 1a198b7f3b69..3739aeb168bb 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv x86"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2022-09-25  8:43 Hans de Graaff
  0 siblings, 0 replies; 24+ messages in thread
From: Hans de Graaff @ 2022-09-25  8:43 UTC (permalink / raw
  To: gentoo-commits

commit:     14af8cc7753760494f7cf1573b4b59d84d21b0e2
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 10 09:22:02 2022 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Sep 25 08:42:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14af8cc7

dev-ruby/minitest-around: enable ruby31 and disable ruby26

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index 3739aeb168bb..a728f0955a6e 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby26 ruby27 ruby30"
+USE_RUBY="ruby27 ruby30 ruby31"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="README.md"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2022-12-18  9:18 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2022-12-18  9:18 UTC (permalink / raw
  To: gentoo-commits

commit:     f305c9ea4d297b6420840a79c202c6b418802772
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 09:17:38 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 09:17:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f305c9ea

dev-ruby/minitest-around: Stabilize 0.5.0-r1 amd64, #852890

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index a728f0955a6e..14f82b57cc71 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv x86"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2022-12-18  9:27 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2022-12-18  9:27 UTC (permalink / raw
  To: gentoo-commits

commit:     f4e8748ef7ae88a78a05367291a0739387ed9bc6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 09:22:15 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 09:22:15 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e8748e

dev-ruby/minitest-around: Stabilize 0.5.0-r1 ppc64, #852890

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index 14f82b57cc71..f3c30466c911 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv x86"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2022-12-18  9:27 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2022-12-18  9:27 UTC (permalink / raw
  To: gentoo-commits

commit:     aa9845d4383236fec26d4cb3bcacb8cc489db7be
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 09:22:56 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 09:22:56 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa9845d4

dev-ruby/minitest-around: Stabilize 0.5.0-r1 ppc, #852890

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index f3c30466c911..d36f36233be0 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv x86"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2023-04-01 23:19 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2023-04-01 23:19 UTC (permalink / raw
  To: gentoo-commits

commit:     0851f5fdbf7389d8eb9892de39499145e72a6efb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  1 22:53:36 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Apr  1 23:18:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0851f5fd

dev-ruby/minitest-around: enable ruby32

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index d36f36233be0..e938dc872325 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby27 ruby30 ruby31"
+USE_RUBY="ruby27 ruby30 ruby31 ruby32"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="README.md"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2023-04-07 18:25 Sam James
  0 siblings, 0 replies; 24+ messages in thread
From: Sam James @ 2023-04-07 18:25 UTC (permalink / raw
  To: gentoo-commits

commit:     19aa3b494d71792c114c580b7665c5cd076575b2
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  7 18:23:39 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr  7 18:24:42 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19aa3b49

dev-ruby/minitest-around: Keyword 0.5.0-r1 sparc, #761550

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index e938dc872325..af2c338bf1ce 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/minitest:5"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2024-03-04  6:48 Hans de Graaff
  0 siblings, 0 replies; 24+ messages in thread
From: Hans de Graaff @ 2024-03-04  6:48 UTC (permalink / raw
  To: gentoo-commits

commit:     b0660eeedd4744f261a243722078e9a3fefdc090
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Mar  4 06:30:31 2024 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Mar  4 06:48:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0660eee

dev-ruby/minitest-around: enable ruby33

Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index af2c338bf1ce..b03436238718 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="README.md"


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2024-04-05 11:32 Hans de Graaff
  0 siblings, 0 replies; 24+ messages in thread
From: Hans de Graaff @ 2024-04-05 11:32 UTC (permalink / raw
  To: gentoo-commits

commit:     730d3cc0e5f6ee2ecfb36ad0be8236f2679cc584
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  5 11:31:56 2024 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Fri Apr  5 11:32:31 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=730d3cc0

dev-ruby/minitest-around: avoid loading bundler

Closes: https://bugs.gentoo.org/927955
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index b03436238718..6c919e19b92b 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/splattael/minitest-around"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-IUSE=""
+IUSE="test"
 
 ruby_add_rdepend "dev-ruby/minitest:5"
 
@@ -25,6 +25,8 @@ all_ruby_prepare() {
 	sed -i -e '/bump/ s:^:#:' \
 		-e '/ls-files/d' \
 		-e '/cucumber/ s/,.*$//' minitest-around.gemspec Rakefile || die
+	sed -e '/bundler/ s:^:#:' \
+		-i test/helper.rb || die
 }
 
 each_ruby_test() {


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2024-04-06  7:21 Hans de Graaff
  0 siblings, 0 replies; 24+ messages in thread
From: Hans de Graaff @ 2024-04-06  7:21 UTC (permalink / raw
  To: gentoo-commits

commit:     86f722e1857fcb23a7ca245448909e3f9fdf40bd
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Apr  6 06:25:44 2024 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Apr  6 07:21:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86f722e1

dev-ruby/minitest-around: more bundler fixes

The fix in 730d3cc0e5f6ee2ecfb36ad0be8236f2679cc584 was incomplete
because bundler also gets loaded in the Rakefile.

Closes: https://bugs.gentoo.org/928633
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index 6c919e19b92b..c1444d3859dc 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -26,7 +26,7 @@ all_ruby_prepare() {
 		-e '/ls-files/d' \
 		-e '/cucumber/ s/,.*$//' minitest-around.gemspec Rakefile || die
 	sed -e '/bundler/ s:^:#:' \
-		-i test/helper.rb || die
+		-i test/helper.rb Rakefile || die
 }
 
 each_ruby_test() {


^ permalink raw reply related	[flat|nested] 24+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/
@ 2024-06-06  5:25 Hans de Graaff
  0 siblings, 0 replies; 24+ messages in thread
From: Hans de Graaff @ 2024-06-06  5:25 UTC (permalink / raw
  To: gentoo-commits

commit:     97c215fe5f9fe605695e496e3556d96b94163cd6
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Jun  6 05:24:33 2024 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Jun  6 05:25:07 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97c215fe

dev-ruby/minitest-around: call the ruby version being tested

Bug: https://bugs.gentoo.org/928671
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
index c1444d3859dc..f4b8a550ce61 100644
--- a/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
+++ b/dev-ruby/minitest-around/minitest-around-0.5.0-r1.ebuild
@@ -29,6 +29,11 @@ all_ruby_prepare() {
 		-i test/helper.rb Rakefile || die
 }
 
+each_ruby_prepare() {
+	sed -e "/spawn_test/,/^end/ s:ruby:${RUBY}:" \
+		-i test/around_spec.rb || die
+}
+
 each_ruby_test() {
 	for f in test/*_{test,spec}.rb ; do
 		${RUBY} -S rake test:isolated TEST="${f}" || die


^ permalink raw reply related	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2024-06-06  5:25 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-19 12:00 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/minitest-around/ Hans de Graaff
  -- strict thread matches above, loose matches on Subject: below --
2024-06-06  5:25 Hans de Graaff
2024-04-06  7:21 Hans de Graaff
2024-04-05 11:32 Hans de Graaff
2024-03-04  6:48 Hans de Graaff
2023-04-07 18:25 Sam James
2023-04-01 23:19 Sam James
2022-12-18  9:27 Sam James
2022-12-18  9:27 Sam James
2022-12-18  9:18 Sam James
2022-09-25  8:43 Hans de Graaff
2022-06-19  8:24 Agostino Sarubbo
2022-06-19  8:15 Agostino Sarubbo
2022-06-19  8:14 Agostino Sarubbo
2022-04-18 12:14 Hans de Graaff
2021-11-08  2:51 Yixun Lan
2021-10-31 18:03 Sam James
2021-10-10 23:45 Sam James
2021-10-10 21:48 Sam James
2021-10-10 20:43 Sam James
2021-10-10  0:09 Sam James
2020-07-27  2:09 Sam James
2020-07-12  6:22 Hans de Graaff
2019-05-26  5:41 Hans de Graaff

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox