public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/musl:master commit in: app-arch/pax/
@ 2017-01-08 21:37 Aric Belsito
  0 siblings, 0 replies; 6+ messages in thread
From: Aric Belsito @ 2017-01-08 21:37 UTC (permalink / raw
  To: gentoo-commits

commit:     ff1b5922a5f55a683a72aa120f19ab59714045fe
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Sun Jan  8 21:37:03 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Sun Jan  8 21:37:03 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=ff1b5922

app-arch/pax: Fix LDFLAGS

While the patch applied -lfts, LDFLAGS should go before objects

 app-arch/pax/Manifest            | 2 +-
 app-arch/pax/pax-20160306.ebuild | 6 ++----
 2 files changed, 3 insertions(+), 5 deletions(-)

diff --git a/app-arch/pax/Manifest b/app-arch/pax/Manifest
index b1d6fa2..2692c2a 100644
--- a/app-arch/pax/Manifest
+++ b/app-arch/pax/Manifest
@@ -1,4 +1,4 @@
 AUX pax-20160306-glibc-to-linux.patch 932 SHA256 5dd64a70e394c15de0be8d9c4c2a366cb4cd998c2e32611dd0aced799a2c18e3 SHA512 96d018bd1be2b0d22c9c5e11a92d8cf7ef9bc72d1b13686e572aa15935f2fda9d507baf1e0eb916fec776c2f9d7bab458c203cab64446eed34b70f544109d1d7 WHIRLPOOL a9362fe33bd93532a123b35b4b12b97890b863035773dbcd79820cd7eb4ce4536c46fcff47a8d3947676ee166a4e10e62c1ccc84423ab3ee40d97d91fc67df1e
 DIST paxmirabilis-20160306.cpio.gz 147448 SHA256 4e36fabfabc01a15e0d01eee0306cef79a7f374586f46254dae139eb866ae81b SHA512 65c9613f235d973f23d829d87b93963f4b21beca4d7158abb8243f7f0ba8eb883544bbd0c16bde82f0e55ab2fbf33e3dfb155a50c0f5be3bf6d88eaf95e1037f WHIRLPOOL 5945f45cc69cfd25d7754a9b6b25db98170de2fc926ffe3a661402d95bc41517e40ff059998d682cc65e32fd7e70a78e222525012eb98dde54c1d67c0c6c2277
-EBUILD pax-20160306.ebuild 1448 SHA256 a5004bcd662ead8e2047922f6527f4fdf3fb4d0b80dddb15fe1f834e61825781 SHA512 60629b46c2ce23eb5e060a198deac7857a3614afb298bedbce67d30b36285ba0105f0be2c911a6146055b1fe6498dadacab039f4bf846bb9a63c0dfe62f11cbf WHIRLPOOL 740b7ce6f76c2e608950226be9fd92e927b75104bf33378e5f7f977a875171b715b5a34c2929d1eb1170cd27a92a31f2c6bda16695641799e793b0565d5eeced
+EBUILD pax-20160306.ebuild 1421 SHA256 f2071656e5d2c83824303fb30ddd0447c9edd0c5436d99d529e688d09dffe79a SHA512 b3da2701e8f4067af860fff2a2cc5e568890dc8eec8914b198b4628d47b9c91002a4f465d7914f969b4ca730b668433ce06ab548646f590a607f0aa3f377a87a WHIRLPOOL 51b9fa096415f2df71e58fff2937e62652ffa5bea82611a65f41ab0781f0701ce368811a8cf99bd532752f33b023640974a2fb19d104712afab3454a20454afa
 MISC metadata.xml 166 SHA256 2caff447f5bd2701d8456ada5cc633c41ef4373fa4bfeabeb73599d40bcc941b SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84 WHIRLPOOL 1ff70497eca6531f0e0614c72a19f4b8e5ff486a58d369f4f0b36308d1d6b01168f9da887740e3b9f536236be251d3fe05f904d27a9233a7cf613416ba882968

diff --git a/app-arch/pax/pax-20160306.ebuild b/app-arch/pax/pax-20160306.ebuild
index 753f685..39ba7ae 100644
--- a/app-arch/pax/pax-20160306.ebuild
+++ b/app-arch/pax/pax-20160306.ebuild
@@ -4,7 +4,7 @@
 
 EAPI="5"
 
-inherit unpacker toolchain-funcs flag-o-matic
+inherit unpacker toolchain-funcs
 
 DESCRIPTION="pax (Portable Archive eXchange) is the POSIX standard archive tool"
 HOMEPAGE="https://www.mirbsd.org/pax.htm"
@@ -37,15 +37,13 @@ src_configure() {
 }
 
 src_compile() {
-	use elibc_musl && append-ldflags "-lfts"
-
 	# We can't rely on LFS flags as it uses the fts.h interface which lacks 64-bit support.
 	set -- \
 		${CC} ${CPPFLAGS} ${CFLAGS} \
 		-DHAVE_STRLCPY -DHAVE_VIS -DHAVE_STRMODE \
 		-DLONG_OFF_T -DHAVE_LINKAT \
 		$(${PKG_CONFIG} --cflags libbsd-overlay) \
-		-Wall *.c -o ${PN} ${LDFLAGS} \
+		-Wall ${LDFLAGS} *.c -o ${PN} $(usex elibc_musl '-lfts' '')\
 		$(${PKG_CONFIG} --libs libbsd-overlay)
 	echo "$@"
 	"$@" || die


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

* [gentoo-commits] proj/musl:master commit in: app-arch/pax/
@ 2017-01-08 21:46 Aric Belsito
  0 siblings, 0 replies; 6+ messages in thread
From: Aric Belsito @ 2017-01-08 21:46 UTC (permalink / raw
  To: gentoo-commits

commit:     7aed89abe0e4e7df664a5f255d64f51f3f3f4022
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Sun Jan  8 21:45:32 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Sun Jan  8 21:45:32 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=7aed89ab

app-arch/pax: inherit eutils

 app-arch/pax/pax-20160306.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/pax/pax-20160306.ebuild b/app-arch/pax/pax-20160306.ebuild
index 39ba7ae..8363a78 100644
--- a/app-arch/pax/pax-20160306.ebuild
+++ b/app-arch/pax/pax-20160306.ebuild
@@ -4,7 +4,7 @@
 
 EAPI="5"
 
-inherit unpacker toolchain-funcs
+inherit eutils unpacker toolchain-funcs
 
 DESCRIPTION="pax (Portable Archive eXchange) is the POSIX standard archive tool"
 HOMEPAGE="https://www.mirbsd.org/pax.htm"


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

* [gentoo-commits] proj/musl:master commit in: app-arch/pax/
@ 2017-01-08 21:47 Aric Belsito
  0 siblings, 0 replies; 6+ messages in thread
From: Aric Belsito @ 2017-01-08 21:47 UTC (permalink / raw
  To: gentoo-commits

commit:     0a9b54944483a781b26bba466b4eedafc3b02c41
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Sun Jan  8 21:47:20 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Sun Jan  8 21:47:20 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=0a9b5494

app-arch/pax: Fix manifest

 app-arch/pax/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/pax/Manifest b/app-arch/pax/Manifest
index 2692c2a..e88eca7 100644
--- a/app-arch/pax/Manifest
+++ b/app-arch/pax/Manifest
@@ -1,4 +1,4 @@
 AUX pax-20160306-glibc-to-linux.patch 932 SHA256 5dd64a70e394c15de0be8d9c4c2a366cb4cd998c2e32611dd0aced799a2c18e3 SHA512 96d018bd1be2b0d22c9c5e11a92d8cf7ef9bc72d1b13686e572aa15935f2fda9d507baf1e0eb916fec776c2f9d7bab458c203cab64446eed34b70f544109d1d7 WHIRLPOOL a9362fe33bd93532a123b35b4b12b97890b863035773dbcd79820cd7eb4ce4536c46fcff47a8d3947676ee166a4e10e62c1ccc84423ab3ee40d97d91fc67df1e
 DIST paxmirabilis-20160306.cpio.gz 147448 SHA256 4e36fabfabc01a15e0d01eee0306cef79a7f374586f46254dae139eb866ae81b SHA512 65c9613f235d973f23d829d87b93963f4b21beca4d7158abb8243f7f0ba8eb883544bbd0c16bde82f0e55ab2fbf33e3dfb155a50c0f5be3bf6d88eaf95e1037f WHIRLPOOL 5945f45cc69cfd25d7754a9b6b25db98170de2fc926ffe3a661402d95bc41517e40ff059998d682cc65e32fd7e70a78e222525012eb98dde54c1d67c0c6c2277
-EBUILD pax-20160306.ebuild 1421 SHA256 f2071656e5d2c83824303fb30ddd0447c9edd0c5436d99d529e688d09dffe79a SHA512 b3da2701e8f4067af860fff2a2cc5e568890dc8eec8914b198b4628d47b9c91002a4f465d7914f969b4ca730b668433ce06ab548646f590a607f0aa3f377a87a WHIRLPOOL 51b9fa096415f2df71e58fff2937e62652ffa5bea82611a65f41ab0781f0701ce368811a8cf99bd532752f33b023640974a2fb19d104712afab3454a20454afa
+EBUILD pax-20160306.ebuild 1428 SHA256 1d85171017122e3708e9c134b6ec274de9679d4f4da6c5305a9d7dcc9368056b SHA512 2aa284ec16a16e2bb1ea64d7b01d41aa2b115a91be6c4dcd4d73058a1428da2dfba4c49097b4fd12b8f75f9d7264facb16c543d2c377e017bc958c00dd0ee3ec WHIRLPOOL cd7aab5d224d2e732d55ac2d77231e3efee0aeeaeba3bca5de3fdc6e2474541b53cce1bdb25ce30c81e1f07a3a25ccea5556ffb8bbb669779cc0139b53eff85a
 MISC metadata.xml 166 SHA256 2caff447f5bd2701d8456ada5cc633c41ef4373fa4bfeabeb73599d40bcc941b SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84 WHIRLPOOL 1ff70497eca6531f0e0614c72a19f4b8e5ff486a58d369f4f0b36308d1d6b01168f9da887740e3b9f536236be251d3fe05f904d27a9233a7cf613416ba882968


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

* [gentoo-commits] proj/musl:master commit in: app-arch/pax/
@ 2017-01-15 21:46 Aric Belsito
  0 siblings, 0 replies; 6+ messages in thread
From: Aric Belsito @ 2017-01-15 21:46 UTC (permalink / raw
  To: gentoo-commits

commit:     98f34bca92418d0bf37ad2e7c7583b4ef2709313
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Sun Jan 15 21:46:02 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Sun Jan 15 21:46:02 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=98f34bca

app-arch/pax: Switch back to fts-standalone

 app-arch/pax/Manifest            | 2 +-
 app-arch/pax/pax-20160306.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/pax/Manifest b/app-arch/pax/Manifest
index e88eca7..929da08 100644
--- a/app-arch/pax/Manifest
+++ b/app-arch/pax/Manifest
@@ -1,4 +1,4 @@
 AUX pax-20160306-glibc-to-linux.patch 932 SHA256 5dd64a70e394c15de0be8d9c4c2a366cb4cd998c2e32611dd0aced799a2c18e3 SHA512 96d018bd1be2b0d22c9c5e11a92d8cf7ef9bc72d1b13686e572aa15935f2fda9d507baf1e0eb916fec776c2f9d7bab458c203cab64446eed34b70f544109d1d7 WHIRLPOOL a9362fe33bd93532a123b35b4b12b97890b863035773dbcd79820cd7eb4ce4536c46fcff47a8d3947676ee166a4e10e62c1ccc84423ab3ee40d97d91fc67df1e
 DIST paxmirabilis-20160306.cpio.gz 147448 SHA256 4e36fabfabc01a15e0d01eee0306cef79a7f374586f46254dae139eb866ae81b SHA512 65c9613f235d973f23d829d87b93963f4b21beca4d7158abb8243f7f0ba8eb883544bbd0c16bde82f0e55ab2fbf33e3dfb155a50c0f5be3bf6d88eaf95e1037f WHIRLPOOL 5945f45cc69cfd25d7754a9b6b25db98170de2fc926ffe3a661402d95bc41517e40ff059998d682cc65e32fd7e70a78e222525012eb98dde54c1d67c0c6c2277
-EBUILD pax-20160306.ebuild 1428 SHA256 1d85171017122e3708e9c134b6ec274de9679d4f4da6c5305a9d7dcc9368056b SHA512 2aa284ec16a16e2bb1ea64d7b01d41aa2b115a91be6c4dcd4d73058a1428da2dfba4c49097b4fd12b8f75f9d7264facb16c543d2c377e017bc958c00dd0ee3ec WHIRLPOOL cd7aab5d224d2e732d55ac2d77231e3efee0aeeaeba3bca5de3fdc6e2474541b53cce1bdb25ce30c81e1f07a3a25ccea5556ffb8bbb669779cc0139b53eff85a
+EBUILD pax-20160306.ebuild 1434 SHA256 b7c7687c18cc22d60e12656b86be1d3c38d0d007c729817b3b2f8468d6b2b91b SHA512 d98ed793ab25b2e0db4c08e3b40b6a51ac0f74ad973bb822c74f5cb94cb63383a59c636c5f1403ef32578d23ea018aa87ace2d42acad9b3629e6d78cd4c1ef9f WHIRLPOOL 88f1876618c54454b032e0c4761ff7b97b0f2798de0d14b14920c6889cee5131218d50fcaea5ae56401899c32dfefce9cd0834faf97c4c704cde226c0bab2b59
 MISC metadata.xml 166 SHA256 2caff447f5bd2701d8456ada5cc633c41ef4373fa4bfeabeb73599d40bcc941b SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84 WHIRLPOOL 1ff70497eca6531f0e0614c72a19f4b8e5ff486a58d369f4f0b36308d1d6b01168f9da887740e3b9f536236be251d3fe05f904d27a9233a7cf613416ba882968

diff --git a/app-arch/pax/pax-20160306.ebuild b/app-arch/pax/pax-20160306.ebuild
index 8363a78..4e18900 100644
--- a/app-arch/pax/pax-20160306.ebuild
+++ b/app-arch/pax/pax-20160306.ebuild
@@ -16,7 +16,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86
 IUSE=""
 
 RDEPEND="dev-libs/libbsd
-elibc_musl? ( sys-libs/musl-fts )"
+elibc_musl? ( sys-libs/fts-standalone )"
 DEPEND="${RDEPEND}
 	$(unpacker_src_uri_depends)"
 


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

* [gentoo-commits] proj/musl:master commit in: app-arch/pax/
@ 2017-12-18  4:04 Aric Belsito
  0 siblings, 0 replies; 6+ messages in thread
From: Aric Belsito @ 2017-12-18  4:04 UTC (permalink / raw
  To: gentoo-commits

commit:     0cfad973da89cc51eaa0f94191a0d803775c1c03
Author:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
AuthorDate: Mon Dec 18 04:02:54 2017 +0000
Commit:     Aric Belsito <lluixhi <AT> gmail <DOT> com>
CommitDate: Mon Dec 18 04:02:54 2017 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=0cfad973

app-arch/pax: version bump to 20161104

 app-arch/pax/Manifest                              |  2 +-
 .../{pax-20160306.ebuild => pax-20161104.ebuild}   | 29 +++++++++++-----------
 2 files changed, 16 insertions(+), 15 deletions(-)

diff --git a/app-arch/pax/Manifest b/app-arch/pax/Manifest
index a6c80f7..a31ca15 100644
--- a/app-arch/pax/Manifest
+++ b/app-arch/pax/Manifest
@@ -1 +1 @@
-DIST paxmirabilis-20160306.cpio.gz 147448 SHA256 4e36fabfabc01a15e0d01eee0306cef79a7f374586f46254dae139eb866ae81b SHA512 65c9613f235d973f23d829d87b93963f4b21beca4d7158abb8243f7f0ba8eb883544bbd0c16bde82f0e55ab2fbf33e3dfb155a50c0f5be3bf6d88eaf95e1037f WHIRLPOOL 5945f45cc69cfd25d7754a9b6b25db98170de2fc926ffe3a661402d95bc41517e40ff059998d682cc65e32fd7e70a78e222525012eb98dde54c1d67c0c6c2277
+DIST paxmirabilis-20161104.cpio.gz 148061 BLAKE2B 997a126d3048488e1a4e49ff9753de2ebdbe75b7daedbea8c95ab5f1902d4768d4b12b13fa684cb2a7c2fe8470ab60e19ea3f9430429a6a4e6e1d57993130fd4 SHA512 42ec8365a5efb9ffb9d383cece39ffaac85c1c8d69856ec557a5567cf0d28d98a0f2d4b7fed53572366eba12c71111cc80b591d51c6a19a3e6437efb62af33ce

diff --git a/app-arch/pax/pax-20160306.ebuild b/app-arch/pax/pax-20161104.ebuild
similarity index 78%
rename from app-arch/pax/pax-20160306.ebuild
rename to app-arch/pax/pax-20161104.ebuild
index 03d9050..26e7e51 100644
--- a/app-arch/pax/pax-20160306.ebuild
+++ b/app-arch/pax/pax-20161104.ebuild
@@ -1,9 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
-
-inherit eutils unpacker toolchain-funcs
+EAPI=6
+inherit unpacker toolchain-funcs
 
 DESCRIPTION="pax (Portable Archive eXchange) is the POSIX standard archive tool"
 HOMEPAGE="https://www.mirbsd.org/pax.htm"
@@ -12,23 +11,24 @@ SRC_URI="https://www.mirbsd.org/MirOS/dist/mir/cpio/paxmirabilis-${PV}.cpio.gz"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-IUSE=""
-
-RDEPEND="dev-libs/libbsd
-elibc_musl? ( sys-libs/fts-standalone )"
-DEPEND="${RDEPEND}
-	$(unpacker_src_uri_depends)"
 
+RDEPEND="
+	dev-libs/libbsd
+	elibc_musl? ( sys-libs/fts-standalone )
+"
+DEPEND="
+	${RDEPEND}
+	$(unpacker_src_uri_depends)
+"
+PATCHES=(
+	"${FILESDIR}/${PN}-20160306-glibc-to-linux.patch"
+)
 S=${WORKDIR}/${PN}
 
-PATCHES=( "${FILESDIR}/${P}-glibc-to-linux.patch" )
-
 src_prepare() {
 	# Newer C libraries omit this include from sys/types.h.
 	sed -i '1i#include <sys/sysmacros.h>' extern.h || die
 	default
-
-	epatch "${PATCHES[@]}"
 }
 
 src_configure() {
@@ -39,6 +39,7 @@ src_compile() {
 	# We can't rely on LFS flags as it uses the fts.h interface which lacks 64-bit support.
 	set -- \
 		${CC} ${CPPFLAGS} ${CFLAGS} \
+		-DPAX_SAFE_PATH=\"/bin:/usr/bin\" \
 		-DHAVE_STRLCPY -DHAVE_VIS -DHAVE_STRMODE \
 		-DLONG_OFF_T -DHAVE_LINKAT \
 		$(${PKG_CONFIG} --cflags libbsd-overlay) \


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

* [gentoo-commits] proj/musl:master commit in: app-arch/pax/
@ 2018-12-29 15:15 Anthony G. Basile
  0 siblings, 0 replies; 6+ messages in thread
From: Anthony G. Basile @ 2018-12-29 15:15 UTC (permalink / raw
  To: gentoo-commits

commit:     dfe4aa1988770bd543d7c5b3d6070260f3767172
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 29 15:15:46 2018 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Dec 29 15:15:46 2018 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=dfe4aa19

app-arch/pax: stable

Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 app-arch/pax/pax-20161104.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/pax/pax-20161104.ebuild b/app-arch/pax/pax-20161104.ebuild
index cb3e8fc..a280ff0 100644
--- a/app-arch/pax/pax-20161104.ebuild
+++ b/app-arch/pax/pax-20161104.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -10,7 +10,7 @@ SRC_URI="https://www.mirbsd.org/MirOS/dist/mir/cpio/paxmirabilis-${PV}.cpio.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~sh ~sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~mips ppc x86"
 
 RDEPEND="
 	dev-libs/libbsd


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

end of thread, other threads:[~2018-12-29 15:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-08 21:37 [gentoo-commits] proj/musl:master commit in: app-arch/pax/ Aric Belsito
  -- strict thread matches above, loose matches on Subject: below --
2017-01-08 21:46 Aric Belsito
2017-01-08 21:47 Aric Belsito
2017-01-15 21:46 Aric Belsito
2017-12-18  4:04 Aric Belsito
2018-12-29 15:15 Anthony G. Basile

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