public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: games-emulation/vecx-jg/
@ 2023-01-15 14:16 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2023-01-15 14:16 UTC (permalink / raw
  To: gentoo-commits

commit:     06c63414c237e16689ba97b43526248e2ce395d3
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Wed Dec 28 01:20:23 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 15 14:16:14 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06c63414

games-emulation/vecx-jg: New package, v1.2.2

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

 games-emulation/vecx-jg/Manifest             |  1 +
 games-emulation/vecx-jg/metadata.xml         | 24 +++++++++++++++
 games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild | 46 ++++++++++++++++++++++++++++
 games-emulation/vecx-jg/vecx-jg-9999.ebuild  | 46 ++++++++++++++++++++++++++++
 4 files changed, 117 insertions(+)

diff --git a/games-emulation/vecx-jg/Manifest b/games-emulation/vecx-jg/Manifest
new file mode 100644
index 000000000000..f5bcfe15b07d
--- /dev/null
+++ b/games-emulation/vecx-jg/Manifest
@@ -0,0 +1 @@
+DIST vecx-1.2.2.tar.bz2 50154 BLAKE2B 33ca097213771d6e57ece20594e1472d1f98aabe1c9892c73b648baf0180f56e9bb11282a64f2bfdde17236e265fc7e226dec74a9ae1b736e4b94d6f87067a75 SHA512 adaf1b2706fa6e893191e0444d10934a80b25d5e6936a262be4b5dc0ae070577668909a6ac7c246294556e0bc4e72bb881ae6f29a727302907fd2c73fe8e5b98

diff --git a/games-emulation/vecx-jg/metadata.xml b/games-emulation/vecx-jg/metadata.xml
new file mode 100644
index 000000000000..d8cfced3e4a3
--- /dev/null
+++ b/games-emulation/vecx-jg/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+	<maintainer type="person" proxied="yes">
+		<email>orbea@riseup.net</email>
+		<name>orbea</name>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<longdescription>
+		Vecx JG is an emulator for the Vectrex. This is a fork
+		of the original, unmodified vecx sources made available
+		by Valavan Manohararajah. Many new features have been
+		added since the fork was created. The emulator now
+		contains a new renderer, save states, and support for
+		PSG and DAC based audio.
+	</longdescription>
+	<upstream>
+		<bugs-to>https://gitlab.com/jgemu/vecx/-/issues</bugs-to>
+		<remote-id type="gitlab">jgemu/vecx</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
new file mode 100644
index 000000000000..8c06c33177c5
--- /dev/null
+++ b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+MY_PN=${PN%-*}
+MY_P=${MY_PN}-${PV}
+DESCRIPTION="Jolly Good Fork of vecx"
+HOMEPAGE="https://gitlab.com/jgemu/vecx"
+if [[ "${PV}" == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.com/jgemu/${MY_PN}.git"
+else
+	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
+	S="${WORKDIR}/${MY_P}"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="1"
+
+DEPEND="
+	media-libs/jg:1=
+	media-libs/speexdsp
+"
+RDEPEND="
+	${DEPEND}
+	games-emulation/jgrf
+"
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_compile() {
+	emake CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_install() {
+	emake install \
+		DESTDIR="${D}" \
+		PREFIX="${EPREFIX}"/usr \
+		DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
+		LIBDIR="${EPREFIX}/usr/$(get_libdir)"
+}

diff --git a/games-emulation/vecx-jg/vecx-jg-9999.ebuild b/games-emulation/vecx-jg/vecx-jg-9999.ebuild
new file mode 100644
index 000000000000..8c06c33177c5
--- /dev/null
+++ b/games-emulation/vecx-jg/vecx-jg-9999.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+MY_PN=${PN%-*}
+MY_P=${MY_PN}-${PV}
+DESCRIPTION="Jolly Good Fork of vecx"
+HOMEPAGE="https://gitlab.com/jgemu/vecx"
+if [[ "${PV}" == *9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://gitlab.com/jgemu/${MY_PN}.git"
+else
+	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
+	S="${WORKDIR}/${MY_P}"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT"
+SLOT="1"
+
+DEPEND="
+	media-libs/jg:1=
+	media-libs/speexdsp
+"
+RDEPEND="
+	${DEPEND}
+	games-emulation/jgrf
+"
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_compile() {
+	emake CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_install() {
+	emake install \
+		DESTDIR="${D}" \
+		PREFIX="${EPREFIX}"/usr \
+		DOCDIR="${EPREFIX}"/usr/share/doc/${PF} \
+		LIBDIR="${EPREFIX}/usr/$(get_libdir)"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/vecx-jg/
@ 2023-02-22  9:32 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2023-02-22  9:32 UTC (permalink / raw
  To: gentoo-commits

commit:     413e84b538aac234a11b5636d2dc18c3f061e6d4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 22 09:30:27 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 22 09:30:27 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=413e84b5

games-emulation/vecx-jg: proxy orbea directly

I'll proxy directly.

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

 games-emulation/vecx-jg/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-emulation/vecx-jg/metadata.xml b/games-emulation/vecx-jg/metadata.xml
index d8cfced3e4a3..0f711d774493 100644
--- a/games-emulation/vecx-jg/metadata.xml
+++ b/games-emulation/vecx-jg/metadata.xml
@@ -5,9 +5,9 @@
 		<email>orbea@riseup.net</email>
 		<name>orbea</name>
 	</maintainer>
-	<maintainer type="project" proxied="proxy">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
+	<maintainer type="person" proxied="proxy">
+		<email>sam@gentoo.org</email>
+		<name>Sam James</name>
 	</maintainer>
 	<longdescription>
 		Vecx JG is an emulator for the Vectrex. This is a fork


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/vecx-jg/
@ 2023-09-13  3:20 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2023-09-13  3:20 UTC (permalink / raw
  To: gentoo-commits

commit:     fce26699d1a163f2f51a527f44a58fa66b1e668a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 13 03:19:43 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Sep 13 03:19:43 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fce26699

games-emulation/vecx-jg: Keyword 1.2.2 arm64, #891201

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

 games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
index 8c06c33177c5..d41f8842e9b9 100644
--- a/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
+++ b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,7 +15,7 @@ if [[ "${PV}" == *9999 ]] ; then
 else
 	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
 	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~arm64"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/vecx-jg/
@ 2023-09-17  8:56 Arthur Zamarin
  0 siblings, 0 replies; 9+ messages in thread
From: Arthur Zamarin @ 2023-09-17  8:56 UTC (permalink / raw
  To: gentoo-commits

commit:     82cce7cc7988e8c3174e974ec94e764edaa530e5
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 17 08:56:28 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Sep 17 08:56:39 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82cce7cc

games-emulation/vecx-jg: Keyword 1.2.2 x86, #891201

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

 games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
index d41f8842e9b9..59be8a9887b1 100644
--- a/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
+++ b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
@@ -15,7 +15,7 @@ if [[ "${PV}" == *9999 ]] ; then
 else
 	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
 	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64 ~arm64"
+	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/vecx-jg/
@ 2023-12-02  9:24 Arthur Zamarin
  0 siblings, 0 replies; 9+ messages in thread
From: Arthur Zamarin @ 2023-12-02  9:24 UTC (permalink / raw
  To: gentoo-commits

commit:     e6702e6a0a8743abc149870f3b7356caefc7de44
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Dec  2 09:23:10 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Dec  2 09:23:10 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6702e6a

games-emulation/vecx-jg: Keyword 1.2.2 ppc, #891201

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

 games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
index 59be8a9887b1..6182030e8633 100644
--- a/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
+++ b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
@@ -15,7 +15,7 @@ if [[ "${PV}" == *9999 ]] ; then
 else
 	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
 	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/vecx-jg/
@ 2023-12-03  7:42 Sam James
  0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2023-12-03  7:42 UTC (permalink / raw
  To: gentoo-commits

commit:     856d4c25dd8e4e4b92415bd002bd626b3bba6ccc
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec  3 07:41:35 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Dec  3 07:41:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=856d4c25

games-emulation/vecx-jg: Keyword 1.2.2 ppc64, #891201

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

 games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
index 6182030e8633..a659f06a16eb 100644
--- a/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
+++ b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
@@ -15,7 +15,7 @@ if [[ "${PV}" == *9999 ]] ; then
 else
 	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
 	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
+	KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/vecx-jg/
@ 2024-01-06 19:30 Viorel Munteanu
  0 siblings, 0 replies; 9+ messages in thread
From: Viorel Munteanu @ 2024-01-06 19:30 UTC (permalink / raw
  To: gentoo-commits

commit:     88dfaa5cf35078636f060b99bcb010f889c33b25
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Fri Jan  5 18:44:13 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Jan  6 19:29:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88dfaa5c

games-emulation/vecx-jg: Keyword 1.2.2 arm, #891201

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
index a659f06a16eb..0b16a1dacb1e 100644
--- a/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
+++ b/games-emulation/vecx-jg/vecx-jg-1.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,7 +15,7 @@ if [[ "${PV}" == *9999 ]] ; then
 else
 	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
 	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/vecx-jg/
@ 2024-02-24  7:06 Joonas Niilola
  0 siblings, 0 replies; 9+ messages in thread
From: Joonas Niilola @ 2024-02-24  7:06 UTC (permalink / raw
  To: gentoo-commits

commit:     8769f49c7bb7a0d33aa26b9cf3c018202d1f16f6
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Feb 24 00:20:14 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 07:06:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8769f49c

games-emulation/vecx-jg: sync keywords

Signed-off-by: orbea <orbea <AT> riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/35510
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 games-emulation/vecx-jg/vecx-jg-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-emulation/vecx-jg/vecx-jg-9999.ebuild b/games-emulation/vecx-jg/vecx-jg-9999.ebuild
index 8c06c33177c5..0b16a1dacb1e 100644
--- a/games-emulation/vecx-jg/vecx-jg-9999.ebuild
+++ b/games-emulation/vecx-jg/vecx-jg-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,7 +15,7 @@ if [[ "${PV}" == *9999 ]] ; then
 else
 	SRC_URI="https://gitlab.com/jgemu/${MY_PN}/-/archive/${PV}/${MY_P}.tar.bz2"
 	S="${WORKDIR}/${MY_P}"
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: games-emulation/vecx-jg/
@ 2024-02-24  7:06 Joonas Niilola
  0 siblings, 0 replies; 9+ messages in thread
From: Joonas Niilola @ 2024-02-24  7:06 UTC (permalink / raw
  To: gentoo-commits

commit:     b66a5c0d947308f453e33c953ccc2373519165e1
Author:     orbea <orbea <AT> riseup <DOT> net>
AuthorDate: Sat Feb 24 00:19:37 2024 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Sat Feb 24 07:06:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b66a5c0d

games-emulation/vecx-jg: update maintainers

Signed-off-by: orbea <orbea <AT> riseup.net>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 games-emulation/vecx-jg/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-emulation/vecx-jg/metadata.xml b/games-emulation/vecx-jg/metadata.xml
index 0f711d774493..d8cfced3e4a3 100644
--- a/games-emulation/vecx-jg/metadata.xml
+++ b/games-emulation/vecx-jg/metadata.xml
@@ -5,9 +5,9 @@
 		<email>orbea@riseup.net</email>
 		<name>orbea</name>
 	</maintainer>
-	<maintainer type="person" proxied="proxy">
-		<email>sam@gentoo.org</email>
-		<name>Sam James</name>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
 	</maintainer>
 	<longdescription>
 		Vecx JG is an emulator for the Vectrex. This is a fork


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

end of thread, other threads:[~2024-02-24  7:06 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-13  3:20 [gentoo-commits] repo/gentoo:master commit in: games-emulation/vecx-jg/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2024-02-24  7:06 Joonas Niilola
2024-02-24  7:06 Joonas Niilola
2024-01-06 19:30 Viorel Munteanu
2023-12-03  7:42 Sam James
2023-12-02  9:24 Arthur Zamarin
2023-09-17  8:56 Arthur Zamarin
2023-02-22  9:32 Sam James
2023-01-15 14:16 Sam James

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