* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Section/
@ 2016-11-21 3:37 Kent Fredric
0 siblings, 0 replies; 8+ messages in thread
From: Kent Fredric @ 2016-11-21 3:37 UTC (permalink / raw
To: gentoo-commits
commit: 0c02ea61f4df6204301f66ca6623d73f0f51f1b2
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 21 01:53:50 2016 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Mon Nov 21 03:36:16 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c02ea61
dev-perl/Data-Section: Add w/ version 0.200.6
Required for dev-perl/Dist-Zilla
Previously maintained in ::perl-experimental since May 2009 by
Torsten Veller and myself
Package-Manager: portage-2.3.2
dev-perl/Data-Section/Data-Section-0.200.6.ebuild | 26 +++++++++++++++++++++++
dev-perl/Data-Section/Manifest | 1 +
dev-perl/Data-Section/metadata.xml | 12 +++++++++++
3 files changed, 39 insertions(+)
diff --git a/dev-perl/Data-Section/Data-Section-0.200.6.ebuild b/dev-perl/Data-Section/Data-Section-0.200.6.ebuild
new file mode 100644
index 00000000..2905e66
--- /dev/null
+++ b/dev-perl/Data-Section/Data-Section-0.200.6.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+EAPI=6
+DIST_AUTHOR=RJBS
+DIST_VERSION=0.200006
+inherit perl-module
+
+DESCRIPTION="read multiple hunks of data out of your DATA section"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+# r: strict, warnings -> perl
+RDEPEND="
+ virtual/perl-Encode
+ >=dev-perl/MRO-Compat-0.90.0
+ >=dev-perl/Sub-Exporter-0.979.0
+"
+# t: base, lib, utf8 -> perl
+DEPEND="${RDEPEND}
+ >=virtual/perl-ExtUtils-MakeMaker-6.300.0
+ test? (
+ dev-perl/Test-FailWarnings
+ >=virtual/perl-Test-Simple-0.960.0
+ )
+"
diff --git a/dev-perl/Data-Section/Manifest b/dev-perl/Data-Section/Manifest
new file mode 100644
index 00000000..f23e795
--- /dev/null
+++ b/dev-perl/Data-Section/Manifest
@@ -0,0 +1 @@
+DIST Data-Section-0.200006.tar.gz 19396 SHA256 348501f99dab0adbe6d32143f4e79c2cbb6558c84d183cffc4c1275cacd35b5f SHA512 8e5cc644bbee6bccde66fbd2e622fb33cb45e0950cc48abd052d0698965f6903b01a3deac251c27106165903219531e33083305233f21651f49541feefdec1b2 WHIRLPOOL 37bc8d89a3dc0354e854524dff710418cebf816911f84daf86fb1e1e66238cde6c139a4428331a526e9a6100b5c6064cf94241ac60e94b908ddd2baa53efe654
diff --git a/dev-perl/Data-Section/metadata.xml b/dev-perl/Data-Section/metadata.xml
new file mode 100644
index 00000000..216d9b6
--- /dev/null
+++ b/dev-perl/Data-Section/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="project">
+ <email>perl@gentoo.org</email>
+ <name>Gentoo Perl Project</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="cpan">Data-Section</remote-id>
+ <remote-id type="cpan-module">Data::Section</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Section/
@ 2017-10-09 19:59 Kent Fredric
0 siblings, 0 replies; 8+ messages in thread
From: Kent Fredric @ 2017-10-09 19:59 UTC (permalink / raw
To: gentoo-commits
commit: 50af0a8332c5270e521c8111b96c4cbe9e9b85d7
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 9 19:59:30 2017 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Mon Oct 9 19:59:43 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50af0a83
dev-perl/Data-Section: Bump to version 0.200.7
Upstream:
- Avoid potential failures with test library called "Parent" on
case insensitive filesystems
Package-Manager: Portage-2.3.8, Repoman-2.3.3
dev-perl/Data-Section/Data-Section-0.200.7.ebuild | 26 +++++++++++++++++++++++
dev-perl/Data-Section/Manifest | 1 +
2 files changed, 27 insertions(+)
diff --git a/dev-perl/Data-Section/Data-Section-0.200.7.ebuild b/dev-perl/Data-Section/Data-Section-0.200.7.ebuild
new file mode 100644
index 00000000000..1497196a044
--- /dev/null
+++ b/dev-perl/Data-Section/Data-Section-0.200.7.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+DIST_AUTHOR=RJBS
+DIST_VERSION=0.200007
+inherit perl-module
+
+DESCRIPTION="read multiple hunks of data out of your DATA section"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+# r: strict, warnings -> perl
+RDEPEND="
+ virtual/perl-Encode
+ >=dev-perl/MRO-Compat-0.90.0
+ >=dev-perl/Sub-Exporter-0.979.0
+"
+# t: base, lib, utf8 -> perl
+DEPEND="${RDEPEND}
+ >=virtual/perl-ExtUtils-MakeMaker-6.300.0
+ test? (
+ dev-perl/Test-FailWarnings
+ >=virtual/perl-Test-Simple-0.960.0
+ )
+"
diff --git a/dev-perl/Data-Section/Manifest b/dev-perl/Data-Section/Manifest
index f23e79591db..8996f6bca55 100644
--- a/dev-perl/Data-Section/Manifest
+++ b/dev-perl/Data-Section/Manifest
@@ -1 +1,2 @@
DIST Data-Section-0.200006.tar.gz 19396 SHA256 348501f99dab0adbe6d32143f4e79c2cbb6558c84d183cffc4c1275cacd35b5f SHA512 8e5cc644bbee6bccde66fbd2e622fb33cb45e0950cc48abd052d0698965f6903b01a3deac251c27106165903219531e33083305233f21651f49541feefdec1b2 WHIRLPOOL 37bc8d89a3dc0354e854524dff710418cebf816911f84daf86fb1e1e66238cde6c139a4428331a526e9a6100b5c6064cf94241ac60e94b908ddd2baa53efe654
+DIST Data-Section-0.200007.tar.gz 22094 SHA256 cd937e5b70e34aab885ff414e2a6d19e4783b7c28fc3cda5145b230514ebb4de SHA512 0c23141ccc2041e8c1c222c95d6eab4b56e2d77a94c68507f67acbb62fa5132e9229e9680c9fff6ebbc6a47a42cf1943d6e5b50a5f0168c66193fb52aaa241f0 WHIRLPOOL cfed70e64db3935fa5338279b21497413b2506bdea694a56b8dea3589a070138868f9451b7cf41e81d0985a3fe5538eb7f71a49a664953faf6be85694463dec7
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Section/
@ 2018-04-15 8:36 Kent Fredric
0 siblings, 0 replies; 8+ messages in thread
From: Kent Fredric @ 2018-04-15 8:36 UTC (permalink / raw
To: gentoo-commits
commit: 0bca1c2d93603bd9a10eaf3cb762966239c8fe8f
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 12 08:22:07 2018 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Sun Apr 15 08:36:07 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bca1c2d
dev-perl/Data-Section: Cleanup old
Package-Manager: Portage-2.3.24, Repoman-2.3.6
dev-perl/Data-Section/Data-Section-0.200.6.ebuild | 26 -----------------------
dev-perl/Data-Section/Manifest | 1 -
2 files changed, 27 deletions(-)
diff --git a/dev-perl/Data-Section/Data-Section-0.200.6.ebuild b/dev-perl/Data-Section/Data-Section-0.200.6.ebuild
deleted file mode 100644
index 2b7691c3a40..00000000000
--- a/dev-perl/Data-Section/Data-Section-0.200.6.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-DIST_AUTHOR=RJBS
-DIST_VERSION=0.200006
-inherit perl-module
-
-DESCRIPTION="read multiple hunks of data out of your DATA section"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-# r: strict, warnings -> perl
-RDEPEND="
- virtual/perl-Encode
- >=dev-perl/MRO-Compat-0.90.0
- >=dev-perl/Sub-Exporter-0.979.0
-"
-# t: base, lib, utf8 -> perl
-DEPEND="${RDEPEND}
- >=virtual/perl-ExtUtils-MakeMaker-6.300.0
- test? (
- dev-perl/Test-FailWarnings
- >=virtual/perl-Test-Simple-0.960.0
- )
-"
diff --git a/dev-perl/Data-Section/Manifest b/dev-perl/Data-Section/Manifest
index 317ae11279c..be6c5438910 100644
--- a/dev-perl/Data-Section/Manifest
+++ b/dev-perl/Data-Section/Manifest
@@ -1,2 +1 @@
-DIST Data-Section-0.200006.tar.gz 19396 BLAKE2B 567b713cbf5abcd4552c6e0fd2f2de7d4ee6457997338a312c7a4c1468bebb6e04d76df5cc173719203f179e23f10e1ea64ffbafe6219faab4d06615257db7ba SHA512 8e5cc644bbee6bccde66fbd2e622fb33cb45e0950cc48abd052d0698965f6903b01a3deac251c27106165903219531e33083305233f21651f49541feefdec1b2
DIST Data-Section-0.200007.tar.gz 22094 BLAKE2B 8bb0f39abb30ac70f5185d9fbbdd9dba1f2b5947961fef937a2913d12b0694629d9e4ec4a3759603a7217cb4a6b0d244bbac5f11bb2b9963b959506bb8b19b51 SHA512 0c23141ccc2041e8c1c222c95d6eab4b56e2d77a94c68507f67acbb62fa5132e9229e9680c9fff6ebbc6a47a42cf1943d6e5b50a5f0168c66193fb52aaa241f0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Section/
@ 2021-06-15 21:59 Andreas K. Hüttel
0 siblings, 0 replies; 8+ messages in thread
From: Andreas K. Hüttel @ 2021-06-15 21:59 UTC (permalink / raw
To: gentoo-commits
commit: cfe5f58b1101bed4d1b3a64b74a65775030ae8f5
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 15 21:31:18 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Tue Jun 15 21:58:38 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfe5f58b
dev-perl/Data-Section: stable for amd64
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
dev-perl/Data-Section/Data-Section-0.200.7.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-perl/Data-Section/Data-Section-0.200.7.ebuild b/dev-perl/Data-Section/Data-Section-0.200.7.ebuild
index 6e9c63b8a3d..d32180be999 100644
--- a/dev-perl/Data-Section/Data-Section-0.200.7.ebuild
+++ b/dev-perl/Data-Section/Data-Section-0.200.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -8,7 +8,7 @@ inherit perl-module
DESCRIPTION="read multiple hunks of data out of your DATA section"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
# r: strict, warnings -> perl
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Section/
@ 2021-09-03 6:40 Agostino Sarubbo
0 siblings, 0 replies; 8+ messages in thread
From: Agostino Sarubbo @ 2021-09-03 6:40 UTC (permalink / raw
To: gentoo-commits
commit: 4e1b27f612bd45029494aedbdd255b3d47d39cdc
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 3 06:38:53 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Sep 3 06:39:55 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e1b27f6
dev-perl/Data-Section: x86 stable wrt bug #810121
Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
dev-perl/Data-Section/Data-Section-0.200.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Data-Section/Data-Section-0.200.7.ebuild b/dev-perl/Data-Section/Data-Section-0.200.7.ebuild
index d32180be999..825703a2081 100644
--- a/dev-perl/Data-Section/Data-Section-0.200.7.ebuild
+++ b/dev-perl/Data-Section/Data-Section-0.200.7.ebuild
@@ -8,7 +8,7 @@ inherit perl-module
DESCRIPTION="read multiple hunks of data out of your DATA section"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
# r: strict, warnings -> perl
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Section/
@ 2021-10-17 19:17 Andreas K. Hüttel
0 siblings, 0 replies; 8+ messages in thread
From: Andreas K. Hüttel @ 2021-10-17 19:17 UTC (permalink / raw
To: gentoo-commits
commit: 6e27affdd490267ce12e6c48696d83078758dee2
Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 17 19:09:34 2021 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Sun Oct 17 19:16:52 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e27affd
dev-perl/Data-Section: EAPI=8 bump
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
...-Section-0.200.7.ebuild => Data-Section-0.200.7-r1.ebuild} | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/dev-perl/Data-Section/Data-Section-0.200.7.ebuild b/dev-perl/Data-Section/Data-Section-0.200.7-r1.ebuild
similarity index 79%
rename from dev-perl/Data-Section/Data-Section-0.200.7.ebuild
rename to dev-perl/Data-Section/Data-Section-0.200.7-r1.ebuild
index 825703a2081..3c9ceeba685 100644
--- a/dev-perl/Data-Section/Data-Section-0.200.7.ebuild
+++ b/dev-perl/Data-Section/Data-Section-0.200.7-r1.ebuild
@@ -1,7 +1,8 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=8
+
DIST_AUTHOR=RJBS
DIST_VERSION=0.200007
inherit perl-module
@@ -9,16 +10,14 @@ inherit perl-module
DESCRIPTION="read multiple hunks of data out of your DATA section"
SLOT="0"
KEYWORDS="amd64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-# r: strict, warnings -> perl
+
RDEPEND="
virtual/perl-Encode
>=dev-perl/MRO-Compat-0.90.0
>=dev-perl/Sub-Exporter-0.979.0
"
-# t: base, lib, utf8 -> perl
-DEPEND="${RDEPEND}
+
+BDEPEND="${RDEPEND}
>=virtual/perl-ExtUtils-MakeMaker-6.300.0
test? (
dev-perl/Test-FailWarnings
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Section/
@ 2023-06-21 7:53 Sam James
0 siblings, 0 replies; 8+ messages in thread
From: Sam James @ 2023-06-21 7:53 UTC (permalink / raw
To: gentoo-commits
commit: 89b5630ff7f7a45e1c96ff624266cf09d1401813
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 21 07:38:29 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jun 21 07:53:11 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89b5630f
dev-perl/Data-Section: add 0.200.8
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-perl/Data-Section/Data-Section-0.200.8.ebuild | 26 +++++++++++++++++++++++
dev-perl/Data-Section/Manifest | 1 +
2 files changed, 27 insertions(+)
diff --git a/dev-perl/Data-Section/Data-Section-0.200.8.ebuild b/dev-perl/Data-Section/Data-Section-0.200.8.ebuild
new file mode 100644
index 000000000000..2dba84d78fe9
--- /dev/null
+++ b/dev-perl/Data-Section/Data-Section-0.200.8.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=RJBS
+DIST_VERSION=0.200008
+inherit perl-module
+
+DESCRIPTION="Read multiple hunks of data out of your DATA section"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+ virtual/perl-Encode
+ >=dev-perl/MRO-Compat-0.90.0
+ >=dev-perl/Sub-Exporter-0.979.0
+"
+BDEPEND="
+ ${RDEPEND}
+ >=virtual/perl-ExtUtils-MakeMaker-6.780.0
+ test? (
+ dev-perl/Test-FailWarnings
+ >=virtual/perl-Test-Simple-0.960.0
+ )
+"
diff --git a/dev-perl/Data-Section/Manifest b/dev-perl/Data-Section/Manifest
index be6c54389100..583099b60f7b 100644
--- a/dev-perl/Data-Section/Manifest
+++ b/dev-perl/Data-Section/Manifest
@@ -1 +1,2 @@
DIST Data-Section-0.200007.tar.gz 22094 BLAKE2B 8bb0f39abb30ac70f5185d9fbbdd9dba1f2b5947961fef937a2913d12b0694629d9e4ec4a3759603a7217cb4a6b0d244bbac5f11bb2b9963b959506bb8b19b51 SHA512 0c23141ccc2041e8c1c222c95d6eab4b56e2d77a94c68507f67acbb62fa5132e9229e9680c9fff6ebbc6a47a42cf1943d6e5b50a5f0168c66193fb52aaa241f0
+DIST Data-Section-0.200008.tar.gz 22583 BLAKE2B 295507d93533d87ca0ad3d00edae7f83abfae6c54e8d3ae10203636ff94b7785d52c818632fc3daba5f6d5827a23a6bbd32bf933e334321bd214c5cd83c8101a SHA512 5fc8b25b1af8cdae5dca407bc039578e92bfc0b3bcfa2c01cdddf36ea30840f7eeeb336859a2e50719713c2675f2c1eb74c8832724d99ba4db92c47c65a860e3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Section/
@ 2023-07-24 9:25 Jakov Smolić
0 siblings, 0 replies; 8+ messages in thread
From: Jakov Smolić @ 2023-07-24 9:25 UTC (permalink / raw
To: gentoo-commits
commit: 91e99362970dfaba8a3439229e42ce31cb65f693
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 24 09:24:52 2023 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Jul 24 09:24:52 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91e99362
dev-perl/Data-Section: Stabilize 0.200.8 x86, #910840
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-perl/Data-Section/Data-Section-0.200.8.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-perl/Data-Section/Data-Section-0.200.8.ebuild b/dev-perl/Data-Section/Data-Section-0.200.8.ebuild
index d42906dc9c9f..12a4dbbbcca6 100644
--- a/dev-perl/Data-Section/Data-Section-0.200.8.ebuild
+++ b/dev-perl/Data-Section/Data-Section-0.200.8.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
DESCRIPTION="Read multiple hunks of data out of your DATA section"
SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
RDEPEND="
virtual/perl-Encode
^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-07-24 9:25 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-03 6:40 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-Section/ Agostino Sarubbo
-- strict thread matches above, loose matches on Subject: below --
2023-07-24 9:25 Jakov Smolić
2023-06-21 7:53 Sam James
2021-10-17 19:17 Andreas K. Hüttel
2021-06-15 21:59 Andreas K. Hüttel
2018-04-15 8:36 Kent Fredric
2017-10-09 19:59 Kent Fredric
2016-11-21 3:37 Kent Fredric
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox