public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-lang/inform/
@ 2021-11-02  8:27 Ionen Wolkens
  0 siblings, 0 replies; 7+ messages in thread
From: Ionen Wolkens @ 2021-11-02  8:27 UTC (permalink / raw
  To: gentoo-commits

commit:     a44a7c839ea3519df999b99fcf2e86fd8cd15e8e
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  2 07:24:54 2021 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Nov  2 08:25:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a44a7c83

dev-lang/inform: add 6.35_p4, EAPI5->8

May still need work, not familiar with this package and it
changed a few things around in the last 7 years.

Bug: https://bugs.gentoo.org/819627
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 dev-lang/inform/Manifest              |  1 +
 dev-lang/inform/inform-6.35_p4.ebuild | 51 +++++++++++++++++++++++++++++++++++
 dev-lang/inform/metadata.xml          |  3 +++
 3 files changed, 55 insertions(+)

diff --git a/dev-lang/inform/Manifest b/dev-lang/inform/Manifest
index fc608436e98..affbf7ed944 100644
--- a/dev-lang/inform/Manifest
+++ b/dev-lang/inform/Manifest
@@ -1 +1,2 @@
 DIST inform-6.33.1-b2.tar.gz 1822648 BLAKE2B e2ea59aa310b2f0122d1b834d98b0b827b945a8031a3e61c70bf502f7a746f43b81035cc22805ab351abf6f9df9ba898ea6ea83da863ef9aa313840ed974d725 SHA512 12cc10b7dae4118600a4d19d0aa44c3a7c93dfc8aa17bd56df7b9237f21df0ae99db6840eefaa5b11ff346369c6f6f2f128167b3479c8f540c29e3e36666c368
+DIST inform-6.35-r4.tar.gz 2307089 BLAKE2B 9864324fe29fe920e226a239f92f327678ed796e5f5a27b3814f62b1158673b2c14d6771abd7af6f9743bb0949c4c6de75a6b591337b0e99196f8ab4d9f0c9f7 SHA512 c30c7067786845e0c77783f7a03a151ae1238978f648f6036fe9535a33662c76abc11db21bab00fe60c4742cd4da46e4674081711b9b3852520bfb14c1b068a6

diff --git a/dev-lang/inform/inform-6.35_p4.ebuild b/dev-lang/inform/inform-6.35_p4.ebuild
new file mode 100644
index 00000000000..3b193b357e9
--- /dev/null
+++ b/dev-lang/inform/inform-6.35_p4.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+MY_P="${P/_p/-r}"
+
+DESCRIPTION="Design system for interactive fiction"
+HOMEPAGE="https://www.inform-fiction.org/"
+SRC_URI="https://ifarchive.org/if-archive/infocom/compilers/inform6/source/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="Artistic-2 Inform"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="emacs tools"
+# non-interactive tests use ruby, seem broken, and return true even on failure
+RESTRICT="test"
+
+RDEPEND="
+	tools? (
+		dev-lang/perl
+		dev-perl/DateTime
+	)"
+PDEPEND="emacs? ( app-emacs/inform-mode )"
+
+src_compile() {
+	tc-export CC
+
+	emake PREFIX="${EPREFIX}"/usr OPTS="${CFLAGS} ${CPPFLAGS}"
+}
+
+src_install() {
+	local emakeargs=(
+		PREFIX="${ED}"/usr
+		REAL_PREFIX="${EPREFIX}"/usr
+		MANDIR="${ED}"/usr/share/man/man1
+		PUNYDOCS="${ED}"/usr/share/doc/${PF}/punyinform
+		PUNYTESTS="${T}" # don't install tests
+	)
+
+	emake -j1 "${emakeargs[@]}" install
+
+	dodoc AUTHORS NEWS README.md VERSION docs/README*
+
+	use tools || rm "${ED}"/usr/bin/*blorb* || die
+
+	find "${ED}"/usr/share/doc \( -name Makefile -o -name 'custom.*' \) -delete || die
+}

diff --git a/dev-lang/inform/metadata.xml b/dev-lang/inform/metadata.xml
index e94045a8980..20f18c5cfb1 100644
--- a/dev-lang/inform/metadata.xml
+++ b/dev-lang/inform/metadata.xml
@@ -5,6 +5,9 @@
 		<email>games@gentoo.org</email>
 		<name>Gentoo Games Project</name>
 	</maintainer>
+	<use>
+		<flag name="tools">Install blorbtools for manipulating Blorb files</flag>
+	</use>
 	<upstream>
 		<remote-id type="gitlab">DavidGriffith/inform6unix</remote-id>
 	</upstream>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/inform/
@ 2021-11-02  8:27 Ionen Wolkens
  0 siblings, 0 replies; 7+ messages in thread
From: Ionen Wolkens @ 2021-11-02  8:27 UTC (permalink / raw
  To: gentoo-commits

commit:     6e2eb5c95c2c59339f17dbc33eab3210d0c3dd83
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  1 03:19:01 2021 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Nov  2 07:46:53 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e2eb5c9

dev-lang/inform: tidy and remove longdescription

Feels more like a history lesson and sales pitch than a description, all
while being a bit too long.

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 dev-lang/inform/metadata.xml | 44 ++++----------------------------------------
 1 file changed, 4 insertions(+), 40 deletions(-)

diff --git a/dev-lang/inform/metadata.xml b/dev-lang/inform/metadata.xml
index 2396a6450fa..7c730d47817 100644
--- a/dev-lang/inform/metadata.xml
+++ b/dev-lang/inform/metadata.xml
@@ -1,44 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="project">
-  <email>games@gentoo.org</email>
-  <name>Gentoo Games Project</name>
- </maintainer>
- <longdescription>
-A Design System for Interactive Fiction
-
-Just as film might be called a form of literature which needs technology to be 
-read (a cinema projector or a television set) and to be written (a camera), 
-interactive fiction is read with the aid of a computer. On this analogy, Inform 
-is a piece of software enabling any modern computer to be used as the camera, or 
-the film studio, to create works of interactive fiction. To read the resulting 
-works, you and your audience need only a simpler piece of software called an 
-interpreter.
-
-In this genre of fiction, the computer describes a world and the player types 
-instructions like touch the mirror for the protagonist character to follow; the 
-computer responds by describing the result, and so on until a story is told.
-
-Interactive fiction emerged from the old-style "adventure game" (c.1975) and 
-tends to be a playful genre, which must sometimes be teased out as though it were 
-a cryptic crossword puzzle. But this doesn't prevent it from being an artistic 
-medium, which has attracted (for instance) the former U.S. Poet Laureate, Robert 
-Pinsky, and the novelists Thomas M. Disch and Michael Crichton. An interactive 
-fiction is not a child's puzzle-book, with a maze on one page and a rebus on the 
-next, but nor is it a novel. Neither pure interaction nor pure fiction, it lies 
-in a strange and still largely unexplored land in between.
-
-Since its invention (by Graham Nelson in 1993), Inform has been used to design 
-some hundreds of works of interactive fiction, in eight languages, reviewed in 
-periodicals ranging in specialisation from XYZZYnews to The New York Times. It 
-accounts for around ten thousand postings per year to Internet newsgroups. 
-Commercially, Inform has been used as a multimedia games prototyping tool. 
-Academically, it has turned up in syllabuses and seminars from computer science 
-to theoretical architecture, and appears in books such as Cybertext: Perspectives 
-on Ergodic Literature (E. J. Aarseth, Johns Hopkins Press, 1997). Having started 
-as a revival of the then-disused Infocom adventure game format, the Z-Machine, 
-Inform came full circle when it produced Infocom's only text game of the 1990s: 
-Zork: The Undiscovered Underground, by Mike Berlyn and Marc Blank.
- </longdescription>
+	<maintainer type="project">
+		<email>games@gentoo.org</email>
+		<name>Gentoo Games Project</name>
+	</maintainer>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/inform/
@ 2021-11-02  8:27 Ionen Wolkens
  0 siblings, 0 replies; 7+ messages in thread
From: Ionen Wolkens @ 2021-11-02  8:27 UTC (permalink / raw
  To: gentoo-commits

commit:     cb6d0a25657464be4a988b9c10d92f7e0e4c8b1c
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  2 07:39:24 2021 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Nov  2 08:25:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb6d0a25

dev-lang/inform: EAPI5->8 old version, remove broken symlink

Wouldn't hurt to keep this version longer, preferably without
keeping EAPI-5. Trivial, so going straight-to-stable.

Closes: https://bugs.gentoo.org/723062
Closes: https://bugs.gentoo.org/819627
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 dev-lang/inform/inform-6.33.1_p2.ebuild | 26 ++++++++++++++++----------
 1 file changed, 16 insertions(+), 10 deletions(-)

diff --git a/dev-lang/inform/inform-6.33.1_p2.ebuild b/dev-lang/inform/inform-6.33.1_p2.ebuild
index 939c464d759..f07551c95d9 100644
--- a/dev-lang/inform/inform-6.33.1_p2.ebuild
+++ b/dev-lang/inform/inform-6.33.1_p2.ebuild
@@ -1,25 +1,31 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-MY_P=${P/_p/-b}
-DESCRIPTION="design system for interactive fiction"
-HOMEPAGE="http://www.inform-fiction.org/"
-SRC_URI="http://mirror.ifarchive.org/if-archive/infocom/compilers/inform6/source/${MY_P}.tar.gz"
+EAPI=8
+
+MY_P="${P/_p/-b}"
+
+DESCRIPTION="Design system for interactive fiction"
+HOMEPAGE="https://www.inform-fiction.org/"
+SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
 
 LICENSE="Artistic-2 Inform"
 SLOT="0"
 KEYWORDS="amd64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="emacs"
-PDEPEND="emacs? ( app-emacs/inform-mode )"
 
-S=${WORKDIR}/${MY_P}
+PDEPEND="emacs? ( app-emacs/inform-mode )"
 
 src_install() {
 	default
+
 	dodoc VERSION
+
 	docinto tutorial
 	dodoc tutor/README tutor/*.inf
-	mv "${ED}"/usr/share/${PN}/manual "${ED}"/usr/share/doc/${PF}/html
-	rmdir "${ED}"/usr/share/inform/{include,module}
+
+	mv "${ED}"/usr/share/{${PN}/manual,doc/${PF}/html} || die
+	rmdir "${ED}"/usr/share/inform/{include,module} || die
+	rm "${ED}"/usr/share/inform/6.33b2/include/SmartCantGo.h || die #723062
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/inform/
@ 2021-11-02  8:27 Ionen Wolkens
  0 siblings, 0 replies; 7+ messages in thread
From: Ionen Wolkens @ 2021-11-02  8:27 UTC (permalink / raw
  To: gentoo-commits

commit:     e69bc40dfe7670416f5031ea2bb7e4a306e672ba
Author:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  2 06:28:18 2021 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Tue Nov  2 07:46:54 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e69bc40d

dev-lang/inform: add gitlab remote-id

Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 dev-lang/inform/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-lang/inform/metadata.xml b/dev-lang/inform/metadata.xml
index 7c730d47817..e94045a8980 100644
--- a/dev-lang/inform/metadata.xml
+++ b/dev-lang/inform/metadata.xml
@@ -5,4 +5,7 @@
 		<email>games@gentoo.org</email>
 		<name>Gentoo Games Project</name>
 	</maintainer>
+	<upstream>
+		<remote-id type="gitlab">DavidGriffith/inform6unix</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/inform/
@ 2023-09-27 13:29 Arthur Zamarin
  0 siblings, 0 replies; 7+ messages in thread
From: Arthur Zamarin @ 2023-09-27 13:29 UTC (permalink / raw
  To: gentoo-commits

commit:     275d4e5537d6e1deffa58d8c44b4f0b4b0eb030f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 27 13:28:13 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 27 13:28:13 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=275d4e55

dev-lang/inform: Stabilize 6.35_p4 amd64, #914806

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

 dev-lang/inform/inform-6.35_p4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/inform/inform-6.35_p4.ebuild b/dev-lang/inform/inform-6.35_p4.ebuild
index 3b193b357e92..e9997f6c95c1 100644
--- a/dev-lang/inform/inform-6.35_p4.ebuild
+++ b/dev-lang/inform/inform-6.35_p4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="Artistic-2 Inform"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="emacs tools"
 # non-interactive tests use ruby, seem broken, and return true even on failure
 RESTRICT="test"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/inform/
@ 2023-09-28  4:21 Sam James
  0 siblings, 0 replies; 7+ messages in thread
From: Sam James @ 2023-09-28  4:21 UTC (permalink / raw
  To: gentoo-commits

commit:     6f5a12ca79aa13b0130d15d9bc20754b7190f2ac
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 28 04:20:41 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 28 04:20:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f5a12ca

dev-lang/inform: Stabilize 6.35_p4 x86, #914806

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

 dev-lang/inform/inform-6.35_p4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/inform/inform-6.35_p4.ebuild b/dev-lang/inform/inform-6.35_p4.ebuild
index e9997f6c95c1..56506b5a25f1 100644
--- a/dev-lang/inform/inform-6.35_p4.ebuild
+++ b/dev-lang/inform/inform-6.35_p4.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="Artistic-2 Inform"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="emacs tools"
 # non-interactive tests use ruby, seem broken, and return true even on failure
 RESTRICT="test"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-lang/inform/
@ 2024-09-15 13:53 Conrad Kostecki
  0 siblings, 0 replies; 7+ messages in thread
From: Conrad Kostecki @ 2024-09-15 13:53 UTC (permalink / raw
  To: gentoo-commits

commit:     de5090bdaf19bfc023daee50adf0cc357a4e047d
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Thu Sep  5 12:52:54 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Sun Sep 15 13:52:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de5090bd

dev-lang/inform: add 6.42_p4

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/38451
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-lang/inform/Manifest              |  1 +
 dev-lang/inform/inform-6.42_p4.ebuild | 52 +++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/dev-lang/inform/Manifest b/dev-lang/inform/Manifest
index affbf7ed9449..a73b14c98f15 100644
--- a/dev-lang/inform/Manifest
+++ b/dev-lang/inform/Manifest
@@ -1,2 +1,3 @@
 DIST inform-6.33.1-b2.tar.gz 1822648 BLAKE2B e2ea59aa310b2f0122d1b834d98b0b827b945a8031a3e61c70bf502f7a746f43b81035cc22805ab351abf6f9df9ba898ea6ea83da863ef9aa313840ed974d725 SHA512 12cc10b7dae4118600a4d19d0aa44c3a7c93dfc8aa17bd56df7b9237f21df0ae99db6840eefaa5b11ff346369c6f6f2f128167b3479c8f540c29e3e36666c368
 DIST inform-6.35-r4.tar.gz 2307089 BLAKE2B 9864324fe29fe920e226a239f92f327678ed796e5f5a27b3814f62b1158673b2c14d6771abd7af6f9743bb0949c4c6de75a6b591337b0e99196f8ab4d9f0c9f7 SHA512 c30c7067786845e0c77783f7a03a151ae1238978f648f6036fe9535a33662c76abc11db21bab00fe60c4742cd4da46e4674081711b9b3852520bfb14c1b068a6
+DIST inform-6.42-r4.tar.gz 2681740 BLAKE2B 00bf6870b6fa22c61a316731947d112a24fe2e47f79177988799b412a0a47b29886e09ef25d566bfda7ee6f2dadc2bfe5b39327d5a4dd8c98f1ea38ce0db09d2 SHA512 728d1005519bc7aeb5ba67eda57bab4b1de7425126db8d97bdd25b78b1c747bb529e1fe96d5cb72dbd3141ebb33f86da134a3d7209806806e0fc8b9082b14428

diff --git a/dev-lang/inform/inform-6.42_p4.ebuild b/dev-lang/inform/inform-6.42_p4.ebuild
new file mode 100644
index 000000000000..e63c60b0f3ae
--- /dev/null
+++ b/dev-lang/inform/inform-6.42_p4.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+MY_P="${P/_p/-r}"
+DESCRIPTION="Design system for interactive fiction"
+HOMEPAGE="https://www.inform-fiction.org/"
+SRC_URI="https://ifarchive.org/if-archive/infocom/compilers/inform6/source/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="Artistic-2 Inform"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="emacs tools"
+# non-interactive tests use ruby, seem broken, and return true even on failure
+RESTRICT="test"
+
+RDEPEND="
+	tools? (
+		dev-lang/perl
+		dev-perl/DateTime
+	)"
+PDEPEND="emacs? ( app-emacs/inform-mode )"
+
+src_compile() {
+	tc-export CC
+
+	emake PREFIX="${EPREFIX}"/usr OPTS="${CFLAGS} ${CPPFLAGS}"
+}
+
+src_install() {
+	local emakeargs=(
+		PREFIX="${ED}"/usr
+		REAL_PREFIX="${EPREFIX}"/usr
+		MANDIR="${ED}"/usr/share/man/man1
+		PUNYDOCS="${ED}"/usr/share/doc/${PF}/punyinform
+		PUNYTESTS="${T}" # don't install tests
+	)
+
+	emake -j1 "${emakeargs[@]}" install
+
+	dodoc AUTHORS NEWS README.md VERSION docs/README*
+
+	if ! use tools; then
+		rm "${ED}"/usr/bin/*blorb* || die
+	fi
+
+	find "${ED}"/usr/share/doc \( -name Makefile -o -name 'custom.*' \) -delete || die
+}


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

end of thread, other threads:[~2024-09-15 13:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-27 13:29 [gentoo-commits] repo/gentoo:master commit in: dev-lang/inform/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-09-15 13:53 Conrad Kostecki
2023-09-28  4:21 Sam James
2021-11-02  8:27 Ionen Wolkens
2021-11-02  8:27 Ionen Wolkens
2021-11-02  8:27 Ionen Wolkens
2021-11-02  8:27 Ionen Wolkens

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