* [gentoo-commits] repo/gentoo:master commit in: sys-auth/microsoft-identity-broker/
@ 2024-07-09 14:52 James Le Cuirot
0 siblings, 0 replies; 6+ messages in thread
From: James Le Cuirot @ 2024-07-09 14:52 UTC (permalink / raw
To: gentoo-commits
commit: 4edae64ba784128becf6c83316b409a2168881c7
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 8 08:55:44 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Tue Jul 9 14:52:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4edae64b
sys-auth/microsoft-identity-broker: Add version 2.0.1
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
sys-auth/microsoft-identity-broker/Manifest | 1 +
.../microsoft-identity-broker-2.0.1.ebuild | 60 ++++++++++++++++++++++
2 files changed, 61 insertions(+)
diff --git a/sys-auth/microsoft-identity-broker/Manifest b/sys-auth/microsoft-identity-broker/Manifest
index c712e5f50e48..fc797897d322 100644
--- a/sys-auth/microsoft-identity-broker/Manifest
+++ b/sys-auth/microsoft-identity-broker/Manifest
@@ -1 +1,2 @@
DIST microsoft-identity-broker_2.0.0_amd64.deb 83941724 BLAKE2B 6e7c347cd466b4fb77841c4c19cf368538adf17a1b197fcf5a8ca6555f3660f8d6684d6bcb400441f9cc06f0765b26cf379d29a16f15d2f90da445d80f89ae89 SHA512 60535f64f867fcd748f550b4dd5a9bb29d527b3632dc7d44a72041ad36ccb691e762417bdc0230ead6ad8c0ab3099f0a343a5be7ab4c982fd3c27753712ac462
+DIST microsoft-identity-broker_2.0.1_amd64.deb 84379396 BLAKE2B 1e535ca26ba3736ac284ca1602b1c1ae9acd1d69f66ff17ab76477b7fa3dd5d6125a2ac6c9b651ca26d90592716d75de6aadb7ffa52f95d16930645224a9eb57 SHA512 88d389fbddbbb73c3b8ce7b943232069f23c36d74034dce070a301a5ce919934f0257cd5b5c70de382d9d5b08cd554ff9717d14de484e38d9a0eba68c7200cb6
diff --git a/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1.ebuild b/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1.ebuild
new file mode 100644
index 000000000000..f2f58f3974aa
--- /dev/null
+++ b/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit java-pkg-2 prefix systemd unpacker
+
+FAKE_OS="ubuntu-22.04"
+DESCRIPTION="Microsoft Authentication Broker to access a corporate environment"
+HOMEPAGE="https://learn.microsoft.com/mem/intune/"
+SRC_URI="https://packages.microsoft.com/ubuntu/22.04/prod/pool/main/${PN:0:1}/${PN}/${PN}_${PV}_amd64.deb"
+S="${WORKDIR}"
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+RESTRICT="bindist mirror"
+
+RDEPEND="
+ acct-user/microsoft-identity-broker
+ acct-group/microsoft-identity-broker
+ sys-apps/bubblewrap
+ sys-apps/dbus
+ virtual/jre:11
+"
+
+src_unpack() {
+ unpack_deb ${A}
+}
+
+src_configure() {
+ sed -i -r "s:^Exec(Start)?=.*/([^/]+):Exec\1=${EPREFIX}/usr/bin/\2:" \
+ usr/lib/systemd/*/*.service usr/share/dbus-1/*/*.service || die
+}
+
+src_install() {
+ newbin $(prefixify_ro "${FILESDIR}"/wrapper) microsoft-identity-broker
+ dosym microsoft-identity-broker /usr/bin/microsoft-identity-device-broker
+
+ java-pkg_dojar opt/microsoft/identity-broker/lib/*.jar
+
+ java-pkg_dolauncher microsoft-identity-broker \
+ --main com.microsoft.identity.broker.service.IdentityBrokerService \
+ --java_args '${MICROSOFT_IDENTITY_BROKER_OPTS}' \
+ -into /usr/share/${PN}
+
+ java-pkg_dolauncher microsoft-identity-device-broker \
+ --main com.microsoft.identity.broker.service.DeviceBrokerService \
+ --java_args '${MICROSOFT_IDENTITY_DEVICE_BROKER_OPTS}' \
+ -into /usr/share/${PN}
+
+ insinto /etc/microsoft-identity-broker
+ newins "${FILESDIR}/lsb-release-${FAKE_OS}" lsb-release
+ newins "${FILESDIR}/os-release-${FAKE_OS}" os-release
+
+ insinto /usr/share
+ doins -r usr/share/dbus-1
+
+ systemd_dounit usr/lib/systemd/system/*
+ systemd_douserunit usr/lib/systemd/user/*
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/microsoft-identity-broker/
@ 2024-08-14 22:14 James Le Cuirot
0 siblings, 0 replies; 6+ messages in thread
From: James Le Cuirot @ 2024-08-14 22:14 UTC (permalink / raw
To: gentoo-commits
commit: 4f595a657f8472cac29b3ca714f91d39cc3b9514
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 14 22:13:35 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 14 22:14:21 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f595a65
sys-auth/microsoft-identity-broker: Drop old 2.0.0
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
sys-auth/microsoft-identity-broker/Manifest | 1 -
.../microsoft-identity-broker-2.0.0.ebuild | 60 ----------------------
2 files changed, 61 deletions(-)
diff --git a/sys-auth/microsoft-identity-broker/Manifest b/sys-auth/microsoft-identity-broker/Manifest
index fe69b52d3463..45d36f36751d 100644
--- a/sys-auth/microsoft-identity-broker/Manifest
+++ b/sys-auth/microsoft-identity-broker/Manifest
@@ -1,2 +1 @@
-DIST microsoft-identity-broker_2.0.0_amd64.deb 83941724 BLAKE2B 6e7c347cd466b4fb77841c4c19cf368538adf17a1b197fcf5a8ca6555f3660f8d6684d6bcb400441f9cc06f0765b26cf379d29a16f15d2f90da445d80f89ae89 SHA512 60535f64f867fcd748f550b4dd5a9bb29d527b3632dc7d44a72041ad36ccb691e762417bdc0230ead6ad8c0ab3099f0a343a5be7ab4c982fd3c27753712ac462
DIST microsoft-identity-broker_2.0.1_amd64.deb 84382090 BLAKE2B 9870f2ca66555ebcd58efb56b08ebd7cd9cfde326e72e9b72c0d712f225a8fbd97c013a3f8ffacef69ae443cd95876673719b2982a40516e7d1013b62d33686f SHA512 be51d7dd08972d0b14da6866746cd9688b1235362b51840c5b9148f50a5520638209630221676b3c0d3e7bef770d3f95a827a42f30ac392a674df4de07256934
diff --git a/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.0.ebuild b/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.0.ebuild
deleted file mode 100644
index f2f58f3974aa..000000000000
--- a/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit java-pkg-2 prefix systemd unpacker
-
-FAKE_OS="ubuntu-22.04"
-DESCRIPTION="Microsoft Authentication Broker to access a corporate environment"
-HOMEPAGE="https://learn.microsoft.com/mem/intune/"
-SRC_URI="https://packages.microsoft.com/ubuntu/22.04/prod/pool/main/${PN:0:1}/${PN}/${PN}_${PV}_amd64.deb"
-S="${WORKDIR}"
-LICENSE="all-rights-reserved"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-RESTRICT="bindist mirror"
-
-RDEPEND="
- acct-user/microsoft-identity-broker
- acct-group/microsoft-identity-broker
- sys-apps/bubblewrap
- sys-apps/dbus
- virtual/jre:11
-"
-
-src_unpack() {
- unpack_deb ${A}
-}
-
-src_configure() {
- sed -i -r "s:^Exec(Start)?=.*/([^/]+):Exec\1=${EPREFIX}/usr/bin/\2:" \
- usr/lib/systemd/*/*.service usr/share/dbus-1/*/*.service || die
-}
-
-src_install() {
- newbin $(prefixify_ro "${FILESDIR}"/wrapper) microsoft-identity-broker
- dosym microsoft-identity-broker /usr/bin/microsoft-identity-device-broker
-
- java-pkg_dojar opt/microsoft/identity-broker/lib/*.jar
-
- java-pkg_dolauncher microsoft-identity-broker \
- --main com.microsoft.identity.broker.service.IdentityBrokerService \
- --java_args '${MICROSOFT_IDENTITY_BROKER_OPTS}' \
- -into /usr/share/${PN}
-
- java-pkg_dolauncher microsoft-identity-device-broker \
- --main com.microsoft.identity.broker.service.DeviceBrokerService \
- --java_args '${MICROSOFT_IDENTITY_DEVICE_BROKER_OPTS}' \
- -into /usr/share/${PN}
-
- insinto /etc/microsoft-identity-broker
- newins "${FILESDIR}/lsb-release-${FAKE_OS}" lsb-release
- newins "${FILESDIR}/os-release-${FAKE_OS}" os-release
-
- insinto /usr/share
- doins -r usr/share/dbus-1
-
- systemd_dounit usr/lib/systemd/system/*
- systemd_douserunit usr/lib/systemd/user/*
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/microsoft-identity-broker/
@ 2024-08-14 22:14 James Le Cuirot
0 siblings, 0 replies; 6+ messages in thread
From: James Le Cuirot @ 2024-08-14 22:14 UTC (permalink / raw
To: gentoo-commits
commit: 7aefd5934a8b44332ace10a7f499858adc3780e3
Author: Elaina Jones <133198355+elainajones <AT> users <DOT> noreply <DOT> github <DOT> com>
AuthorDate: Wed Aug 14 21:37:30 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Aug 14 22:14:18 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aefd593
fix: microsoft-identity-broker v2.0.1 Manifest
Evidently, Microsoft modified this file on their file share
causing download verification to fail for the v2.0.1 ebuild. This
updates the sha512, blake2, and file size taken from a direct
download at the following link
https://packages.microsoft.com/ubuntu/22.04/prod/pool/main/m/microsoft-identity-broker/
Signed-off-by: Elaina Jones <133198355+elainajones <AT> users.noreply.github.com>
Closes: https://github.com/gentoo/gentoo/pull/38154
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
sys-auth/microsoft-identity-broker/Manifest | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-auth/microsoft-identity-broker/Manifest b/sys-auth/microsoft-identity-broker/Manifest
index fc797897d322..fe69b52d3463 100644
--- a/sys-auth/microsoft-identity-broker/Manifest
+++ b/sys-auth/microsoft-identity-broker/Manifest
@@ -1,2 +1,2 @@
DIST microsoft-identity-broker_2.0.0_amd64.deb 83941724 BLAKE2B 6e7c347cd466b4fb77841c4c19cf368538adf17a1b197fcf5a8ca6555f3660f8d6684d6bcb400441f9cc06f0765b26cf379d29a16f15d2f90da445d80f89ae89 SHA512 60535f64f867fcd748f550b4dd5a9bb29d527b3632dc7d44a72041ad36ccb691e762417bdc0230ead6ad8c0ab3099f0a343a5be7ab4c982fd3c27753712ac462
-DIST microsoft-identity-broker_2.0.1_amd64.deb 84379396 BLAKE2B 1e535ca26ba3736ac284ca1602b1c1ae9acd1d69f66ff17ab76477b7fa3dd5d6125a2ac6c9b651ca26d90592716d75de6aadb7ffa52f95d16930645224a9eb57 SHA512 88d389fbddbbb73c3b8ce7b943232069f23c36d74034dce070a301a5ce919934f0257cd5b5c70de382d9d5b08cd554ff9717d14de484e38d9a0eba68c7200cb6
+DIST microsoft-identity-broker_2.0.1_amd64.deb 84382090 BLAKE2B 9870f2ca66555ebcd58efb56b08ebd7cd9cfde326e72e9b72c0d712f225a8fbd97c013a3f8ffacef69ae443cd95876673719b2982a40516e7d1013b62d33686f SHA512 be51d7dd08972d0b14da6866746cd9688b1235362b51840c5b9148f50a5520638209630221676b3c0d3e7bef770d3f95a827a42f30ac392a674df4de07256934
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/microsoft-identity-broker/
@ 2024-11-20 10:15 James Le Cuirot
0 siblings, 0 replies; 6+ messages in thread
From: James Le Cuirot @ 2024-11-20 10:15 UTC (permalink / raw
To: gentoo-commits
commit: 0e8b6e321e9ef63a215623e8b2d74a50aaf259df
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 20 10:14:11 2024 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Nov 20 10:14:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e8b6e32
sys-auth/microsoft-identity-broker: Microsoft has silently changed 2.0.1 again
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
sys-auth/microsoft-identity-broker/Manifest | 2 +-
...ty-broker-2.0.1.ebuild => microsoft-identity-broker-2.0.1_p2.ebuild} | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-auth/microsoft-identity-broker/Manifest b/sys-auth/microsoft-identity-broker/Manifest
index 45d36f36751d..65f29d529dd9 100644
--- a/sys-auth/microsoft-identity-broker/Manifest
+++ b/sys-auth/microsoft-identity-broker/Manifest
@@ -1 +1 @@
-DIST microsoft-identity-broker_2.0.1_amd64.deb 84382090 BLAKE2B 9870f2ca66555ebcd58efb56b08ebd7cd9cfde326e72e9b72c0d712f225a8fbd97c013a3f8ffacef69ae443cd95876673719b2982a40516e7d1013b62d33686f SHA512 be51d7dd08972d0b14da6866746cd9688b1235362b51840c5b9148f50a5520638209630221676b3c0d3e7bef770d3f95a827a42f30ac392a674df4de07256934
+DIST microsoft-identity-broker_2.0.1_amd64.deb 84422394 BLAKE2B de56e5b973ee573af12532720afd95ec12354488847b4df4a0307e039aca6e67214ce54b044b81ed0753c35dfaa525a6b63e2e51617b57c348d562f149cda7fa SHA512 fecf9ea1fc13471b83479f3f2fac1b54e23918248b3a447917486e83ee85af2627dde599c605d530caaba91e81b3dfce38ba93d1cd9bb47063f523a20398ff23
diff --git a/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1.ebuild b/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2.ebuild
similarity index 97%
rename from sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1.ebuild
rename to sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2.ebuild
index f2f58f3974aa..b0fdb17a9c67 100644
--- a/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1.ebuild
+++ b/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2.ebuild
@@ -8,7 +8,7 @@ inherit java-pkg-2 prefix systemd unpacker
FAKE_OS="ubuntu-22.04"
DESCRIPTION="Microsoft Authentication Broker to access a corporate environment"
HOMEPAGE="https://learn.microsoft.com/mem/intune/"
-SRC_URI="https://packages.microsoft.com/ubuntu/22.04/prod/pool/main/${PN:0:1}/${PN}/${PN}_${PV}_amd64.deb"
+SRC_URI="https://packages.microsoft.com/ubuntu/22.04/prod/pool/main/${PN:0:1}/${PN}/${PN}_${PV%_p*}_amd64.deb"
S="${WORKDIR}"
LICENSE="all-rights-reserved"
SLOT="0"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/microsoft-identity-broker/
@ 2025-01-15 11:28 James Le Cuirot
0 siblings, 0 replies; 6+ messages in thread
From: James Le Cuirot @ 2025-01-15 11:28 UTC (permalink / raw
To: gentoo-commits
commit: 89d0981b67e66b4a72e8c3bee4df47b6262f695f
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 15 11:24:54 2025 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Jan 15 11:27:58 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89d0981b
sys-auth/microsoft-identity-broker: Limit Java heap size to 256MB
Otherwise, it just keeps on growing.
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
...2.0.1_p2.ebuild => microsoft-identity-broker-2.0.1_p2-r1.ebuild} | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2.ebuild b/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2-r1.ebuild
similarity index 90%
rename from sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2.ebuild
rename to sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2-r1.ebuild
index b0fdb17a9c67..0e1d9b374b1a 100644
--- a/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2.ebuild
+++ b/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2024 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -40,12 +40,12 @@ src_install() {
java-pkg_dolauncher microsoft-identity-broker \
--main com.microsoft.identity.broker.service.IdentityBrokerService \
- --java_args '${MICROSOFT_IDENTITY_BROKER_OPTS}' \
+ --java_args '-Xmx256m ${MICROSOFT_IDENTITY_BROKER_OPTS}' \
-into /usr/share/${PN}
java-pkg_dolauncher microsoft-identity-device-broker \
--main com.microsoft.identity.broker.service.DeviceBrokerService \
- --java_args '${MICROSOFT_IDENTITY_DEVICE_BROKER_OPTS}' \
+ --java_args '-Xmx256m ${MICROSOFT_IDENTITY_DEVICE_BROKER_OPTS}' \
-into /usr/share/${PN}
insinto /etc/microsoft-identity-broker
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sys-auth/microsoft-identity-broker/
@ 2025-01-27 10:18 James Le Cuirot
0 siblings, 0 replies; 6+ messages in thread
From: James Le Cuirot @ 2025-01-27 10:18 UTC (permalink / raw
To: gentoo-commits
commit: 7fe096c2194c69cedd110d4f7819bed14a0e5a18
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 27 10:16:15 2025 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Mon Jan 27 10:18:11 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fe096c2
sys-auth/microsoft-identity-broker: Revert limit Java heap size
This reverts commit 89d0981b67e66b4a72e8c3bee4df47b6262f695f. It's too
unstable when doing this.
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>
....0.1_p2-r1.ebuild => microsoft-identity-broker-2.0.1_p2-r2.ebuild} | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2-r1.ebuild b/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2-r2.ebuild
similarity index 92%
rename from sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2-r1.ebuild
rename to sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2-r2.ebuild
index 0e1d9b374b1a..f313a85c1be2 100644
--- a/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2-r1.ebuild
+++ b/sys-auth/microsoft-identity-broker/microsoft-identity-broker-2.0.1_p2-r2.ebuild
@@ -40,12 +40,12 @@ src_install() {
java-pkg_dolauncher microsoft-identity-broker \
--main com.microsoft.identity.broker.service.IdentityBrokerService \
- --java_args '-Xmx256m ${MICROSOFT_IDENTITY_BROKER_OPTS}' \
+ --java_args '${MICROSOFT_IDENTITY_BROKER_OPTS}' \
-into /usr/share/${PN}
java-pkg_dolauncher microsoft-identity-device-broker \
--main com.microsoft.identity.broker.service.DeviceBrokerService \
- --java_args '-Xmx256m ${MICROSOFT_IDENTITY_DEVICE_BROKER_OPTS}' \
+ --java_args '${MICROSOFT_IDENTITY_DEVICE_BROKER_OPTS}' \
-into /usr/share/${PN}
insinto /etc/microsoft-identity-broker
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-01-27 10:18 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-14 22:14 [gentoo-commits] repo/gentoo:master commit in: sys-auth/microsoft-identity-broker/ James Le Cuirot
-- strict thread matches above, loose matches on Subject: below --
2025-01-27 10:18 James Le Cuirot
2025-01-15 11:28 James Le Cuirot
2024-11-20 10:15 James Le Cuirot
2024-08-14 22:14 James Le Cuirot
2024-07-09 14:52 James Le Cuirot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox