public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2021-12-04 10:20 Hans de Graaff
  0 siblings, 0 replies; 43+ messages in thread
From: Hans de Graaff @ 2021-12-04 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     7d3da2ed642f60741ea9273381075485eecdca39
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  4 10:09:15 2021 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Dec  4 10:20:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d3da2ed

app-text/ronn-ng: initial import of 0.9.1

Replacement for obsolete and unmaintained app-text/ronn.

Closes: https://bugs.gentoo.org/783765
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 app-text/ronn-ng/Manifest             |  1 +
 app-text/ronn-ng/metadata.xml         | 11 ++++++++++
 app-text/ronn-ng/ronn-ng-0.9.1.ebuild | 41 +++++++++++++++++++++++++++++++++++
 3 files changed, 53 insertions(+)

diff --git a/app-text/ronn-ng/Manifest b/app-text/ronn-ng/Manifest
new file mode 100644
index 000000000000..14f24d549d6e
--- /dev/null
+++ b/app-text/ronn-ng/Manifest
@@ -0,0 +1 @@
+DIST ronn-ng-0.9.1.gem 69120 BLAKE2B 9da30156104ef448c458199ee33fb5369f7d97c7bbeac8072567127b964456a34226bcc15f72d6f2875f524175d31ec9652a282b369e818748790cd07f290786 SHA512 5ad7dc426d9bc77bca86fbb06775a3b19f1b8d79f5a4331d117e9fa394e7a9c3b0440b70b993672d77a24f56f5da3ebd0e41a5183f4330707b7ddb83c9108bdf

diff --git a/app-text/ronn-ng/metadata.xml b/app-text/ronn-ng/metadata.xml
new file mode 100644
index 000000000000..34c0224a9905
--- /dev/null
+++ b/app-text/ronn-ng/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">apjanke/ronn-ng</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
new file mode 100644
index 000000000000..c35f4ad46bfc
--- /dev/null
+++ b/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27"
+
+RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGES README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Builds manuals in HTML and Unix man page format from Markdown"
+HOMEPAGE="https://github.com/apjanke/ronn-ng"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
+
+IUSE=""
+
+RDEPEND+="!app-text/ronn"
+
+ruby_add_rdepend "
+	>=dev-ruby/kramdown-2.1:2
+	>=dev-ruby/mustache-0.7.0
+	>=dev-ruby/nokogiri-1.9.0:0
+"
+
+each_ruby_prepare() {
+	# Make sure that we always use the right interpreter during tests.
+	sed -i -e "/output/ s:ronn:${RUBY} bin/ronn:" test/test_ronn.rb
+}
+
+all_ruby_compile() {
+	PATH="${S}/bin:${PATH}" rake man || die
+}
+
+all_ruby_install() {
+	all_fakegem_install
+
+	doman man/ronn.1 man/ronn-format.7
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2021-12-05  7:15 Hans de Graaff
  0 siblings, 0 replies; 43+ messages in thread
From: Hans de Graaff @ 2021-12-05  7:15 UTC (permalink / raw
  To: gentoo-commits

commit:     fc63a09ada9f914485d0a5c86e4ffe1f2224e876
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  5 07:15:09 2021 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Dec  5 07:15:09 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc63a09a

app-text/ronn-ng: fix mustache dependency

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

 app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild | 46 ++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
new file mode 100644
index 000000000000..7353defff61e
--- /dev/null
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27"
+
+RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGES README.md"
+RUBY_FAKEGEM_GEMSPEC="ronn-ng.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Builds manuals in HTML and Unix man page format from Markdown"
+HOMEPAGE="https://github.com/apjanke/ronn-ng"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
+
+IUSE=""
+
+RDEPEND+="!app-text/ronn"
+
+ruby_add_rdepend "
+	>=dev-ruby/kramdown-2.1:2
+	=dev-ruby/mustache-1*
+	>=dev-ruby/nokogiri-1.9.0:0
+"
+
+all_ruby_prepare() {
+	sed -i -e '/mustache/ s/0.7/1.0/' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_prepare() {
+	# Make sure that we always use the right interpreter during tests.
+	sed -i -e "/output/ s:ronn:${RUBY} bin/ronn:" test/test_ronn.rb
+}
+
+all_ruby_compile() {
+	PATH="${S}/bin:${PATH}" rake man || die
+}
+
+all_ruby_install() {
+	all_fakegem_install
+
+	doman man/ronn.1 man/ronn-format.7
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2021-12-05  7:41 Hans de Graaff
  0 siblings, 0 replies; 43+ messages in thread
From: Hans de Graaff @ 2021-12-05  7:41 UTC (permalink / raw
  To: gentoo-commits

commit:     1ef5e5ffa91374e5537b9ad3c39adb85976726a3
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  5 07:41:35 2021 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Dec  5 07:41:35 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ef5e5ff

app-text/ronn-ng: fix build dependencies

We need these dependencies also during build since we call rake and the
Rakefile requires them.

Closes: https://bugs.gentoo.org/828129
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
index 7353defff61e..421aa12c568d 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
@@ -20,12 +20,18 @@ IUSE=""
 
 RDEPEND+="!app-text/ronn"
 
-ruby_add_rdepend "
+DEPS="
 	>=dev-ruby/kramdown-2.1:2
-	=dev-ruby/mustache-1*
 	>=dev-ruby/nokogiri-1.9.0:0
 "
 
+ruby_add_rdepend "
+	=dev-ruby/mustache-1*
+	${DEPS}
+"
+
+ruby_add_bdepend "${DEPS}"
+
 all_ruby_prepare() {
 	sed -i -e '/mustache/ s/0.7/1.0/' ${RUBY_FAKEGEM_GEMSPEC} || die
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2021-12-18  2:10 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2021-12-18  2:10 UTC (permalink / raw
  To: gentoo-commits

commit:     01dde658786bc8df3c3fc7361159036defdf006a
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Fri Dec 17 13:14:04 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Dec 18 02:10:15 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01dde658

app-text/ronn-ng: keyword 0.9.1 for sparc, bug #828125

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

 app-text/ronn-ng/ronn-ng-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
index c35f4ad46bfc..4858edf7a04f 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2021-12-24 23:55 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2021-12-24 23:55 UTC (permalink / raw
  To: gentoo-commits

commit:     4e9f81acf8843b3b22a3a640402b0ae2ee1c30af
Author:     Rolf Eike Beer <eike <AT> sf-mail <DOT> de>
AuthorDate: Fri Dec 24 23:54:32 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 24 23:55:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e9f81ac

app-text/ronn-ng: keyword 0.9.1 for hppa, bug #828125

Package-Manager: Portage-3.0.28, 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>

 app-text/ronn-ng/ronn-ng-0.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
index 4858edf7a04f..d25040770266 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2022-02-10 10:20 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2022-02-10 10:20 UTC (permalink / raw
  To: gentoo-commits

commit:     b1ebc226021fee70fa51d4f80cd7be52fb1c846d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 10 10:20:19 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 10 10:20:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1ebc226

app-text/ronn-ng: Keyword 0.9.1 x86, #828125

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

 app-text/ronn-ng/ronn-ng-0.9.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
index d25040770266..6a13d881df77 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2022-02-28  7:06 Yixun Lan
  0 siblings, 0 replies; 43+ messages in thread
From: Yixun Lan @ 2022-02-28  7:06 UTC (permalink / raw
  To: gentoo-commits

commit:     fdeade002c29b3697e372685a42f4add03d5bb62
Author:     Alex Fan <alex.fan.q <AT> gmail <DOT> com>
AuthorDate: Mon Feb 28 01:28:48 2022 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Feb 28 07:02:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdeade00

app-text/ronn-ng: keyword 0.9.1-r1 for ~riscv

Signed-off-by: Alex Fan <alex.fan.q <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
index 421aa12c568d..cb124f0a703d 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2022-03-09 23:36 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2022-03-09 23:36 UTC (permalink / raw
  To: gentoo-commits

commit:     2c309c17d6f54331ca31ef73e065d9a7745ddb47
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar  9 23:24:32 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar  9 23:24:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c309c17

app-text/ronn-ng: forward ~hppa/~sparc/~x86

Bug: https://bugs.gentoo.org/828125
Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
index cb124f0a703d..efd0ff6ffd2c 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2022-05-09  4:47 Hans de Graaff
  0 siblings, 0 replies; 43+ messages in thread
From: Hans de Graaff @ 2022-05-09  4:47 UTC (permalink / raw
  To: gentoo-commits

commit:     b4770df38543c118a1bf199f86b941300f14504a
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun May  8 09:15:05 2022 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon May  9 04:47:08 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4770df3

app-text/ronn-ng: add ruby30

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

 app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild | 53 ++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
new file mode 100644
index 000000000000..17a0b8f79daf
--- /dev/null
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
@@ -0,0 +1,53 @@
+# 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_EXTRADOC="AUTHORS CHANGES README.md"
+RUBY_FAKEGEM_GEMSPEC="ronn-ng.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Builds manuals in HTML and Unix man page format from Markdown"
+HOMEPAGE="https://github.com/apjanke/ronn-ng"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86"
+
+IUSE=""
+
+RDEPEND+="!app-text/ronn"
+
+DEPS="
+	>=dev-ruby/kramdown-2.1:2
+	>=dev-ruby/nokogiri-1.9.0:0
+"
+
+ruby_add_rdepend "
+	=dev-ruby/mustache-1*
+	${DEPS}
+"
+
+ruby_add_bdepend "${DEPS}"
+
+all_ruby_prepare() {
+	sed -i -e '/mustache/ s/0.7/1.0/' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_prepare() {
+	# Make sure that we always use the right interpreter during tests.
+	sed -i -e "/output/ s:ronn:${RUBY} bin/ronn:" test/test_ronn.rb || die
+	sed -i -e "1igem 'psych', '~> 3.0'" Rakefile || die
+}
+
+all_ruby_compile() {
+	PATH="${S}/bin:${PATH}" rake man || die
+}
+
+all_ruby_install() {
+	all_fakegem_install
+
+	doman man/ronn.1 man/ronn-format.7
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2022-07-18 13:32 Hans de Graaff
  0 siblings, 0 replies; 43+ messages in thread
From: Hans de Graaff @ 2022-07-18 13:32 UTC (permalink / raw
  To: gentoo-commits

commit:     0ae387465a1a4b7e70f4b3667963d281b8d40512
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 18 08:54:16 2022 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Jul 18 13:32:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ae38746

app-text/ronn-ng: keyword 0.9.1-r2 for ~hppa, ~ppc, ~ppc64

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

 app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
index 17a0b8f79daf..52501cd297aa 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2022-07-18 13:32 Hans de Graaff
  0 siblings, 0 replies; 43+ messages in thread
From: Hans de Graaff @ 2022-07-18 13:32 UTC (permalink / raw
  To: gentoo-commits

commit:     33c0c95a556792405ac7545ae6fc64cefea5ca18
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 18 08:54:41 2022 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon Jul 18 13:32:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33c0c95a

app-text/ronn-ng: drop 0.9.1, 0.9.1-r1

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

 app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild | 52 --------------------------------
 app-text/ronn-ng/ronn-ng-0.9.1.ebuild    | 41 -------------------------
 2 files changed, 93 deletions(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
deleted file mode 100644
index efd0ff6ffd2c..000000000000
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r1.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby26 ruby27"
-
-RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGES README.md"
-RUBY_FAKEGEM_GEMSPEC="ronn-ng.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Builds manuals in HTML and Unix man page format from Markdown"
-HOMEPAGE="https://github.com/apjanke/ronn-ng"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
-
-IUSE=""
-
-RDEPEND+="!app-text/ronn"
-
-DEPS="
-	>=dev-ruby/kramdown-2.1:2
-	>=dev-ruby/nokogiri-1.9.0:0
-"
-
-ruby_add_rdepend "
-	=dev-ruby/mustache-1*
-	${DEPS}
-"
-
-ruby_add_bdepend "${DEPS}"
-
-all_ruby_prepare() {
-	sed -i -e '/mustache/ s/0.7/1.0/' ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-each_ruby_prepare() {
-	# Make sure that we always use the right interpreter during tests.
-	sed -i -e "/output/ s:ronn:${RUBY} bin/ronn:" test/test_ronn.rb
-}
-
-all_ruby_compile() {
-	PATH="${S}/bin:${PATH}" rake man || die
-}
-
-all_ruby_install() {
-	all_fakegem_install
-
-	doman man/ronn.1 man/ronn-format.7
-}

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
deleted file mode 100644
index 6a13d881df77..000000000000
--- a/app-text/ronn-ng/ronn-ng-0.9.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby26 ruby27"
-
-RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGES README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Builds manuals in HTML and Unix man page format from Markdown"
-HOMEPAGE="https://github.com/apjanke/ronn-ng"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-
-IUSE=""
-
-RDEPEND+="!app-text/ronn"
-
-ruby_add_rdepend "
-	>=dev-ruby/kramdown-2.1:2
-	>=dev-ruby/mustache-0.7.0
-	>=dev-ruby/nokogiri-1.9.0:0
-"
-
-each_ruby_prepare() {
-	# Make sure that we always use the right interpreter during tests.
-	sed -i -e "/output/ s:ronn:${RUBY} bin/ronn:" test/test_ronn.rb
-}
-
-all_ruby_compile() {
-	PATH="${S}/bin:${PATH}" rake man || die
-}
-
-all_ruby_install() {
-	all_fakegem_install
-
-	doman man/ronn.1 man/ronn-format.7
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-03-28 14:59 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-03-28 14:59 UTC (permalink / raw
  To: gentoo-commits

commit:     cb8fbf708dddc52c824d20834d9222c58888e32a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 14:57:44 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 14:58:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb8fbf70

app-text/ronn-ng: Stabilize 0.9.1-r2 ppc, #903283

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

 app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
index 52501cd297aa..040c6d82ab5e 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~riscv ~sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-03-28 14:59 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-03-28 14:59 UTC (permalink / raw
  To: gentoo-commits

commit:     89a1f01d7a8bf8bd693868a7c83bc22c43fc619f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 14:57:47 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 14:58:07 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89a1f01d

app-text/ronn-ng: Stabilize 0.9.1-r2 arm, #903283

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

 app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
index 040c6d82ab5e..46f8b89f8dc1 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ~ppc64 ~riscv ~sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-03-28 14:59 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-03-28 14:59 UTC (permalink / raw
  To: gentoo-commits

commit:     9447c8614200ef935ebc9450bbde60f148e0582f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 14:57:51 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 14:58:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9447c861

app-text/ronn-ng: Stabilize 0.9.1-r2 ppc64, #903283

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

 app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
index 46f8b89f8dc1..a42e275b5ec9 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-03-28 15:03 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-03-28 15:03 UTC (permalink / raw
  To: gentoo-commits

commit:     2c41fd63031fb425ba04285e666a521b320cfe1f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 15:03:09 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 15:03:09 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c41fd63

app-text/ronn-ng: Stabilize 0.9.1-r2 amd64, #903283

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

 app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
index a42e275b5ec9..7ec0bbf957dd 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-03-28 15:05 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-03-28 15:05 UTC (permalink / raw
  To: gentoo-commits

commit:     0ddc70b02aef413c0c1133e7d687959280df2913
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 15:04:31 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 15:04:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ddc70b0

app-text/ronn-ng: Stabilize 0.9.1-r2 x86, #903283

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

 app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
index 7ec0bbf957dd..587724364c60 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-03-28 16:25 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-03-28 16:25 UTC (permalink / raw
  To: gentoo-commits

commit:     cdfa8c9e463130a14071c7f9bad94f51697b85de
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 16:24:56 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 16:24:56 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdfa8c9e

app-text/ronn-ng: Stabilize 0.9.1-r2 sparc, #903283

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

 app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
index 587724364c60..2ef20763116f 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv sparc x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-03-28 16:27 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-03-28 16:27 UTC (permalink / raw
  To: gentoo-commits

commit:     59a62e629dd720ef65a5275b40483b561339e8a7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 16:26:40 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 16:26:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59a62e62

app-text/ronn-ng: Stabilize 0.9.1-r2 arm64, #903283

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

 app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
index 2ef20763116f..6e449818f541 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-04-07 14:35 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-04-07 14:35 UTC (permalink / raw
  To: gentoo-commits

commit:     29505f1fc5759040fe60d4324cfd1c3fa793e949
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr  7 14:34:34 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr  7 14:34:34 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29505f1f

app-text/ronn-ng: disable ruby26

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

 app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
index b7217b3bf77f..6aa2714d5808 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby26 ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby27 ruby30 ruby31 ruby32"
 
 RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGES README.md"
 RUBY_FAKEGEM_GEMSPEC="ronn-ng.gemspec"


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-04-10 22:17 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-04-10 22:17 UTC (permalink / raw
  To: gentoo-commits

commit:     e5dc56e952222f30a7755d74deb572bbc5410664
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 10 22:14:18 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 10 22:14:18 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5dc56e9

app-text/ronn-ng: Stabilize 0.9.1-r3 ppc64, #904144

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

 app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
index cb4a50724a80..d8509a5fb23f 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ppc ~ppc64 ~riscv sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-04-10 22:17 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-04-10 22:17 UTC (permalink / raw
  To: gentoo-commits

commit:     a0a379e5375c6711528000b3681c7a82b4567dcc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 10 22:14:11 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 10 22:14:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0a379e5

app-text/ronn-ng: Stabilize 0.9.1-r3 sparc, #904144

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

 app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
index 6aa2714d5808..3b13972ef12f 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-04-10 22:17 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-04-10 22:17 UTC (permalink / raw
  To: gentoo-commits

commit:     c1cf66dea57067192f51db2892bfa8cdb14810a1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 10 22:14:13 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 10 22:14:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1cf66de

app-text/ronn-ng: Stabilize 0.9.1-r3 ppc, #904144

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

 app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
index 3b13972ef12f..64b4f5e7af49 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~riscv sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-04-10 22:17 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-04-10 22:17 UTC (permalink / raw
  To: gentoo-commits

commit:     eda91cbbe708323bf561b57d852c53ab7900b292
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 10 22:14:15 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 10 22:14:15 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eda91cbb

app-text/ronn-ng: Stabilize 0.9.1-r3 arm, #904144

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

 app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
index 64b4f5e7af49..c03111bfe2ea 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~riscv sparc ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ~ppc64 ~riscv sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-04-10 22:17 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-04-10 22:17 UTC (permalink / raw
  To: gentoo-commits

commit:     bed2381d3b7ffa85c3b8227469e83cccbbee8d9a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 10 22:14:19 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 10 22:14:19 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bed2381d

app-text/ronn-ng: Stabilize 0.9.1-r3 x86, #904144

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

 app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
index d8509a5fb23f..b3292f781502 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv sparc x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-04-10 22:17 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-04-10 22:17 UTC (permalink / raw
  To: gentoo-commits

commit:     ab2b604f3aefc012d34fd8c4b6d0d5ccd2316f9d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 10 22:14:17 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 10 22:14:17 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab2b604f

app-text/ronn-ng: Stabilize 0.9.1-r3 amd64, #904144

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

 app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
index c03111bfe2ea..cb4a50724a80 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~hppa ppc ~ppc64 ~riscv sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ppc ~ppc64 ~riscv sparc ~x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-04-10 22:17 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2023-04-10 22:17 UTC (permalink / raw
  To: gentoo-commits

commit:     144abc8a180242f034d77cede7d5b5fef026f7d7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 10 22:14:20 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 10 22:14:20 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=144abc8a

app-text/ronn-ng: Stabilize 0.9.1-r3 arm64, #904144

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

 app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
index b3292f781502..ce4d63a7bebc 100644
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.9.1-r3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/apjanke/ronn-ng"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86"
 
 IUSE=""
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2023-05-15  7:31 Hans de Graaff
  0 siblings, 0 replies; 43+ messages in thread
From: Hans de Graaff @ 2023-05-15  7:31 UTC (permalink / raw
  To: gentoo-commits

commit:     dfbfec3f0b37b5148eb2dcab57d91f09c814dc20
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun May 14 06:32:41 2023 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Mon May 15 07:31:28 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfbfec3f

app-text/ronn-ng: drop 0.9.1-r2

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

 app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild | 53 --------------------------------
 1 file changed, 53 deletions(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild b/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
deleted file mode 100644
index 6e449818f541..000000000000
--- a/app-text/ronn-ng/ronn-ng-0.9.1-r2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-USE_RUBY="ruby26 ruby27 ruby30"
-
-RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGES README.md"
-RUBY_FAKEGEM_GEMSPEC="ronn-ng.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Builds manuals in HTML and Unix man page format from Markdown"
-HOMEPAGE="https://github.com/apjanke/ronn-ng"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86"
-
-IUSE=""
-
-RDEPEND+="!app-text/ronn"
-
-DEPS="
-	>=dev-ruby/kramdown-2.1:2
-	>=dev-ruby/nokogiri-1.9.0:0
-"
-
-ruby_add_rdepend "
-	=dev-ruby/mustache-1*
-	${DEPS}
-"
-
-ruby_add_bdepend "${DEPS}"
-
-all_ruby_prepare() {
-	sed -i -e '/mustache/ s/0.7/1.0/' ${RUBY_FAKEGEM_GEMSPEC} || die
-}
-
-each_ruby_prepare() {
-	# Make sure that we always use the right interpreter during tests.
-	sed -i -e "/output/ s:ronn:${RUBY} bin/ronn:" test/test_ronn.rb || die
-	sed -i -e "1igem 'psych', '~> 3.0'" Rakefile || die
-}
-
-all_ruby_compile() {
-	PATH="${S}/bin:${PATH}" rake man || die
-}
-
-all_ruby_install() {
-	all_fakegem_install
-
-	doman man/ronn.1 man/ronn-format.7
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-02-04  7:07 Hans de Graaff
  0 siblings, 0 replies; 43+ messages in thread
From: Hans de Graaff @ 2024-02-04  7:07 UTC (permalink / raw
  To: gentoo-commits

commit:     8e9e3af46512f2a942a15f911ddcd88666599ec1
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  4 07:07:02 2024 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Feb  4 07:07:43 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e9e3af4

app-text/ronn-ng: add 0.10.1

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

 app-text/ronn-ng/Manifest              |  1 +
 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 52 ++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/app-text/ronn-ng/Manifest b/app-text/ronn-ng/Manifest
index 14f24d549d6e..5a7001dc6a9c 100644
--- a/app-text/ronn-ng/Manifest
+++ b/app-text/ronn-ng/Manifest
@@ -1 +1,2 @@
+DIST ronn-ng-0.10.1.tar.gz 78696 BLAKE2B 1e56b90c5919e0a1af317da78161b34124268521fbc379fbba09ff9cb344073665460abc53fd961e4773ee444f33fba7e72ae3f6af84f8a170cfb1e89e557922 SHA512 3f6ee5355c7a19d5cb04c1b677028dd13ad2ff620acdb2e83d9b6f154a7b1e7b5a77ea0bcfbcef4bbb46a60b1c0fbc52fda079ff860c83a71f89b8fed0b83665
 DIST ronn-ng-0.9.1.gem 69120 BLAKE2B 9da30156104ef448c458199ee33fb5369f7d97c7bbeac8072567127b964456a34226bcc15f72d6f2875f524175d31ec9652a282b369e818748790cd07f290786 SHA512 5ad7dc426d9bc77bca86fbb06775a3b19f1b8d79f5a4331d117e9fa394e7a9c3b0440b70b993672d77a24f56f5da3ebd0e41a5183f4330707b7ddb83c9108bdf

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
new file mode 100644
index 000000000000..6eba932a6dd7
--- /dev/null
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGELOG.md README.md"
+RUBY_FAKEGEM_GEMSPEC="ronn-ng.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Builds manuals in HTML and Unix man page format from Markdown"
+HOMEPAGE="https://github.com/apjanke/ronn-ng"
+SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+RDEPEND+="!app-text/ronn"
+
+DEPS="
+	>=dev-ruby/kramdown-2.1:2
+	>=dev-ruby/kramdown-parser-gfm-1.0.1:1
+	>=dev-ruby/nokogiri-1.14.3:0
+"
+
+ruby_add_rdepend "
+	=dev-ruby/mustache-1*
+	${DEPS}
+"
+
+ruby_add_bdepend "${DEPS}"
+
+all_ruby_prepare() {
+	# Avoid tests with code blocks that are fragile for e.g. presence /
+	# absence of a source highlighter.
+	rm -f test/code_blocks*.ro{ff,nn} || die
+}
+
+each_ruby_prepare() {
+	# Make sure that we always use the right interpreter during tests
+	sed -i -e "/output/ s:ronn:${RUBY} bin/ronn:" test/test_ronn.rb || die
+	# ... and during the man page build.
+	sed -i -e "/sh 'ronn/s:ronn:${RUBY} bin/ronn:" Rakefile || die
+}
+
+all_ruby_install() {
+	all_fakegem_install
+
+	doman man/ronn.1 man/ronn-format.7
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-02-04 12:06 Jakov Smolić
  0 siblings, 0 replies; 43+ messages in thread
From: Jakov Smolić @ 2024-02-04 12:06 UTC (permalink / raw
  To: gentoo-commits

commit:     48b3aea307c64f2d97f211b6737d1f284b247211
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  4 12:06:36 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Feb  4 12:06:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48b3aea3

app-text/ronn-ng: Keyword 0.10.1 ppc64, #923754

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index 6eba932a6dd7..fab548dbea99 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="~amd64 ~arm64 ~ppc64"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-02-04 12:53 Jakov Smolić
  0 siblings, 0 replies; 43+ messages in thread
From: Jakov Smolić @ 2024-02-04 12:53 UTC (permalink / raw
  To: gentoo-commits

commit:     1eaa41ae7ce9ccd413974dfb7e93e9fee0f8874b
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  4 12:53:30 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Feb  4 12:53:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eaa41ae

app-text/ronn-ng: Keyword 0.10.1 arm, #923754

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index fab548dbea99..1587442141f5 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-02-04 13:28 Jakov Smolić
  0 siblings, 0 replies; 43+ messages in thread
From: Jakov Smolić @ 2024-02-04 13:28 UTC (permalink / raw
  To: gentoo-commits

commit:     6ea99bb61cb8d9b13a1fe166d5f405355c5abf02
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  4 13:28:30 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Sun Feb  4 13:28:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ea99bb6

app-text/ronn-ng: Keyword 0.10.1 riscv, #923754

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index 1587442141f5..346191ce83af 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-02-04 21:31 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2024-02-04 21:31 UTC (permalink / raw
  To: gentoo-commits

commit:     9062b9f31ca52d103552ee28a01f6af692bfaf39
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  4 21:30:41 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb  4 21:30:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9062b9f3

app-text/ronn-ng: Keyword 0.10.1 ppc, #923754

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

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index 346191ce83af..d3ad3e6c9d47 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-02-06 19:29 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2024-02-06 19:29 UTC (permalink / raw
  To: gentoo-commits

commit:     12b623ede449b250f363241816617245be6d5c19
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  6 19:29:04 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Feb  6 19:29:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12b623ed

app-text/ronn-ng: Keyword 0.10.1 hppa, #923754

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

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index d3ad3e6c9d47..1cb7a42b6be1 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-02-06 19:32 Arthur Zamarin
  0 siblings, 0 replies; 43+ messages in thread
From: Arthur Zamarin @ 2024-02-06 19:32 UTC (permalink / raw
  To: gentoo-commits

commit:     b1331497e91a8268f3aca10323b7d68a78e8f59e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  6 19:31:58 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Feb  6 19:31:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1331497

app-text/ronn-ng: Keyword 0.10.1 x86, #923754

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index 1cb7a42b6be1..16912ac52bcc 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-02-22  4:45 Ionen Wolkens
  0 siblings, 0 replies; 43+ messages in thread
From: Ionen Wolkens @ 2024-02-22  4:45 UTC (permalink / raw
  To: gentoo-commits

commit:     a49ef3590e9b3feba471689f418fa99e40c217fb
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Wed Feb 21 02:50:16 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Feb 22 04:45:30 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a49ef359

app-text/ronn-ng: Keyword 0.10.1 sparc, #923754

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index 16912ac52bcc..c1e9136fe5ea 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-04-28  8:35 Hans de Graaff
  0 siblings, 0 replies; 43+ messages in thread
From: Hans de Graaff @ 2024-04-28  8:35 UTC (permalink / raw
  To: gentoo-commits

commit:     ffc20c59269ca7f89b7c684c74e333bc543a4738
Author:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 28 07:38:04 2024 +0000
Commit:     Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Apr 28 08:35:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffc20c59

app-text/ronn-ng: enable ruby33

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

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index c1e9136fe5ea..d1fb0d67cc93 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
-USE_RUBY="ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
 
 RUBY_FAKEGEM_EXTRADOC="AUTHORS CHANGELOG.md README.md"
 RUBY_FAKEGEM_GEMSPEC="ronn-ng.gemspec"


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-08-16 10:23 Arthur Zamarin
  0 siblings, 0 replies; 43+ messages in thread
From: Arthur Zamarin @ 2024-08-16 10:23 UTC (permalink / raw
  To: gentoo-commits

commit:     d18ea2fe8726e8d7ed6d2b2431879a04319a480c
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 16 10:23:03 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 16 10:23:03 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d18ea2fe

app-text/ronn-ng: Stabilize 0.10.1 arm64, #936830

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index d1fb0d67cc93..a972f9234dd4 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-08-16 10:43 Arthur Zamarin
  0 siblings, 0 replies; 43+ messages in thread
From: Arthur Zamarin @ 2024-08-16 10:43 UTC (permalink / raw
  To: gentoo-commits

commit:     fe701a39663ccfc1613e933d13dced723b3079f5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 16 10:43:32 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 16 10:43:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe701a39

app-text/ronn-ng: Stabilize 0.10.1 arm, #936830

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index a972f9234dd4..b0cefa704af4 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-08-16 14:07 Arthur Zamarin
  0 siblings, 0 replies; 43+ messages in thread
From: Arthur Zamarin @ 2024-08-16 14:07 UTC (permalink / raw
  To: gentoo-commits

commit:     540c2b51afc49959c751f3b77306ea48be8be707
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 16 14:07:47 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 16 14:07:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=540c2b51

app-text/ronn-ng: Stabilize 0.10.1 amd64, #936830

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index b0cefa704af4..fb5c62822e35 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-08-16 16:41 Arthur Zamarin
  0 siblings, 0 replies; 43+ messages in thread
From: Arthur Zamarin @ 2024-08-16 16:41 UTC (permalink / raw
  To: gentoo-commits

commit:     6b962fe04011b0f73b5361bc38c59ec5c244ee23
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 16 16:41:46 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 16 16:41:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b962fe0

app-text/ronn-ng: Stabilize 0.10.1 ppc, #936830

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index fb5c62822e35..3d48b6e4c033 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ~ppc64 ~riscv ~sparc ~x86"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-08-16 16:41 Arthur Zamarin
  0 siblings, 0 replies; 43+ messages in thread
From: Arthur Zamarin @ 2024-08-16 16:41 UTC (permalink / raw
  To: gentoo-commits

commit:     e670ad35076f1ba494bf137e857942972ae9d081
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 16 16:41:48 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Aug 16 16:41:48 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e670ad35

app-text/ronn-ng: Stabilize 0.10.1 ppc64, #936830

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index 3d48b6e4c033..ed13c441791f 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc ~x86"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-08-18  0:32 Sam James
  0 siblings, 0 replies; 43+ messages in thread
From: Sam James @ 2024-08-18  0:32 UTC (permalink / raw
  To: gentoo-commits

commit:     fe75d090470cfac009fddc29c3aadcdf75834a3a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 18 00:31:57 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 18 00:31:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe75d090

app-text/ronn-ng: Stabilize 0.10.1 x86, #936830

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

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index ed13c441791f..50dffd57b057 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
 
 RDEPEND+="!app-text/ronn"
 


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

* [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/
@ 2024-08-31  8:33 Arthur Zamarin
  0 siblings, 0 replies; 43+ messages in thread
From: Arthur Zamarin @ 2024-08-31  8:33 UTC (permalink / raw
  To: gentoo-commits

commit:     50fdb54de2e2c068d06554a761014412101682eb
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 31 08:33:32 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Aug 31 08:33:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50fdb54d

app-text/ronn-ng: Stabilize 0.10.1 sparc, #936830

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-text/ronn-ng/ronn-ng-0.10.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
index 50dffd57b057..2ab027ac7026 100644
--- a/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
+++ b/app-text/ronn-ng/ronn-ng-0.10.1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/apjanke/ronn-ng/archive/refs/tags/v${PV}.tar.gz -> $
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv sparc x86"
 
 RDEPEND+="!app-text/ronn"
 


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

end of thread, other threads:[~2024-08-31  8:33 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-24 23:55 [gentoo-commits] repo/gentoo:master commit in: app-text/ronn-ng/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-08-31  8:33 Arthur Zamarin
2024-08-18  0:32 Sam James
2024-08-16 16:41 Arthur Zamarin
2024-08-16 16:41 Arthur Zamarin
2024-08-16 14:07 Arthur Zamarin
2024-08-16 10:43 Arthur Zamarin
2024-08-16 10:23 Arthur Zamarin
2024-04-28  8:35 Hans de Graaff
2024-02-22  4:45 Ionen Wolkens
2024-02-06 19:32 Arthur Zamarin
2024-02-06 19:29 Sam James
2024-02-04 21:31 Sam James
2024-02-04 13:28 Jakov Smolić
2024-02-04 12:53 Jakov Smolić
2024-02-04 12:06 Jakov Smolić
2024-02-04  7:07 Hans de Graaff
2023-05-15  7:31 Hans de Graaff
2023-04-10 22:17 Sam James
2023-04-10 22:17 Sam James
2023-04-10 22:17 Sam James
2023-04-10 22:17 Sam James
2023-04-10 22:17 Sam James
2023-04-10 22:17 Sam James
2023-04-10 22:17 Sam James
2023-04-07 14:35 Sam James
2023-03-28 16:27 Sam James
2023-03-28 16:25 Sam James
2023-03-28 15:05 Sam James
2023-03-28 15:03 Sam James
2023-03-28 14:59 Sam James
2023-03-28 14:59 Sam James
2023-03-28 14:59 Sam James
2022-07-18 13:32 Hans de Graaff
2022-07-18 13:32 Hans de Graaff
2022-05-09  4:47 Hans de Graaff
2022-03-09 23:36 Sam James
2022-02-28  7:06 Yixun Lan
2022-02-10 10:20 Sam James
2021-12-18  2:10 Sam James
2021-12-05  7:41 Hans de Graaff
2021-12-05  7:15 Hans de Graaff
2021-12-04 10:20 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