* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/
@ 2022-07-05 5:15 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2022-07-05 5:15 UTC (permalink / raw
To: gentoo-commits
commit: 337c9695711cc16ecffe7b45951450069e4dea27
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 5 04:59:14 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue Jul 5 05:15:36 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=337c9695
dev-ruby/simplecov_json_formatter: initial import of 0.1.4
Restrict tests because there are not many tests and they are strongly
bound to a specific simplecov version. They are also not packaged in the
gem.
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/simplecov_json_formatter/Manifest | 1 +
dev-ruby/simplecov_json_formatter/metadata.xml | 11 +++++++++++
.../simplecov_json_formatter-0.1.4.ebuild | 22 ++++++++++++++++++++++
3 files changed, 34 insertions(+)
diff --git a/dev-ruby/simplecov_json_formatter/Manifest b/dev-ruby/simplecov_json_formatter/Manifest
new file mode 100644
index 000000000000..1bb9762f6cd8
--- /dev/null
+++ b/dev-ruby/simplecov_json_formatter/Manifest
@@ -0,0 +1 @@
+DIST simplecov_json_formatter-0.1.4.gem 6656 BLAKE2B 57a03ca27911ed798ec2aa7e84a8d037e4565b0b9fec261d0a72d9276355ba27eb8fedea31195bc8b6e6b67b94b9a5f903f326720b862a46790bacd282e83c63 SHA512 1b90167acf4ad9565084488b455ee25ab8930a70a849191228e2868c15f29d257dc5256bb578e11351a942d887dcdeda9191a541cd0fb70e3f0eb8466fb13ddf
diff --git a/dev-ruby/simplecov_json_formatter/metadata.xml b/dev-ruby/simplecov_json_formatter/metadata.xml
new file mode 100644
index 000000000000..0670a7dfae0d
--- /dev/null
+++ b/dev-ruby/simplecov_json_formatter/metadata.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://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">codeclimate-community/simplecov_json_formatter</remote-id>
+ </upstream>
+</pkgmetadata>
diff --git a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
new file mode 100644
index 000000000000..5201e28824d9
--- /dev/null
+++ b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30 ruby31"
+
+RUBY_FAKEGEM_BINWRAP=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
+DESCRIPTION="JSON formatter for SimpleCov"
+HOMEPAGE="https://github.com/codeclimate-community/simplecov_json_formatter"
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~riscv"
+SLOT="$(ver_cut 1)"
+IUSE="doc"
+
+# Not packaged in the gem and very fragile for e.g. simplecov versions
+RESTRICT="test"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/
@ 2023-03-21 5:21 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2023-03-21 5:21 UTC (permalink / raw
To: gentoo-commits
commit: 5460d227460342a6da0f9308a974edb0ad6fcdba
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 20 15:23:28 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue Mar 21 05:21:27 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5460d227
dev-ruby/simplecov_json_formatter: enable ruby32
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
.../simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
index 5201e28824d9..7adae99a8881 100644
--- a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
+++ b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.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="ruby26 ruby27 ruby30 ruby31"
+USE_RUBY="ruby27 ruby30 ruby31 ruby32"
RUBY_FAKEGEM_BINWRAP=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/
@ 2023-09-10 4:42 Robin H. Johnson
0 siblings, 0 replies; 11+ messages in thread
From: Robin H. Johnson @ 2023-09-10 4:42 UTC (permalink / raw
To: gentoo-commits
commit: 1c7c3a67fd2b589d81d091592947b76ad5535f42
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 10 04:40:37 2023 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Sun Sep 10 04:42:33 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c7c3a67
dev-ruby/simplecov_json_formatter: builds on x86
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
index 7adae99a8881..ed945ab79881 100644
--- a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
+++ b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="JSON formatter for SimpleCov"
HOMEPAGE="https://github.com/codeclimate-community/simplecov_json_formatter"
LICENSE="MIT"
-KEYWORDS="~amd64 ~riscv"
+KEYWORDS="~amd64 ~riscv ~x86"
SLOT="$(ver_cut 1)"
IUSE="doc"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/
@ 2023-09-10 14:27 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2023-09-10 14:27 UTC (permalink / raw
To: gentoo-commits
commit: 04eaa0e00309fef67f0c43173d7bccd84309da77
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 10 14:26:54 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 10 14:26:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04eaa0e0
dev-ruby/simplecov_json_formatter: Keyword 0.1.4 arm64, #913930
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
index ed945ab79881..2228453ba6e2 100644
--- a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
+++ b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="JSON formatter for SimpleCov"
HOMEPAGE="https://github.com/codeclimate-community/simplecov_json_formatter"
LICENSE="MIT"
-KEYWORDS="~amd64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
SLOT="$(ver_cut 1)"
IUSE="doc"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/
@ 2023-12-31 9:21 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2023-12-31 9:21 UTC (permalink / raw
To: gentoo-commits
commit: a8dd4c418425d1b60275a3a44bee99b6d7757180
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 31 09:18:23 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Dec 31 09:18:23 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8dd4c41
dev-ruby/simplecov_json_formatter: enable ruby33
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
index 2228453ba6e2..7ca5c11b4f4c 100644
--- a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
+++ b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
@@ -2,7 +2,7 @@
# 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_BINWRAP=""
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/
@ 2024-06-25 3:51 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-06-25 3:51 UTC (permalink / raw
To: gentoo-commits
commit: 3f9594ff70562587373971cb841d7baa8cdea6a9
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 25 03:50:24 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 03:50:24 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f9594ff
dev-ruby/simplecov_json_formatter: Stabilize 0.1.4 x86, #934317
Signed-off-by: Sam James <sam <AT> gentoo.org>
.../simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
index 7ca5c11b4f4c..d2cac20f8e21 100644
--- a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
+++ b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -14,7 +14,7 @@ DESCRIPTION="JSON formatter for SimpleCov"
HOMEPAGE="https://github.com/codeclimate-community/simplecov_json_formatter"
LICENSE="MIT"
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm64 ~riscv x86"
SLOT="$(ver_cut 1)"
IUSE="doc"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/
@ 2024-06-25 3:52 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-06-25 3:52 UTC (permalink / raw
To: gentoo-commits
commit: 9095574fd060c9a184364304e90ec69688aacdfa
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 25 03:51:26 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 03:51:26 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9095574f
dev-ruby/simplecov_json_formatter: Stabilize 0.1.4 amd64, #934317
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
index d2cac20f8e21..7dc8bea0df25 100644
--- a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
+++ b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="JSON formatter for SimpleCov"
HOMEPAGE="https://github.com/codeclimate-community/simplecov_json_formatter"
LICENSE="MIT"
-KEYWORDS="~amd64 ~arm64 ~riscv x86"
+KEYWORDS="amd64 ~arm64 ~riscv x86"
SLOT="$(ver_cut 1)"
IUSE="doc"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/
@ 2024-08-07 12:09 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-08-07 12:09 UTC (permalink / raw
To: gentoo-commits
commit: 0b0507890853ff1a8b379312d7de93b6bc61e6e6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 7 12:05:13 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 7 12:06:25 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b050789
dev-ruby/simplecov_json_formatter: Keyword 0.1.4 ppc64, #934881
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
index 762233e0f685..cb56caa20efc 100644
--- a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
+++ b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="JSON formatter for SimpleCov"
HOMEPAGE="https://github.com/codeclimate-community/simplecov_json_formatter"
LICENSE="MIT"
-KEYWORDS="amd64 ~arm64 ~hppa ~riscv x86"
+KEYWORDS="amd64 ~arm64 ~hppa ~ppc64 ~riscv x86"
SLOT="$(ver_cut 1)"
IUSE="doc"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/
@ 2024-08-07 12:09 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-08-07 12:09 UTC (permalink / raw
To: gentoo-commits
commit: 331ca6864c345b234db23835f17bd16856258d59
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 7 12:05:18 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 7 12:06:28 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=331ca686
dev-ruby/simplecov_json_formatter: Keyword 0.1.4 ppc, #934881
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
index cb56caa20efc..f17c6c4cbab3 100644
--- a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
+++ b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="JSON formatter for SimpleCov"
HOMEPAGE="https://github.com/codeclimate-community/simplecov_json_formatter"
LICENSE="MIT"
-KEYWORDS="amd64 ~arm64 ~hppa ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv x86"
SLOT="$(ver_cut 1)"
IUSE="doc"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/
@ 2024-08-07 12:09 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-08-07 12:09 UTC (permalink / raw
To: gentoo-commits
commit: 5e580542e5829d0dfc5a50a177d0ab11173feef6
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 7 12:05:25 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 7 12:06:31 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e580542
dev-ruby/simplecov_json_formatter: Keyword 0.1.4 sparc, #934881
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
index f17c6c4cbab3..0758421d0580 100644
--- a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
+++ b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="JSON formatter for SimpleCov"
HOMEPAGE="https://github.com/codeclimate-community/simplecov_json_formatter"
LICENSE="MIT"
-KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
SLOT="$(ver_cut 1)"
IUSE="doc"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/
@ 2024-08-07 12:09 Sam James
0 siblings, 0 replies; 11+ messages in thread
From: Sam James @ 2024-08-07 12:09 UTC (permalink / raw
To: gentoo-commits
commit: d97a14505ba7cc902b04be0f96e88332c1147c84
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 7 12:08:11 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 7 12:08:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d97a1450
dev-ruby/simplecov_json_formatter: Keyword 0.1.4 arm, #934881
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
index 0758421d0580..b7b0ce1bd2c4 100644
--- a/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
+++ b/dev-ruby/simplecov_json_formatter/simplecov_json_formatter-0.1.4.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="JSON formatter for SimpleCov"
HOMEPAGE="https://github.com/codeclimate-community/simplecov_json_formatter"
LICENSE="MIT"
-KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
SLOT="$(ver_cut 1)"
IUSE="doc"
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-08-07 12:09 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-25 3:51 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/simplecov_json_formatter/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2024-08-07 12:09 Sam James
2024-08-07 12:09 Sam James
2024-08-07 12:09 Sam James
2024-08-07 12:09 Sam James
2024-06-25 3:52 Sam James
2023-12-31 9:21 Hans de Graaff
2023-09-10 14:27 Sam James
2023-09-10 4:42 Robin H. Johnson
2023-03-21 5:21 Hans de Graaff
2022-07-05 5:15 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