* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/
@ 2019-10-27 9:12 Michał Górny
0 siblings, 0 replies; 11+ messages in thread
From: Michał Górny @ 2019-10-27 9:12 UTC (permalink / raw
To: gentoo-commits
commit: 83f5db2cac070fd5bb48f736829e4964f5a2e9a9
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Fri Oct 25 20:36:03 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Oct 27 09:12:01 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83f5db2c
dev-ruby/whole_history_rating: use ls instead of git ls-files
Closes: https://bugs.gentoo.org/698532
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13438
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild
index 709e0ffdac8..a9746bb09ab 100644
--- a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild
+++ b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild
@@ -24,3 +24,8 @@ ruby_add_bdepend "
dev-ruby/test-unit:2
)
"
+
+all_ruby_prepare (){
+ sed -i 's/git ls-files/ls -1/g' "${RUBY_FAKEGEM_GEMSPEC}" || die
+ default
+}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/
@ 2019-10-27 10:22 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2019-10-27 10:22 UTC (permalink / raw
To: gentoo-commits
commit: 75995818c2a35dae0a9c39fbbd374cfdd54ac9b8
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 27 10:21:49 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Oct 27 10:22:00 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75995818
dev-ruby/whole_history_rating: fix various issues
- install documentation
- run tests
- install default gemspec rather than tinkering with the gemspec file
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
.../whole_history_rating-0.1.2-r1.ebuild | 26 ++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
new file mode 100644
index 00000000000..76062cedbcc
--- /dev/null
+++ b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+USE_RUBY="ruby24 ruby25 ruby26"
+
+RUBY_FAKEGEM_TASK_TEST="test_units"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A pure ruby implementation of Remi Coulom's Whole-History Rating algorithm"
+HOMEPAGE="https://github.com/goshrine/${PN}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+ruby_add_bdepend "
+ test? (
+ dev-ruby/test-unit:2
+ )
+"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/
@ 2019-10-27 10:22 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2019-10-27 10:22 UTC (permalink / raw
To: gentoo-commits
commit: bb5459668242dd0219efeb689d37fabf7951b874
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 27 10:18:57 2019 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Oct 27 10:22:00 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb545966
dev-ruby/whole_history_rating: add ruby project as co-maintainer
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/whole_history_rating/metadata.xml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/dev-ruby/whole_history_rating/metadata.xml b/dev-ruby/whole_history_rating/metadata.xml
index 38d291344ad..b39a11c910d 100644
--- a/dev-ruby/whole_history_rating/metadata.xml
+++ b/dev-ruby/whole_history_rating/metadata.xml
@@ -9,6 +9,10 @@
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
+ <maintainer type="project">
+ <email>ruby@gentoo.org</email>
+ <name>Ruby project</name>
+ </maintainer>
<upstream>
<remote-id type="github">goshrine/whole_history_rating</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/
@ 2020-01-02 6:50 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2020-01-02 6:50 UTC (permalink / raw
To: gentoo-commits
commit: 312b201e91303c2f6382f4113c5a6f3f6d4682bd
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 2 06:36:27 2020 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Thu Jan 2 06:50:29 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=312b201e
dev-ruby/whole_history_rating: add ruby27
Package-Manager: Portage-2.3.79, Repoman-2.3.16
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
index 76062cedbcc..599a57c21a2 100644
--- a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
+++ b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-USE_RUBY="ruby24 ruby25 ruby26"
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
RUBY_FAKEGEM_TASK_TEST="test_units"
@@ -12,7 +12,7 @@ RUBY_FAKEGEM_EXTRADOC="README.md"
inherit ruby-fakegem
DESCRIPTION="A pure ruby implementation of Remi Coulom's Whole-History Rating algorithm"
-HOMEPAGE="https://github.com/goshrine/${PN}"
+HOMEPAGE="https://github.com/goshrine/whole_history_rating"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/
@ 2020-02-08 18:55 David Seifert
0 siblings, 0 replies; 11+ messages in thread
From: David Seifert @ 2020-02-08 18:55 UTC (permalink / raw
To: gentoo-commits
commit: 355fe0a08e73185a8beab52789fb9445f47248ce
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 8 18:54:47 2020 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Feb 8 18:54:47 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=355fe0a0
dev-ruby/whole_history_rating: [QA] Fix VariableInHomepage
Signed-off-by: David Seifert <soap <AT> gentoo.org>
dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild
index a9746bb09ab..2f926b2efee 100644
--- a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild
+++ b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild
@@ -11,7 +11,7 @@ RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
inherit ruby-fakegem
DESCRIPTION="A pure ruby implementation of Remi Coulom's Whole-History Rating algorithm"
-HOMEPAGE="https://github.com/goshrine/${PN}"
+HOMEPAGE="https://github.com/goshrine/whole_history_rating"
LICENSE="MIT"
SLOT="0"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/
@ 2020-09-06 6:48 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2020-09-06 6:48 UTC (permalink / raw
To: gentoo-commits
commit: 0d601db3f89df80345cc21c278c324d8c9fa610b
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 6 06:34:25 2020 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sun Sep 6 06:48:33 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d601db3
dev-ruby/whole_history_rating: cleanup
Package-Manager: Portage-3.0.4, Repoman-3.0.1
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
.../whole_history_rating-0.1.2.ebuild | 31 ----------------------
1 file changed, 31 deletions(-)
diff --git a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild
deleted file mode 100644
index f3d764e9d56..00000000000
--- a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby24 ruby25 ruby26"
-RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_EXTRADOC="README.md"
-RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A pure ruby implementation of Remi Coulom's Whole-History Rating algorithm"
-HOMEPAGE="https://github.com/goshrine/whole_history_rating"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-ruby_add_bdepend "
- test? (
- dev-ruby/test-unit:2
- )
-"
-
-all_ruby_prepare (){
- sed -i 's/git ls-files/ls -1/g' "${RUBY_FAKEGEM_GEMSPEC}" || die
- default
-}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/
@ 2022-04-16 7:08 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2022-04-16 7:08 UTC (permalink / raw
To: gentoo-commits
commit: 4cee344317a10ed4a57dd0a0ee541ae4b955d85d
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 16 06:58:08 2022 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Sat Apr 16 06:58:08 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cee3443
dev-ruby/whole_history_rating: enable ruby30, ruby31 and disable ruby24, ruby25
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
index 599a57c21a2a..d661760bac09 100644
--- a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
+++ b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-USE_RUBY="ruby24 ruby25 ruby26 ruby27"
+USE_RUBY="ruby26 ruby27 ruby30 ruby31"
RUBY_FAKEGEM_TASK_TEST="test_units"
@@ -19,6 +19,8 @@ SLOT="0"
KEYWORDS="~amd64"
IUSE="test"
+ruby_add_rdepend "dev-ruby/matrix"
+
ruby_add_bdepend "
test? (
dev-ruby/test-unit:2
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/
@ 2023-03-07 6:34 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2023-03-07 6:34 UTC (permalink / raw
To: gentoo-commits
commit: 10e9f89ca02cae9324d4863ce1f34b4a843aae80
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 6 19:05:55 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue Mar 7 06:34:51 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10e9f89c
dev-ruby/whole_history_rating: update EAPI 7 -> 8
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
.../whole_history_rating-0.1.2-r2.ebuild | 28 ++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild
new file mode 100644
index 000000000000..1eafbb48a090
--- /dev/null
+++ b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+
+RUBY_FAKEGEM_TASK_TEST="test_units"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A pure ruby implementation of Remi Coulom's Whole-History Rating algorithm"
+HOMEPAGE="https://github.com/goshrine/whole_history_rating"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+ruby_add_rdepend "dev-ruby/matrix"
+
+ruby_add_bdepend "
+ test? (
+ dev-ruby/test-unit:2
+ )
+"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/
@ 2023-06-20 4:38 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2023-06-20 4:38 UTC (permalink / raw
To: gentoo-commits
commit: 1bea9b1b1c4f1de6cc408e6d8904c7efba9d8bb7
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 20 04:36:21 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Tue Jun 20 04:38:07 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bea9b1b
dev-ruby/whole_history_rating: drop 0.1.2-r1
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
.../whole_history_rating-0.1.2-r1.ebuild | 28 ----------------------
1 file changed, 28 deletions(-)
diff --git a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
deleted file mode 100644
index d661760bac09..000000000000
--- a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-USE_RUBY="ruby26 ruby27 ruby30 ruby31"
-
-RUBY_FAKEGEM_TASK_TEST="test_units"
-
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A pure ruby implementation of Remi Coulom's Whole-History Rating algorithm"
-HOMEPAGE="https://github.com/goshrine/whole_history_rating"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-
-ruby_add_rdepend "dev-ruby/matrix"
-
-ruby_add_bdepend "
- test? (
- dev-ruby/test-unit:2
- )
-"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/
@ 2023-12-27 7:55 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2023-12-27 7:55 UTC (permalink / raw
To: gentoo-commits
commit: 28b28ee068eae8da8ba9cc00370a7f8c313ada0d
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Dec 27 07:43:55 2023 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Dec 27 07:54:59 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28b28ee0
dev-ruby/whole_history_rating: enable ruby33
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild
index 1eafbb48a090..ae2429ee2142 100644
--- a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild
+++ b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-USE_RUBY="ruby27 ruby30 ruby31 ruby32"
+USE_RUBY="ruby31 ruby32 ruby33"
RUBY_FAKEGEM_TASK_TEST="test_units"
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/
@ 2025-01-01 8:08 Hans de Graaff
0 siblings, 0 replies; 11+ messages in thread
From: Hans de Graaff @ 2025-01-01 8:08 UTC (permalink / raw
To: gentoo-commits
commit: f22d4ecf42a142a0a83b0783246218d638f67ce1
Author: Hans de Graaff <graaff <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 1 08:03:27 2025 +0000
Commit: Hans de Graaff <graaff <AT> gentoo <DOT> org>
CommitDate: Wed Jan 1 08:07:47 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f22d4ecf
dev-ruby/whole_history_rating: enable ruby34
Signed-off-by: Hans de Graaff <graaff <AT> gentoo.org>
dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild
index ae2429ee2142..3fbdcbdeb02b 100644
--- a/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild
+++ b/dev-ruby/whole_history_rating/whole_history_rating-0.1.2-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-USE_RUBY="ruby31 ruby32 ruby33"
+USE_RUBY="ruby31 ruby32 ruby33 ruby34"
RUBY_FAKEGEM_TASK_TEST="test_units"
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-01-01 8:08 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-20 4:38 [gentoo-commits] repo/gentoo:master commit in: dev-ruby/whole_history_rating/ Hans de Graaff
-- strict thread matches above, loose matches on Subject: below --
2025-01-01 8:08 Hans de Graaff
2023-12-27 7:55 Hans de Graaff
2023-03-07 6:34 Hans de Graaff
2022-04-16 7:08 Hans de Graaff
2020-09-06 6:48 Hans de Graaff
2020-02-08 18:55 David Seifert
2020-01-02 6:50 Hans de Graaff
2019-10-27 10:22 Hans de Graaff
2019-10-27 10:22 Hans de Graaff
2019-10-27 9:12 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox