* [gentoo-commits] repo/gentoo:master commit in: net-misc/ptpd/
@ 2015-10-31 9:36 Ian Delaney
0 siblings, 0 replies; 9+ messages in thread
From: Ian Delaney @ 2015-10-31 9:36 UTC (permalink / raw
To: gentoo-commits
commit: ab132f97d15c85bea6fc7d563ede79b1797c1963
Author: Ian Delaney <idella4 <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 31 06:08:34 2015 +0000
Commit: Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Sat Oct 31 09:36:07 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab132f97
net-misc/ptpd: metadata.xml: update maintainer's email address
Package-Manager: portage-2.2.23
net-misc/ptpd/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/ptpd/metadata.xml b/net-misc/ptpd/metadata.xml
index a07e1da..d4d02bc 100644
--- a/net-misc/ptpd/metadata.xml
+++ b/net-misc/ptpd/metadata.xml
@@ -3,7 +3,7 @@
<pkgmetadata>
<herd>proxy-maintainers</herd>
<maintainer>
- <email>jan.breuer@jaybee.cz</email>
+ <email>honza.breuer@gmail.com</email>
<name>Jan Breuer</name>
</maintainer>
<use>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ptpd/
@ 2016-08-08 8:14 Patrice Clement
0 siblings, 0 replies; 9+ messages in thread
From: Patrice Clement @ 2016-08-08 8:14 UTC (permalink / raw
To: gentoo-commits
commit: ca71b9d1ba90ab82b1200c15200536710ba056bc
Author: Jan Breuer <jan.breuer <AT> jaybee <DOT> cz>
AuthorDate: Tue Jul 12 18:07:12 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Aug 8 08:14:45 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca71b9d1
net-misc/ptpd: fix bug #587328 dep/snmp.c:224:9: error: unknown type name ‘U64’
Closes: https://github.com/gentoo/gentoo/pull/1878
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
net-misc/ptpd/ptpd-2.3.1-r1.ebuild | 60 ++++++++++++++++++++++++++++++++++++++
1 file changed, 60 insertions(+)
diff --git a/net-misc/ptpd/ptpd-2.3.1-r1.ebuild b/net-misc/ptpd/ptpd-2.3.1-r1.ebuild
new file mode 100644
index 0000000..aa050b1
--- /dev/null
+++ b/net-misc/ptpd/ptpd-2.3.1-r1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic systemd
+
+DESCRIPTION="Precision Time Protocol daemon"
+HOMEPAGE="https://github.com/ptpd/ptpd"
+
+SRC_URI="https://github.com/ptpd/ptpd/archive/${P}.tar.gz"
+KEYWORDS="~amd64 ~arm ~x86"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="debug experimental ntp +pcap snmp slave-only +statistics"
+RDEPEND="
+ pcap? ( net-libs/libpcap )
+ snmp? ( net-analyzer/net-snmp )"
+DEPEND="${RDEPEND}"
+RDEPEND="${RDEPEND}
+ ntp? ( net-misc/ntp )"
+
+S=${WORKDIR}/ptpd-${P}
+
+src_prepare() {
+ eapply_user
+ sed -i -e 's/U64/struct counter64/' src/dep/snmp.c || die "sed failed"
+ eautoreconf
+}
+
+src_configure() {
+ append-flags -fno-strict-aliasing
+ econf \
+ --enable-daemon \
+ $(use_enable snmp) \
+ $(use_enable experimental experimental-options) \
+ $(use_enable statistics) \
+ $(use_enable debug runtime-debug) \
+ $(use_enable pcap) \
+ $(use_enable slave-only)
+}
+
+src_install() {
+ emake install DESTDIR="${D}"
+
+ insinto /etc
+ newins "src/ptpd2.conf.minimal" ptpd2.conf
+
+ newinitd "${FILESDIR}/ptpd2.rc" ptpd2
+ newconfd "${FILESDIR}/ptpd2.confd" ptpd2
+
+ systemd_dounit "${FILESDIR}/ptpd2.service"
+}
+
+pkg_postinst() {
+ elog "Do not forget to setup correct network interface."
+ elog "Change the config file /etc/ptpd2.conf to suit your needs."
+}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ptpd/
@ 2016-08-08 8:14 Patrice Clement
0 siblings, 0 replies; 9+ messages in thread
From: Patrice Clement @ 2016-08-08 8:14 UTC (permalink / raw
To: gentoo-commits
commit: d3440cdaca82823254d9585188b82ffd1c0f62ac
Author: Jan Breuer <jan.breuer <AT> jaybee <DOT> cz>
AuthorDate: Tue Jul 12 16:49:48 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Aug 8 08:14:42 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3440cda
net-misc/ptpd: update homepage and source
Closes: https://github.com/gentoo/gentoo/pull/1878
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
net-misc/ptpd/Manifest | 2 +-
net-misc/ptpd/ptpd-2.3.1.ebuild | 8 +++++---
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/net-misc/ptpd/Manifest b/net-misc/ptpd/Manifest
index cc9ef1e..5a6d7e9 100644
--- a/net-misc/ptpd/Manifest
+++ b/net-misc/ptpd/Manifest
@@ -1 +1 @@
-DIST ptpd-2.3.1.tar.gz 1196180 SHA256 0dbf54dd2c178bd9fe62481d2c37513ee36636d8bf137cfdad96891490cdbf93 SHA512 c0e9eecfd87769b8cdbac624bf40f28634911e92d2169f4b91d59b76466eb4bf2143037dab3c601190ceaa13c8ab857c7875789448a46ab560bf0d0b8d321963 WHIRLPOOL e81b43eded2891a8eec2e880a837e6da5d94b64f363979af64eabdc341b75aae79605c00a7790a842e77b9d00ec69cf9bf97d7ff92498549db31825835cd6128
+DIST ptpd-2.3.1.tar.gz 884161 SHA256 267ad61d09d97069acec5d4878dceda20d0ddbebd27557d80230847848cee6c2 SHA512 25c128ce1920ae2c1469e986bfa5d5b8ebca04ec14b838fb8232b36e0a1ef94646507e1b25034846d11cf0f71d7e2da983b9f6408f8fcfc608904ecfec2a15c4 WHIRLPOOL dfc107c0011db56b1e943bf9ac794c51631e0320e8ae19c5db2d67af55cd15a73e2e71117abca0db787896ea0366987eee29d91f15eea336c96be7093accfd6b
diff --git a/net-misc/ptpd/ptpd-2.3.1.ebuild b/net-misc/ptpd/ptpd-2.3.1.ebuild
index ce4ef8f..f2f93bc 100644
--- a/net-misc/ptpd/ptpd-2.3.1.ebuild
+++ b/net-misc/ptpd/ptpd-2.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
@@ -7,9 +7,9 @@ EAPI=5
inherit autotools eutils flag-o-matic systemd
DESCRIPTION="Precision Time Protocol daemon"
-HOMEPAGE="http://ptpd.sf.net"
+HOMEPAGE="https://github.com/ptpd/ptpd"
-SRC_URI="mirror://sourceforge/ptpd/${PV}/${P}.tar.gz"
+SRC_URI="https://github.com/ptpd/ptpd/archive/${P}.tar.gz"
KEYWORDS="~amd64 ~arm ~x86"
LICENSE="BSD"
@@ -22,6 +22,8 @@ DEPEND="${RDEPEND}"
RDEPEND="${RDEPEND}
ntp? ( net-misc/ntp )"
+S=${WORKDIR}/ptpd-${P}
+
src_prepare() {
eautoreconf
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ptpd/
@ 2016-08-08 8:14 Patrice Clement
0 siblings, 0 replies; 9+ messages in thread
From: Patrice Clement @ 2016-08-08 8:14 UTC (permalink / raw
To: gentoo-commits
commit: 9809f4c6e665196f78821d6d2ecc84919ec7468d
Author: Jan Breuer <jan.breuer <AT> jaybee <DOT> cz>
AuthorDate: Thu Jul 14 16:15:44 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Aug 8 08:14:48 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9809f4c6
net-misc/ptpd: correct metadata.xml to contain correct upstream source
Closes: https://github.com/gentoo/gentoo/pull/1878
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
net-misc/ptpd/metadata.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net-misc/ptpd/metadata.xml b/net-misc/ptpd/metadata.xml
index 3d16c3a..6633371 100644
--- a/net-misc/ptpd/metadata.xml
+++ b/net-misc/ptpd/metadata.xml
@@ -19,6 +19,6 @@
<flag name="slave-only">Enable slave only operation (remove master mode functionality)</flag>
</use>
<upstream>
- <remote-id type="sourceforge">ptpd</remote-id>
+ <remote-id type="github">ptpd/ptpd</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ptpd/
@ 2016-08-08 8:14 Patrice Clement
0 siblings, 0 replies; 9+ messages in thread
From: Patrice Clement @ 2016-08-08 8:14 UTC (permalink / raw
To: gentoo-commits
commit: a5efdb2ecbab9d33dd9e6667f5edac080c1d5c20
Author: Jan Breuer <jan.breuer <AT> jaybee <DOT> cz>
AuthorDate: Sun Jul 17 14:40:28 2016 +0000
Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
CommitDate: Mon Aug 8 08:14:51 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5efdb2e
net-misc/ptpd: fix EROOT, remove redundant eutils inheritance
Closes: https://github.com/gentoo/gentoo/pull/1878
Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
net-misc/ptpd/ptpd-2.3.1-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-misc/ptpd/ptpd-2.3.1-r1.ebuild b/net-misc/ptpd/ptpd-2.3.1-r1.ebuild
index aa050b1..003e80b 100644
--- a/net-misc/ptpd/ptpd-2.3.1-r1.ebuild
+++ b/net-misc/ptpd/ptpd-2.3.1-r1.ebuild
@@ -4,7 +4,7 @@
EAPI=6
-inherit autotools eutils flag-o-matic systemd
+inherit autotools flag-o-matic systemd
DESCRIPTION="Precision Time Protocol daemon"
HOMEPAGE="https://github.com/ptpd/ptpd"
@@ -56,5 +56,5 @@ src_install() {
pkg_postinst() {
elog "Do not forget to setup correct network interface."
- elog "Change the config file /etc/ptpd2.conf to suit your needs."
+ elog "Change the config file ${EROOT}etc/ptpd2.conf to suit your needs."
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ptpd/
@ 2017-12-06 11:46 Michael Palimaka
0 siblings, 0 replies; 9+ messages in thread
From: Michael Palimaka @ 2017-12-06 11:46 UTC (permalink / raw
To: gentoo-commits
commit: 61335110fb03aa12004394835782fb8956f0d65f
Author: Jan Breuer <jan.breuer <AT> mobatime <DOT> cz>
AuthorDate: Wed Dec 6 09:40:23 2017 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Wed Dec 6 11:46:20 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61335110
net-misc/ptpd: remove broken package 2.3.1
Prevent further bug reports
Bug: https://bugs.gentoo.org/639990
Bug: https://bugs.gentoo.org/587328
Closes: https://github.com/gentoo/gentoo/pull/6465
net-misc/ptpd/ptpd-2.3.1.ebuild | 57 -----------------------------------------
1 file changed, 57 deletions(-)
diff --git a/net-misc/ptpd/ptpd-2.3.1.ebuild b/net-misc/ptpd/ptpd-2.3.1.ebuild
deleted file mode 100644
index 3fcbbbc2a23..00000000000
--- a/net-misc/ptpd/ptpd-2.3.1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils flag-o-matic systemd
-
-DESCRIPTION="Precision Time Protocol daemon"
-HOMEPAGE="https://github.com/ptpd/ptpd"
-
-SRC_URI="https://github.com/ptpd/ptpd/archive/${P}.tar.gz"
-KEYWORDS="~amd64 ~arm ~x86"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="debug experimental ntp +pcap snmp slave-only +statistics"
-RDEPEND="
- pcap? ( net-libs/libpcap )
- snmp? ( net-analyzer/net-snmp )"
-DEPEND="${RDEPEND}"
-RDEPEND="${RDEPEND}
- ntp? ( net-misc/ntp )"
-
-S=${WORKDIR}/ptpd-${P}
-
-src_prepare() {
- eautoreconf
-}
-
-src_configure() {
- append-flags -fno-strict-aliasing
- econf \
- --enable-daemon \
- $(use_enable snmp) \
- $(use_enable experimental experimental-options) \
- $(use_enable statistics) \
- $(use_enable debug runtime-debug) \
- $(use_enable pcap) \
- $(use_enable slave-only)
-}
-
-src_install() {
- emake install DESTDIR="${D}"
-
- insinto /etc
- newins "src/ptpd2.conf.minimal" ptpd2.conf
-
- newinitd "${FILESDIR}/ptpd2.rc" ptpd2
- newconfd "${FILESDIR}/ptpd2.confd" ptpd2
-
- systemd_dounit "${FILESDIR}/ptpd2.service"
-}
-
-pkg_postinst() {
- elog "Do not forget to setup correct network interface."
- elog "Change the config file /etc/ptpd2.conf to suit your needs."
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ptpd/
@ 2021-04-30 23:43 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2021-04-30 23:43 UTC (permalink / raw
To: gentoo-commits
commit: 5e89a6c55bfbca1e279994abcc2c8fe9c7828a76
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 30 23:42:46 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Apr 30 23:42:46 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e89a6c5
net-misc/ptpd: drop obsolete LibreSSL patch
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/ptpd/ptpd-2.3.1-r2.ebuild | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/net-misc/ptpd/ptpd-2.3.1-r2.ebuild b/net-misc/ptpd/ptpd-2.3.1-r2.ebuild
index cfca56347ad..96dae3022e0 100644
--- a/net-misc/ptpd/ptpd-2.3.1-r2.ebuild
+++ b/net-misc/ptpd/ptpd-2.3.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -23,7 +23,6 @@ RDEPEND="${RDEPEND}
PATCHES=(
"${FILESDIR}"/${PN}-2.3.1-fix-snmp.patch
- "${FILESDIR}"/${PN}-2.3.1-fix-libressl-compatibility.patch
)
S=${WORKDIR}/ptpd-${P}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ptpd/
@ 2023-01-21 6:10 Sam James
0 siblings, 0 replies; 9+ messages in thread
From: Sam James @ 2023-01-21 6:10 UTC (permalink / raw
To: gentoo-commits
commit: eca068b0dfe29c06a40d38846884cbdd3ba25663
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 21 05:54:58 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 21 06:09:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eca068b0
net-misc/ptpd: drop 2.3.1-r1
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-misc/ptpd/ptpd-2.3.1-r1.ebuild | 59 --------------------------------------
1 file changed, 59 deletions(-)
diff --git a/net-misc/ptpd/ptpd-2.3.1-r1.ebuild b/net-misc/ptpd/ptpd-2.3.1-r1.ebuild
deleted file mode 100644
index 9c358e02c8f6..000000000000
--- a/net-misc/ptpd/ptpd-2.3.1-r1.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools flag-o-matic systemd
-
-DESCRIPTION="Precision Time Protocol daemon"
-HOMEPAGE="https://github.com/ptpd/ptpd"
-
-SRC_URI="https://github.com/ptpd/ptpd/archive/${P}.tar.gz"
-KEYWORDS="~amd64 ~arm ~x86"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="debug experimental ntp +pcap snmp slave-only +statistics"
-RDEPEND="
- pcap? ( net-libs/libpcap )
- snmp? ( net-analyzer/net-snmp )"
-DEPEND="${RDEPEND}"
-RDEPEND="${RDEPEND}
- ntp? ( net-misc/ntp )"
-
-S=${WORKDIR}/ptpd-${P}
-
-src_prepare() {
- eapply_user
- sed -i -e 's/U64/struct counter64/' src/dep/snmp.c || die "sed failed"
- eautoreconf
-}
-
-src_configure() {
- append-flags -fno-strict-aliasing
- econf \
- --enable-daemon \
- $(use_enable snmp) \
- $(use_enable experimental experimental-options) \
- $(use_enable statistics) \
- $(use_enable debug runtime-debug) \
- $(use_enable pcap) \
- $(use_enable slave-only)
-}
-
-src_install() {
- emake install DESTDIR="${D}"
-
- insinto /etc
- newins "src/ptpd2.conf.minimal" ptpd2.conf
-
- newinitd "${FILESDIR}/ptpd2.rc" ptpd2
- newconfd "${FILESDIR}/ptpd2.confd" ptpd2
-
- systemd_dounit "${FILESDIR}/ptpd2.service"
-}
-
-pkg_postinst() {
- elog "Do not forget to setup correct network interface."
- elog "Change the config file ${EROOT}etc/ptpd2.conf to suit your needs."
-}
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/ptpd/
@ 2023-11-21 9:27 Ulrich Müller
0 siblings, 0 replies; 9+ messages in thread
From: Ulrich Müller @ 2023-11-21 9:27 UTC (permalink / raw
To: gentoo-commits
commit: d2e231809dee9c98c65b7662e8df42b8d2d73ec0
Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Nov 1 19:19:34 2023 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Nov 21 09:24:07 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e23180
net-misc/ptpd: EAPI8 bump
Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
net-misc/ptpd/ptpd-2.3.1-r2.ebuild | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/net-misc/ptpd/ptpd-2.3.1-r2.ebuild b/net-misc/ptpd/ptpd-2.3.1-r2.ebuild
index 96dae3022e0d..6b5600180760 100644
--- a/net-misc/ptpd/ptpd-2.3.1-r2.ebuild
+++ b/net-misc/ptpd/ptpd-2.3.1-r2.ebuild
@@ -1,13 +1,14 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=8
inherit autotools flag-o-matic systemd
DESCRIPTION="Precision Time Protocol daemon"
HOMEPAGE="https://github.com/ptpd/ptpd"
SRC_URI="https://github.com/ptpd/ptpd/archive/${P}.tar.gz"
+S="${WORKDIR}/ptpd-${P}"
KEYWORDS="~amd64 ~arm ~x86"
LICENSE="BSD"
@@ -25,11 +26,8 @@ PATCHES=(
"${FILESDIR}"/${PN}-2.3.1-fix-snmp.patch
)
-S=${WORKDIR}/ptpd-${P}
-
src_prepare() {
default
-
eautoreconf
}
@@ -61,5 +59,5 @@ src_install() {
pkg_postinst() {
elog "Do not forget to setup correct network interface."
- elog "Change the config file ${EROOT}etc/ptpd2.conf to suit your needs."
+ elog "Change the config file ${EROOT}/etc/ptpd2.conf to suit your needs."
}
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-11-21 9:27 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-06 11:46 [gentoo-commits] repo/gentoo:master commit in: net-misc/ptpd/ Michael Palimaka
-- strict thread matches above, loose matches on Subject: below --
2023-11-21 9:27 Ulrich Müller
2023-01-21 6:10 Sam James
2021-04-30 23:43 Sam James
2016-08-08 8:14 Patrice Clement
2016-08-08 8:14 Patrice Clement
2016-08-08 8:14 Patrice Clement
2016-08-08 8:14 Patrice Clement
2015-10-31 9:36 Ian Delaney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox